2024-04-07T20:21:36.121 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-04-07T20:21:36.121 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --owner scheduled_teuthology@teuthology --description orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/connectivity task/test_host_drain} --archive /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257 --name teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi -- /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/orig.config.yaml 2024-04-07T20:21:36.151 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-07T20:21:36.222 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257 branch: main description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7634257' 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: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN sha1: 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: smithi044.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMkUGLKsQn3nOWC+M3T/IR2CtXGrOyks3mppccQvYAJJS/S7ZdLOKBafe5gkm3rKdxgnAzfb1ZdQ6t9mn8aTtWQ= smithi112.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGyyUEwqzrQDLYZu0QOISEQ97GlnlrBKebS9V2nHl+MB3k9l/BI4ELRoefgRJnthHWlAs5SV53PCA5irtD2Ha/8= smithi191.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAVbumiujUWYqK/58CJ6f4Bc/3nsbugoQT7F00mEmwI40EqhH4NivKABDS1W9M6+quY+EEgzNstbiDMeP18e+Fk= tasks: - 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-07T20:21:36.222 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa; will attempt to use it 2024-04-07T20:21:36.223 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks 2024-04-07T20:21:36.223 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-07T20:21:36.225 INFO:teuthology.task.internal:Checking packages... 2024-04-07T20:21:36.250 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d' 2024-04-07T20:21:36.250 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-07T20:21:36.250 INFO:teuthology.packaging:ref: None 2024-04-07T20:21:36.250 INFO:teuthology.packaging:tag: None 2024-04-07T20:21:36.250 INFO:teuthology.packaging:branch: main 2024-04-07T20:21:36.251 INFO:teuthology.packaging:sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T20:21:36.251 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-07T20:21:36.529 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2778.ga971fd5f 2024-04-07T20:21:36.530 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-07T20:21:36.537 INFO:teuthology.task.internal:no buildpackages task found 2024-04-07T20:21:36.537 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-07T20:21:36.557 INFO:teuthology.task.internal:Saving configuration 2024-04-07T20:21:36.570 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-07T20:21:36.577 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T20:21:36.606 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi044.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257', '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 20:15:23.843314', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMkUGLKsQn3nOWC+M3T/IR2CtXGrOyks3mppccQvYAJJS/S7ZdLOKBafe5gkm3rKdxgnAzfb1ZdQ6t9mn8aTtWQ='} 2024-04-07T20:21:36.625 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi112.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257', '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 20:15:23.845494', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGyyUEwqzrQDLYZu0QOISEQ97GlnlrBKebS9V2nHl+MB3k9l/BI4ELRoefgRJnthHWlAs5SV53PCA5irtD2Ha/8='} 2024-04-07T20:21:36.645 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi191.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257', '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 20:15:23.844505', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAVbumiujUWYqK/58CJ6f4Bc/3nsbugoQT7F00mEmwI40EqhH4NivKABDS1W9M6+quY+EEgzNstbiDMeP18e+Fk='} 2024-04-07T20:21:36.646 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-07T20:21:36.666 INFO:teuthology.task.internal:roles: ubuntu@smithi044.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-07T20:21:36.666 INFO:teuthology.task.internal:roles: ubuntu@smithi112.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-07T20:21:36.666 INFO:teuthology.task.internal:roles: ubuntu@smithi191.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-07T20:21:36.666 INFO:teuthology.run_tasks:Running task console_log... 2024-04-07T20:21:36.774 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f5662b47e50>, signals=[15]) 2024-04-07T20:21:36.774 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-07T20:21:36.781 INFO:teuthology.task.internal:Opening connections... 2024-04-07T20:21:36.781 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi044.front.sepia.ceph.com 2024-04-07T20:21:36.783 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:21:36.887 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi112.front.sepia.ceph.com 2024-04-07T20:21:36.888 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi112.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:21:36.975 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi191.front.sepia.ceph.com 2024-04-07T20:21:36.976 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:21:37.063 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-07T20:21:37.070 DEBUG:teuthology.orchestra.run.smithi044:> uname -m 2024-04-07T20:21:37.089 INFO:teuthology.orchestra.run.smithi044.stdout:x86_64 2024-04-07T20:21:37.089 DEBUG:teuthology.orchestra.run.smithi044:> cat /etc/os-release 2024-04-07T20:21:37.147 INFO:teuthology.orchestra.run.smithi044.stdout:NAME="CentOS Stream" 2024-04-07T20:21:37.147 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION="9" 2024-04-07T20:21:37.147 INFO:teuthology.orchestra.run.smithi044.stdout:ID="centos" 2024-04-07T20:21:37.147 INFO:teuthology.orchestra.run.smithi044.stdout:ID_LIKE="rhel fedora" 2024-04-07T20:21:37.147 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION_ID="9" 2024-04-07T20:21:37.147 INFO:teuthology.orchestra.run.smithi044.stdout:PLATFORM_ID="platform:el9" 2024-04-07T20:21:37.147 INFO:teuthology.orchestra.run.smithi044.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-07T20:21:37.147 INFO:teuthology.orchestra.run.smithi044.stdout:ANSI_COLOR="0;31" 2024-04-07T20:21:37.148 INFO:teuthology.orchestra.run.smithi044.stdout:LOGO="fedora-logo-icon" 2024-04-07T20:21:37.148 INFO:teuthology.orchestra.run.smithi044.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-07T20:21:37.148 INFO:teuthology.orchestra.run.smithi044.stdout:HOME_URL="https://centos.org/" 2024-04-07T20:21:37.148 INFO:teuthology.orchestra.run.smithi044.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-07T20:21:37.148 INFO:teuthology.orchestra.run.smithi044.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-07T20:21:37.148 INFO:teuthology.orchestra.run.smithi044.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-07T20:21:37.149 INFO:teuthology.lock.ops:Updating smithi044.front.sepia.ceph.com on lock server 2024-04-07T20:21:37.168 DEBUG:teuthology.orchestra.run.smithi112:> uname -m 2024-04-07T20:21:37.186 INFO:teuthology.orchestra.run.smithi112.stdout:x86_64 2024-04-07T20:21:37.186 DEBUG:teuthology.orchestra.run.smithi112:> cat /etc/os-release 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:NAME="CentOS Stream" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:VERSION="9" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:ID="centos" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:ID_LIKE="rhel fedora" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:VERSION_ID="9" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:PLATFORM_ID="platform:el9" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:ANSI_COLOR="0;31" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:LOGO="fedora-logo-icon" 2024-04-07T20:21:37.243 INFO:teuthology.orchestra.run.smithi112.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-07T20:21:37.244 INFO:teuthology.orchestra.run.smithi112.stdout:HOME_URL="https://centos.org/" 2024-04-07T20:21:37.244 INFO:teuthology.orchestra.run.smithi112.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-07T20:21:37.244 INFO:teuthology.orchestra.run.smithi112.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-07T20:21:37.244 INFO:teuthology.orchestra.run.smithi112.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-07T20:21:37.244 INFO:teuthology.lock.ops:Updating smithi112.front.sepia.ceph.com on lock server 2024-04-07T20:21:37.267 DEBUG:teuthology.orchestra.run.smithi191:> uname -m 2024-04-07T20:21:37.285 INFO:teuthology.orchestra.run.smithi191.stdout:x86_64 2024-04-07T20:21:37.285 DEBUG:teuthology.orchestra.run.smithi191:> cat /etc/os-release 2024-04-07T20:21:37.342 INFO:teuthology.orchestra.run.smithi191.stdout:NAME="CentOS Stream" 2024-04-07T20:21:37.342 INFO:teuthology.orchestra.run.smithi191.stdout:VERSION="9" 2024-04-07T20:21:37.342 INFO:teuthology.orchestra.run.smithi191.stdout:ID="centos" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:ID_LIKE="rhel fedora" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:VERSION_ID="9" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:PLATFORM_ID="platform:el9" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:ANSI_COLOR="0;31" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:LOGO="fedora-logo-icon" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:HOME_URL="https://centos.org/" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-07T20:21:37.343 INFO:teuthology.orchestra.run.smithi191.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-07T20:21:37.343 INFO:teuthology.lock.ops:Updating smithi191.front.sepia.ceph.com on lock server 2024-04-07T20:21:37.359 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-07T20:21:37.369 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-07T20:21:37.375 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-07T20:21:37.375 DEBUG:teuthology.orchestra.run.smithi044:> test '!' -e /home/ubuntu/cephtest 2024-04-07T20:21:37.378 DEBUG:teuthology.orchestra.run.smithi112:> test '!' -e /home/ubuntu/cephtest 2024-04-07T20:21:37.380 DEBUG:teuthology.orchestra.run.smithi191:> test '!' -e /home/ubuntu/cephtest 2024-04-07T20:21:37.398 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-07T20:21:37.404 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-07T20:21:37.404 DEBUG:teuthology.orchestra.run.smithi044:> test -z $(ls -A /var/lib/ceph) 2024-04-07T20:21:37.435 DEBUG:teuthology.orchestra.run.smithi112:> test -z $(ls -A /var/lib/ceph) 2024-04-07T20:21:37.437 DEBUG:teuthology.orchestra.run.smithi191:> test -z $(ls -A /var/lib/ceph) 2024-04-07T20:21:37.465 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-07T20:21:37.532 INFO:teuthology.run_tasks:Running task kernel... 2024-04-07T20:21:37.546 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-04-07T20:21:37.546 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-07T20:21:37.547 DEBUG:teuthology.orchestra.run.smithi044:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-07T20:21:37.547 DEBUG:teuthology.orchestra.run.smithi112:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-07T20:21:37.548 DEBUG:teuthology.orchestra.run.smithi191:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-07T20:21:37.563 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:21:37.564 DEBUG:teuthology.orchestra.run.smithi191:> uname -r 2024-04-07T20:21:37.564 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:21:37.565 DEBUG:teuthology.orchestra.run.smithi112:> uname -r 2024-04-07T20:21:37.565 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:21:37.566 DEBUG:teuthology.orchestra.run.smithi044:> uname -r 2024-04-07T20:21:37.620 INFO:teuthology.orchestra.run.smithi191.stdout:5.14.0-361.el9.x86_64 2024-04-07T20:21:37.620 INFO:teuthology.task.kernel:Running kernel on smithi191: 5.14.0-361.el9.x86_64 2024-04-07T20:21:37.620 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum install -y kernel 2024-04-07T20:21:37.622 INFO:teuthology.orchestra.run.smithi112.stdout:5.14.0-361.el9.x86_64 2024-04-07T20:21:37.622 INFO:teuthology.task.kernel:Running kernel on smithi112: 5.14.0-361.el9.x86_64 2024-04-07T20:21:37.622 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum install -y kernel 2024-04-07T20:21:37.624 INFO:teuthology.orchestra.run.smithi044.stdout:5.14.0-361.el9.x86_64 2024-04-07T20:21:37.624 INFO:teuthology.task.kernel:Running kernel on smithi044: 5.14.0-361.el9.x86_64 2024-04-07T20:21:37.625 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum install -y kernel 2024-04-07T20:21:40.125 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS-9 - AppStream 9.2 MB/s | 8.1 MB 00:00 2024-04-07T20:21:40.153 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS-9 - AppStream 9.5 MB/s | 8.1 MB 00:00 2024-04-07T20:21:40.283 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS-9 - AppStream 8.3 MB/s | 8.1 MB 00:00 2024-04-07T20:21:41.903 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS-9 - BaseOS 5.8 MB/s | 2.5 MB 00:00 2024-04-07T20:21:42.033 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS-9 - BaseOS 4.9 MB/s | 2.5 MB 00:00 2024-04-07T20:21:42.108 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS-9 - BaseOS 4.9 MB/s | 2.5 MB 00:00 2024-04-07T20:21:42.914 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - BaseOS 23 MB/s | 8.0 MB 00:00 2024-04-07T20:21:43.702 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS Stream 9 - BaseOS 5.9 MB/s | 8.0 MB 00:01 2024-04-07T20:21:45.590 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - BaseOS 2.6 MB/s | 8.0 MB 00:03 2024-04-07T20:21:46.020 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS Stream 9 - AppStream 15 MB/s | 19 MB 00:01 2024-04-07T20:21:46.682 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - AppStream 7.0 MB/s | 19 MB 00:02 2024-04-07T20:21:47.761 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - AppStream 18 MB/s | 19 MB 00:01 2024-04-07T20:21:51.358 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - CRB 5.6 MB/s | 6.1 MB 00:01 2024-04-07T20:21:51.713 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS Stream 9 - CRB 2.8 MB/s | 6.1 MB 00:02 2024-04-07T20:21:52.384 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - CRB 6.3 MB/s | 6.1 MB 00:00 2024-04-07T20:21:52.800 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - Extras packages 55 kB/s | 16 kB 00:00 2024-04-07T20:21:53.163 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS Stream 9 - Extras packages 50 kB/s | 16 kB 00:00 2024-04-07T20:21:53.835 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - Extras packages 60 kB/s | 16 kB 00:00 2024-04-07T20:21:54.504 INFO:teuthology.orchestra.run.smithi191.stdout:Extra Packages for Enterprise Linux 13 MB/s | 21 MB 00:01 2024-04-07T20:21:54.997 INFO:teuthology.orchestra.run.smithi044.stdout:Extra Packages for Enterprise Linux 20 MB/s | 21 MB 00:01 2024-04-07T20:21:56.398 INFO:teuthology.orchestra.run.smithi112.stdout:Extra Packages for Enterprise Linux 6.7 MB/s | 21 MB 00:03 2024-04-07T20:21:59.535 INFO:teuthology.orchestra.run.smithi191.stdout:lab-extras 15 kB/s | 1.7 kB 00:00 2024-04-07T20:22:00.203 INFO:teuthology.orchestra.run.smithi044.stdout:lab-extras 43 kB/s | 1.7 kB 00:00 2024-04-07T20:22:01.514 INFO:teuthology.orchestra.run.smithi112.stdout:lab-extras 12 kB/s | 1.7 kB 00:00 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.704 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.705 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:22:01.706 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.707 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:22:01.708 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.709 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.710 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.711 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:22:01.712 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.092 INFO:teuthology.orchestra.run.smithi191.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-07T20:22:02.092 INFO:teuthology.orchestra.run.smithi191.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-07T20:22:02.194 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:22:02.206 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:22:02.206 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-04-07T20:22:02.206 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout: kernel x86_64 5.14.0-432.el9 baseos 66 k 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-core x86_64 5.14.0-432.el9 baseos 15 M 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules x86_64 5.14.0-432.el9 baseos 33 M 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-core x86_64 5.14.0-432.el9 baseos 27 M 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout:Install 4 Packages 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 76 M 2024-04-07T20:22:02.207 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 123 M 2024-04-07T20:22:02.208 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:22:02.311 INFO:teuthology.orchestra.run.smithi191.stdout:(1/4): kernel-5.14.0-432.el9.x86_64.rpm 1.0 MB/s | 66 kB 00:00 2024-04-07T20:22:02.421 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:22:02.421 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:22:02.421 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:22:02.421 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.421 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:22:02.421 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.422 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:22:02.423 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.424 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:22:02.425 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.426 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.427 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.428 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.429 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:22:02.868 INFO:teuthology.orchestra.run.smithi044.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-07T20:22:02.868 INFO:teuthology.orchestra.run.smithi044.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-07T20:22:02.967 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:22:02.976 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:22:02.976 INFO:teuthology.orchestra.run.smithi044.stdout: Package Architecture Version Repository Size 2024-04-07T20:22:02.976 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:22:02.977 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:22:02.977 INFO:teuthology.orchestra.run.smithi044.stdout: kernel x86_64 5.14.0-432.el9 baseos 66 k 2024-04-07T20:22:02.977 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:22:02.977 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-core x86_64 5.14.0-432.el9 baseos 15 M 2024-04-07T20:22:02.977 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules x86_64 5.14.0-432.el9 baseos 33 M 2024-04-07T20:22:02.977 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-core x86_64 5.14.0-432.el9 baseos 27 M 2024-04-07T20:22:02.978 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:22:02.978 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:22:02.978 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:22:02.978 INFO:teuthology.orchestra.run.smithi044.stdout:Install 4 Packages 2024-04-07T20:22:02.978 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:22:02.978 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 76 M 2024-04-07T20:22:02.979 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 123 M 2024-04-07T20:22:02.979 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:22:03.053 INFO:teuthology.orchestra.run.smithi191.stdout:(2/4): kernel-core-5.14.0-432.el9.x86_64.rpm 19 MB/s | 15 MB 00:00 2024-04-07T20:22:03.436 INFO:teuthology.orchestra.run.smithi191.stdout:(3/4): kernel-modules-5.14.0-432.el9.x86_64.rpm 28 MB/s | 33 MB 00:01 2024-04-07T20:22:03.454 INFO:teuthology.orchestra.run.smithi044.stdout:(1/4): kernel-5.14.0-432.el9.x86_64.rpm 184 kB/s | 66 kB 00:00 2024-04-07T20:22:03.643 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:22:03.643 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:22:03.643 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:22:03.644 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:22:03.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:22:03.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:22:03.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.652 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:22:03.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:22:03.753 INFO:teuthology.orchestra.run.smithi191.stdout:(4/4): kernel-modules-core-5.14.0-432.el9.x86_6 19 MB/s | 27 MB 00:01 2024-04-07T20:22:03.754 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:22:03.754 INFO:teuthology.orchestra.run.smithi191.stdout:Total 49 MB/s | 76 MB 00:01 2024-04-07T20:22:04.238 INFO:teuthology.orchestra.run.smithi112.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-07T20:22:04.238 INFO:teuthology.orchestra.run.smithi112.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-07T20:22:04.353 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:22:04.364 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout: Package Architecture Version Repository Size 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout: kernel x86_64 5.14.0-432.el9 baseos 66 k 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout: kernel-core x86_64 5.14.0-432.el9 baseos 15 M 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout: kernel-modules x86_64 5.14.0-432.el9 baseos 33 M 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout: kernel-modules-core x86_64 5.14.0-432.el9 baseos 27 M 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout:Install 4 Packages 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 76 M 2024-04-07T20:22:04.365 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 123 M 2024-04-07T20:22:04.366 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:22:04.419 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:22:04.764 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:22:04.764 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:22:04.849 INFO:teuthology.orchestra.run.smithi112.stdout:(1/4): kernel-5.14.0-432.el9.x86_64.rpm 193 kB/s | 66 kB 00:00 2024-04-07T20:22:05.767 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:22:05.767 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:22:08.241 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:22:08.838 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-modules-core-5.14.0-432.el9.x86_64 1/4 2024-04-07T20:22:08.947 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:22:09.249 INFO:teuthology.orchestra.run.smithi112.stdout:(2/4): kernel-core-5.14.0-432.el9.x86_64.rpm 3.1 MB/s | 15 MB 00:04 2024-04-07T20:22:10.833 INFO:teuthology.orchestra.run.smithi112.stdout:(3/4): kernel-modules-5.14.0-432.el9.x86_64.rpm 5.3 MB/s | 33 MB 00:06 2024-04-07T20:22:11.667 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:22:11.800 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:22:12.961 INFO:teuthology.orchestra.run.smithi044.stdout:(2/4): kernel-core-5.14.0-432.el9.x86_64.rpm 1.5 MB/s | 15 MB 00:09 2024-04-07T20:22:16.498 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:22:16.512 INFO:teuthology.orchestra.run.smithi044.stdout:(3/4): kernel-modules-5.14.0-432.el9.x86_64.rpm 2.5 MB/s | 33 MB 00:13 2024-04-07T20:22:16.600 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:16.779 INFO:teuthology.orchestra.run.smithi044.stdout:(4/4): kernel-modules-core-5.14.0-432.el9.x86_6 2.1 MB/s | 27 MB 00:13 2024-04-07T20:22:16.779 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:22:16.779 INFO:teuthology.orchestra.run.smithi044.stdout:Total 5.5 MB/s | 76 MB 00:13 2024-04-07T20:22:17.182 INFO:teuthology.orchestra.run.smithi112.stdout:(4/4): kernel-modules-core-5.14.0-432.el9.x86_6 2.2 MB/s | 27 MB 00:12 2024-04-07T20:22:17.182 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:22:17.182 INFO:teuthology.orchestra.run.smithi112.stdout:Total 5.9 MB/s | 76 MB 00:12 2024-04-07T20:22:17.472 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:22:17.845 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:22:17.911 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:22:17.911 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:22:18.201 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:22:18.201 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:22:18.930 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:22:18.931 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:22:19.234 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:22:19.234 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:22:21.346 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:21.530 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:22:21.727 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:22:22.180 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-modules-core-5.14.0-432.el9.x86_64 1/4 2024-04-07T20:22:22.279 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:22:22.450 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : kernel-modules-core-5.14.0-432.el9.x86_64 1/4 2024-04-07T20:22:22.549 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:22:25.170 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:22:25.285 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:22:25.299 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:22:25.418 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:22:30.122 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:22:30.364 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:22:30.408 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:30.460 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:35.154 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:35.500 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:50.656 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:50.656 INFO:teuthology.orchestra.run.smithi191.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-07T20:22:50.657 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:22:50.701 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:51.076 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:51.077 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-5.14.0-432.el9.x86_64 1/4 2024-04-07T20:22:51.077 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:22:51.077 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:22:51.500 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:22:51.501 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:22:51.501 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:22:51.501 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-5.14.0-432.el9.x86_64 2024-04-07T20:22:51.501 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-core-5.14.0-432.el9.x86_64 2024-04-07T20:22:51.501 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-5.14.0-432.el9.x86_64 2024-04-07T20:22:51.501 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-core-5.14.0-432.el9.x86_64 2024-04-07T20:22:51.501 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:22:51.501 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:22:51.848 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T20:22:51.942 INFO:teuthology.orchestra.run.smithi191.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T20:22:51.943 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T20:22:51.943 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-07T20:22:51.943 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-07T20:22:51.943 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-07T20:22:51.944 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-07T20:22:51.944 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi191.front.sepia.ceph.com, path=None, version=distro) 2024-04-07T20:22:51.944 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T20:22:52.024 INFO:teuthology.orchestra.run.smithi191.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T20:22:52.025 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T20:22:52.025 DEBUG:teuthology.orchestra.run.smithi191:> sudo rpm -qi grub2-tools 2024-04-07T20:22:52.070 INFO:teuthology.orchestra.run.smithi191.stdout:Name : grub2-tools 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Epoch : 1 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Version : 2.06 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Release : 68.el9 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Architecture: x86_64 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Group : Unspecified 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Size : 8264254 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:License : GPLv3+ 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-07T20:22:52.071 INFO:teuthology.orchestra.run.smithi191.stdout:Packager : builder@centos.org 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:Vendor : CentOS 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:Summary : Support tools for GRUB. 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:Description : 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:hardware devices. 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:22:52.072 INFO:teuthology.orchestra.run.smithi191.stdout:This subpackage provides tools for support of all platforms. 2024-04-07T20:22:52.073 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-07T20:22:52.073 INFO:teuthology.task.kernel:Updating grub on smithi191 to boot 5.14.0-432.el9.x86_64 2024-04-07T20:22:52.073 DEBUG:teuthology.orchestra.run.smithi191:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-07T20:22:52.660 INFO:teuthology.orchestra.run.smithi191.stderr:Generating grub configuration file ... 2024-04-07T20:22:53.990 INFO:teuthology.orchestra.run.smithi191.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-07T20:22:54.022 INFO:teuthology.orchestra.run.smithi191.stderr:done 2024-04-07T20:22:54.023 DEBUG:teuthology.orchestra.run.smithi191:> mktemp 2024-04-07T20:22:54.039 INFO:teuthology.orchestra.run.smithi191.stdout:/tmp/tmp.x3ujqHa1wm 2024-04-07T20:22:54.039 DEBUG:teuthology.orchestra.run.smithi191:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.x3ujqHa1wm 2024-04-07T20:22:54.129 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod 0666 /tmp/tmp.x3ujqHa1wm 2024-04-07T20:22:54.230 DEBUG:teuthology.orchestra.remote:smithi191:/tmp/tmp.x3ujqHa1wm is 6KB 2024-04-07T20:22:54.279 DEBUG:teuthology.orchestra.run.smithi191:> rm -fr /tmp/tmp.x3ujqHa1wm 2024-04-07T20:22:54.293 DEBUG:teuthology.orchestra.run.smithi191:> sudo /bin/ls /boot/loader/entries || true 2024-04-07T20:22:54.365 INFO:teuthology.orchestra.run.smithi191.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-07T20:22:54.366 INFO:teuthology.orchestra.run.smithi191.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-07T20:22:54.366 INFO:teuthology.orchestra.run.smithi191.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-07T20:22:54.366 INFO:teuthology.orchestra.run.smithi191.stdout:15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64.conf 2024-04-07T20:22:54.368 DEBUG:teuthology.orchestra.run.smithi191:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64 2024-04-07T20:22:54.524 DEBUG:teuthology.orchestra.run.smithi191:> sudo shutdown -r now 2024-04-07T20:23:04.166 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:23:04.166 INFO:teuthology.orchestra.run.smithi112.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-07T20:23:04.166 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:23:04.209 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:23:04.626 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:23:04.626 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : kernel-5.14.0-432.el9.x86_64 1/4 2024-04-07T20:23:04.626 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:23:04.626 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:23:05.035 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:23:05.036 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:23:05.036 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:23:05.036 INFO:teuthology.orchestra.run.smithi112.stdout: kernel-5.14.0-432.el9.x86_64 2024-04-07T20:23:05.036 INFO:teuthology.orchestra.run.smithi112.stdout: kernel-core-5.14.0-432.el9.x86_64 2024-04-07T20:23:05.036 INFO:teuthology.orchestra.run.smithi112.stdout: kernel-modules-5.14.0-432.el9.x86_64 2024-04-07T20:23:05.036 INFO:teuthology.orchestra.run.smithi112.stdout: kernel-modules-core-5.14.0-432.el9.x86_64 2024-04-07T20:23:05.036 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:23:05.036 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:23:05.376 DEBUG:teuthology.orchestra.run.smithi112:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T20:23:05.521 INFO:teuthology.orchestra.run.smithi112.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T20:23:05.522 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T20:23:05.522 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-07T20:23:05.522 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-07T20:23:05.522 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-07T20:23:05.522 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-07T20:23:05.522 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi112.front.sepia.ceph.com, path=None, version=distro) 2024-04-07T20:23:05.522 DEBUG:teuthology.orchestra.run.smithi112:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T20:23:05.603 INFO:teuthology.orchestra.run.smithi112.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T20:23:05.603 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T20:23:05.604 DEBUG:teuthology.orchestra.run.smithi112:> sudo rpm -qi grub2-tools 2024-04-07T20:23:05.637 INFO:teuthology.orchestra.run.smithi112.stdout:Name : grub2-tools 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Epoch : 1 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Version : 2.06 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Release : 68.el9 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Architecture: x86_64 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Group : Unspecified 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Size : 8264254 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:License : GPLv3+ 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-07T20:23:05.638 INFO:teuthology.orchestra.run.smithi112.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:Packager : builder@centos.org 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:Vendor : CentOS 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:Summary : Support tools for GRUB. 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:Description : 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:hardware devices. 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:23:05.639 INFO:teuthology.orchestra.run.smithi112.stdout:This subpackage provides tools for support of all platforms. 2024-04-07T20:23:05.640 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-07T20:23:05.640 INFO:teuthology.task.kernel:Updating grub on smithi112 to boot 5.14.0-432.el9.x86_64 2024-04-07T20:23:05.640 DEBUG:teuthology.orchestra.run.smithi112:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-07T20:23:06.294 INFO:teuthology.orchestra.run.smithi112.stderr:Generating grub configuration file ... 2024-04-07T20:23:06.308 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:23:06.308 INFO:teuthology.orchestra.run.smithi044.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-07T20:23:06.308 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:23:06.353 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:23:06.703 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:23:06.704 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-5.14.0-432.el9.x86_64 1/4 2024-04-07T20:23:06.704 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T20:23:06.704 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T20:23:07.137 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T20:23:07.137 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:23:07.137 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:23:07.138 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-5.14.0-432.el9.x86_64 2024-04-07T20:23:07.138 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-core-5.14.0-432.el9.x86_64 2024-04-07T20:23:07.138 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-5.14.0-432.el9.x86_64 2024-04-07T20:23:07.138 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-core-5.14.0-432.el9.x86_64 2024-04-07T20:23:07.138 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:23:07.138 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:23:07.478 DEBUG:teuthology.orchestra.run.smithi044:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T20:23:07.593 INFO:teuthology.orchestra.run.smithi044.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T20:23:07.594 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T20:23:07.594 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-07T20:23:07.594 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-07T20:23:07.594 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-07T20:23:07.594 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-07T20:23:07.594 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi044.front.sepia.ceph.com, path=None, version=distro) 2024-04-07T20:23:07.594 DEBUG:teuthology.orchestra.run.smithi044:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T20:23:07.616 INFO:teuthology.orchestra.run.smithi112.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-07T20:23:07.648 INFO:teuthology.orchestra.run.smithi112.stderr:done 2024-04-07T20:23:07.650 DEBUG:teuthology.orchestra.run.smithi112:> mktemp 2024-04-07T20:23:07.665 INFO:teuthology.orchestra.run.smithi112.stdout:/tmp/tmp.6tN38zmMjc 2024-04-07T20:23:07.665 DEBUG:teuthology.orchestra.run.smithi112:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.6tN38zmMjc 2024-04-07T20:23:07.677 INFO:teuthology.orchestra.run.smithi044.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T20:23:07.677 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T20:23:07.677 DEBUG:teuthology.orchestra.run.smithi044:> sudo rpm -qi grub2-tools 2024-04-07T20:23:07.716 INFO:teuthology.orchestra.run.smithi044.stdout:Name : grub2-tools 2024-04-07T20:23:07.716 INFO:teuthology.orchestra.run.smithi044.stdout:Epoch : 1 2024-04-07T20:23:07.716 INFO:teuthology.orchestra.run.smithi044.stdout:Version : 2.06 2024-04-07T20:23:07.716 INFO:teuthology.orchestra.run.smithi044.stdout:Release : 68.el9 2024-04-07T20:23:07.716 INFO:teuthology.orchestra.run.smithi044.stdout:Architecture: x86_64 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Group : Unspecified 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Size : 8264254 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:License : GPLv3+ 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Packager : builder@centos.org 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Vendor : CentOS 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Summary : Support tools for GRUB. 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:Description : 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:23:07.717 INFO:teuthology.orchestra.run.smithi044.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-07T20:23:07.718 INFO:teuthology.orchestra.run.smithi044.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-07T20:23:07.718 INFO:teuthology.orchestra.run.smithi044.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-07T20:23:07.718 INFO:teuthology.orchestra.run.smithi044.stdout:hardware devices. 2024-04-07T20:23:07.718 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:23:07.718 INFO:teuthology.orchestra.run.smithi044.stdout:This subpackage provides tools for support of all platforms. 2024-04-07T20:23:07.719 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-07T20:23:07.719 INFO:teuthology.task.kernel:Updating grub on smithi044 to boot 5.14.0-432.el9.x86_64 2024-04-07T20:23:07.719 DEBUG:teuthology.orchestra.run.smithi044:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-07T20:23:07.734 DEBUG:teuthology.orchestra.run.smithi112:> sudo chmod 0666 /tmp/tmp.6tN38zmMjc 2024-04-07T20:23:07.865 DEBUG:teuthology.orchestra.remote:smithi112:/tmp/tmp.6tN38zmMjc is 6KB 2024-04-07T20:23:07.914 DEBUG:teuthology.orchestra.run.smithi112:> rm -fr /tmp/tmp.6tN38zmMjc 2024-04-07T20:23:07.928 DEBUG:teuthology.orchestra.run.smithi112:> sudo /bin/ls /boot/loader/entries || true 2024-04-07T20:23:07.993 INFO:teuthology.orchestra.run.smithi112.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-07T20:23:07.994 INFO:teuthology.orchestra.run.smithi112.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-07T20:23:07.994 INFO:teuthology.orchestra.run.smithi112.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-07T20:23:07.994 INFO:teuthology.orchestra.run.smithi112.stdout:15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64.conf 2024-04-07T20:23:07.995 DEBUG:teuthology.orchestra.run.smithi112:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64 2024-04-07T20:23:08.136 DEBUG:teuthology.orchestra.run.smithi112:> sudo shutdown -r now 2024-04-07T20:23:08.275 INFO:teuthology.orchestra.run.smithi044.stderr:Generating grub configuration file ... 2024-04-07T20:23:09.675 INFO:teuthology.orchestra.run.smithi044.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-07T20:23:09.702 INFO:teuthology.orchestra.run.smithi044.stderr:done 2024-04-07T20:23:09.704 DEBUG:teuthology.orchestra.run.smithi044:> mktemp 2024-04-07T20:23:09.719 INFO:teuthology.orchestra.run.smithi044.stdout:/tmp/tmp.M4rqZVnjW4 2024-04-07T20:23:09.720 DEBUG:teuthology.orchestra.run.smithi044:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.M4rqZVnjW4 2024-04-07T20:23:09.793 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 0666 /tmp/tmp.M4rqZVnjW4 2024-04-07T20:23:09.939 DEBUG:teuthology.orchestra.remote:smithi044:/tmp/tmp.M4rqZVnjW4 is 6KB 2024-04-07T20:23:09.989 DEBUG:teuthology.orchestra.run.smithi044:> rm -fr /tmp/tmp.M4rqZVnjW4 2024-04-07T20:23:10.004 DEBUG:teuthology.orchestra.run.smithi044:> sudo /bin/ls /boot/loader/entries || true 2024-04-07T20:23:10.077 INFO:teuthology.orchestra.run.smithi044.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-07T20:23:10.077 INFO:teuthology.orchestra.run.smithi044.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-07T20:23:10.077 INFO:teuthology.orchestra.run.smithi044.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-07T20:23:10.078 INFO:teuthology.orchestra.run.smithi044.stdout:15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64.conf 2024-04-07T20:23:10.079 DEBUG:teuthology.orchestra.run.smithi044:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64 2024-04-07T20:23:10.231 DEBUG:teuthology.orchestra.run.smithi044:> sudo shutdown -r now 2024-04-07T20:23:24.540 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-07T20:23:24.541 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-07T20:23:24.542 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:23:38.153 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-07T20:23:38.154 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi112.front.sepia.ceph.com' 2024-04-07T20:23:38.155 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi112.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:23:40.236 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-07T20:23:40.236 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-07T20:23:40.237 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:23:42.882 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.191 2024-04-07T20:23:51.890 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-07T20:23:51.891 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:23:54.946 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.191 2024-04-07T20:23:56.702 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.112 2024-04-07T20:23:58.750 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.44 2024-04-07T20:24:05.734 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi112.front.sepia.ceph.com' 2024-04-07T20:24:05.735 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi112.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:24:06.949 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-07T20:24:06.950 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:24:07.752 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-07T20:24:07.753 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:24:08.802 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.112 2024-04-07T20:24:20.814 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi112.front.sepia.ceph.com' 2024-04-07T20:24:20.815 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi112.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:24:25.378 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.191 2024-04-07T20:24:39.203 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.112 2024-04-07T20:24:40.380 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-07T20:24:40.382 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:24:40.775 DEBUG:teuthology.orchestra.run.smithi191:> true 2024-04-07T20:24:41.188 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-07T20:24:41.188 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-432.el9.x86_64"... 2024-04-07T20:24:41.188 DEBUG:teuthology.orchestra.run.smithi191:> uname -r 2024-04-07T20:24:41.202 INFO:teuthology.orchestra.run.smithi191.stdout:5.14.0-432.el9.x86_64 2024-04-07T20:24:41.203 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-07T20:24:41.203 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-07T20:24:41.203 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-07T20:24:42.204 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-07T20:24:42.204 DEBUG:teuthology.orchestra.run.smithi191:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-07T20:24:42.339 INFO:teuthology.orchestra.run.smithi191.stdout:ttyS1 2024-04-07T20:24:42.378 DEBUG:teuthology.parallel:result is None 2024-04-07T20:24:54.203 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi112.front.sepia.ceph.com' 2024-04-07T20:24:54.205 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi112.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:24:54.577 DEBUG:teuthology.orchestra.run.smithi112:> true 2024-04-07T20:24:55.018 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi112.front.sepia.ceph.com' 2024-04-07T20:24:55.018 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-432.el9.x86_64"... 2024-04-07T20:24:55.019 DEBUG:teuthology.orchestra.run.smithi112:> uname -r 2024-04-07T20:24:55.033 INFO:teuthology.orchestra.run.smithi112.stdout:5.14.0-432.el9.x86_64 2024-04-07T20:24:55.033 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-07T20:24:55.033 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-07T20:24:55.033 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-07T20:24:56.034 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-07T20:24:56.035 DEBUG:teuthology.orchestra.run.smithi112:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-07T20:24:56.117 INFO:teuthology.orchestra.run.smithi112.stdout:ttyS1 2024-04-07T20:24:56.147 DEBUG:teuthology.parallel:result is None 2024-04-07T20:25:07.758 DEBUG:teuthology.orchestra.remote:timed out 2024-04-07T20:25:19.759 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-07T20:25:19.761 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:25:20.119 DEBUG:teuthology.orchestra.run.smithi044:> true 2024-04-07T20:25:20.498 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-07T20:25:20.498 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-432.el9.x86_64"... 2024-04-07T20:25:20.498 DEBUG:teuthology.orchestra.run.smithi044:> uname -r 2024-04-07T20:25:20.513 INFO:teuthology.orchestra.run.smithi044.stdout:5.14.0-432.el9.x86_64 2024-04-07T20:25:20.513 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-07T20:25:20.514 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-07T20:25:20.514 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-07T20:25:21.515 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-07T20:25:21.515 DEBUG:teuthology.orchestra.run.smithi044:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-07T20:25:21.587 INFO:teuthology.orchestra.run.smithi044.stdout:ttyS1 2024-04-07T20:25:21.623 DEBUG:teuthology.parallel:result is None 2024-04-07T20:25:21.624 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-07T20:25:21.632 INFO:teuthology.task.internal:Creating test directory... 2024-04-07T20:25:21.632 DEBUG:teuthology.orchestra.run.smithi044:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-07T20:25:21.634 DEBUG:teuthology.orchestra.run.smithi112:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-07T20:25:21.637 DEBUG:teuthology.orchestra.run.smithi191:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-07T20:25:21.656 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-07T20:25:21.664 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-07T20:25:21.676 INFO:teuthology.task.internal:Creating archive directory... 2024-04-07T20:25:21.676 DEBUG:teuthology.orchestra.run.smithi044:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-07T20:25:21.692 DEBUG:teuthology.orchestra.run.smithi112:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-07T20:25:21.695 DEBUG:teuthology.orchestra.run.smithi191:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-07T20:25:21.984 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-07T20:25:21.993 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-07T20:25:21.993 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:25:21.996 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:25:21.998 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:25:22.029 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T20:25:22.033 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T20:25:22.043 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T20:25:22.047 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T20:25:22.052 INFO:teuthology.orchestra.run.smithi112.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T20:25:22.067 INFO:teuthology.orchestra.run.smithi112.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T20:25:22.068 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-07T20:25:22.077 INFO:teuthology.task.internal:Configuring sudo... 2024-04-07T20:25:22.077 DEBUG:teuthology.orchestra.run.smithi044:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-07T20:25:22.088 DEBUG:teuthology.orchestra.run.smithi112:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-07T20:25:22.090 DEBUG:teuthology.orchestra.run.smithi191:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-07T20:25:22.120 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-07T20:25:22.130 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-07T20:25:22.130 DEBUG:teuthology.orchestra.run.smithi044:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-07T20:25:22.162 DEBUG:teuthology.orchestra.run.smithi112:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-07T20:25:22.164 DEBUG:teuthology.orchestra.run.smithi191:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-07T20:25:22.181 DEBUG:teuthology.orchestra.run.smithi044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T20:25:22.259 DEBUG:teuthology.orchestra.run.smithi044:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T20:25:22.317 DEBUG:teuthology.orchestra.run.smithi044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T20:25:22.400 DEBUG:teuthology.orchestra.run.smithi044:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T20:25:22.443 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-07T20:25:22.443 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-07T20:25:22.511 DEBUG:teuthology.orchestra.run.smithi112:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T20:25:22.555 DEBUG:teuthology.orchestra.run.smithi112:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T20:25:22.608 DEBUG:teuthology.orchestra.run.smithi112:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T20:25:22.692 DEBUG:teuthology.orchestra.run.smithi112:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T20:25:22.736 DEBUG:teuthology.orchestra.run.smithi112:> set -ex 2024-04-07T20:25:22.736 DEBUG:teuthology.orchestra.run.smithi112:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-07T20:25:22.804 DEBUG:teuthology.orchestra.run.smithi191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T20:25:22.848 DEBUG:teuthology.orchestra.run.smithi191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T20:25:22.901 DEBUG:teuthology.orchestra.run.smithi191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T20:25:22.986 DEBUG:teuthology.orchestra.run.smithi191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T20:25:23.031 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-04-07T20:25:23.031 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-07T20:25:23.100 DEBUG:teuthology.orchestra.run.smithi044:> sudo service rsyslog restart 2024-04-07T20:25:23.103 DEBUG:teuthology.orchestra.run.smithi112:> sudo service rsyslog restart 2024-04-07T20:25:23.105 DEBUG:teuthology.orchestra.run.smithi191:> sudo service rsyslog restart 2024-04-07T20:25:23.142 INFO:teuthology.orchestra.run.smithi044.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T20:25:23.150 INFO:teuthology.orchestra.run.smithi112.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T20:25:23.193 INFO:teuthology.orchestra.run.smithi191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T20:25:23.584 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-07T20:25:23.594 INFO:teuthology.task.internal:Starting timer... 2024-04-07T20:25:23.594 INFO:teuthology.run_tasks:Running task pcp... 2024-04-07T20:25:23.611 INFO:teuthology.run_tasks:Running task selinux... 2024-04-07T20:25:23.627 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-07T20:25:23.627 DEBUG:teuthology.orchestra.run.smithi044:> sudo service auditd rotate 2024-04-07T20:25:23.684 INFO:teuthology.orchestra.run.smithi044.stdout:Rotating logs: 2024-04-07T20:25:23.686 DEBUG:teuthology.orchestra.run.smithi112:> sudo service auditd rotate 2024-04-07T20:25:23.743 INFO:teuthology.orchestra.run.smithi112.stdout:Rotating logs: 2024-04-07T20:25:23.746 DEBUG:teuthology.orchestra.run.smithi191:> sudo service auditd rotate 2024-04-07T20:25:23.813 INFO:teuthology.orchestra.run.smithi191.stdout:Rotating logs: 2024-04-07T20:25:23.815 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-07T20:25:23.815 DEBUG:teuthology.orchestra.run.smithi044:> /usr/sbin/getenforce 2024-04-07T20:25:23.837 INFO:teuthology.orchestra.run.smithi044.stdout:Permissive 2024-04-07T20:25:23.838 DEBUG:teuthology.orchestra.run.smithi112:> /usr/sbin/getenforce 2024-04-07T20:25:23.863 INFO:teuthology.orchestra.run.smithi112.stdout:Permissive 2024-04-07T20:25:23.864 DEBUG:teuthology.orchestra.run.smithi191:> /usr/sbin/getenforce 2024-04-07T20:25:23.889 INFO:teuthology.orchestra.run.smithi191.stdout:Permissive 2024-04-07T20:25:23.889 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi044.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi112.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi191.front.sepia.ceph.com': 'permissive'} 2024-04-07T20:25:23.890 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:25:23.917 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:25:23.918 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:25:23.947 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:25:23.948 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:25:23.979 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:25:23.980 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-07T20:25:23.980 DEBUG:teuthology.orchestra.run.smithi044:> sudo /usr/sbin/setenforce permissive 2024-04-07T20:25:24.014 DEBUG:teuthology.orchestra.run.smithi112:> sudo /usr/sbin/setenforce permissive 2024-04-07T20:25:24.049 DEBUG:teuthology.orchestra.run.smithi191:> sudo /usr/sbin/setenforce permissive 2024-04-07T20:25:24.081 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-07T20:25:24.093 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-07T20:25:24.097 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-07T20:25:24.227 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-07T20:25:24.242 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-07T20:25:24.243 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi044.front.sepia.ceph.com,smithi112.front.sepia.ceph.com,smithi191.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-07T20:29:52.832 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi044.front.sepia.ceph.com'), Remote(name='ubuntu@smithi112.front.sepia.ceph.com'), Remote(name='ubuntu@smithi191.front.sepia.ceph.com')] 2024-04-07T20:29:52.833 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-07T20:29:52.834 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:29:52.926 DEBUG:teuthology.orchestra.run.smithi044:> true 2024-04-07T20:29:53.004 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-07T20:29:53.005 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi112.front.sepia.ceph.com' 2024-04-07T20:29:53.005 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi112.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:29:53.092 DEBUG:teuthology.orchestra.run.smithi112:> true 2024-04-07T20:29:53.173 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi112.front.sepia.ceph.com' 2024-04-07T20:29:53.173 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-07T20:29:53.173 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T20:29:53.260 DEBUG:teuthology.orchestra.run.smithi191:> true 2024-04-07T20:29:53.338 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-07T20:29:53.339 INFO:teuthology.run_tasks:Running task clock... 2024-04-07T20:29:53.349 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-07T20:29:53.349 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-07T20:29:53.350 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:29:53.352 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-07T20:29:53.352 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:29:53.354 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-07T20:29:53.354 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:29:53.381 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-07T20:29:53.384 INFO:teuthology.orchestra.run.smithi112.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-07T20:29:53.397 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-07T20:29:53.400 INFO:teuthology.orchestra.run.smithi112.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-07T20:29:53.411 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-07T20:29:53.428 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-07T20:29:53.428 INFO:teuthology.orchestra.run.smithi044.stderr:sudo: ntpd: command not found 2024-04-07T20:29:53.429 INFO:teuthology.orchestra.run.smithi112.stderr:sudo: ntpd: command not found 2024-04-07T20:29:53.442 INFO:teuthology.orchestra.run.smithi044.stdout:506 Cannot talk to daemon 2024-04-07T20:29:53.443 INFO:teuthology.orchestra.run.smithi112.stdout:506 Cannot talk to daemon 2024-04-07T20:29:53.458 INFO:teuthology.orchestra.run.smithi191.stderr:sudo: ntpd: command not found 2024-04-07T20:29:53.459 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-07T20:29:53.459 INFO:teuthology.orchestra.run.smithi112.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-07T20:29:53.471 INFO:teuthology.orchestra.run.smithi191.stdout:506 Cannot talk to daemon 2024-04-07T20:29:53.475 INFO:teuthology.orchestra.run.smithi112.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-07T20:29:53.477 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-07T20:29:53.488 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-07T20:29:53.504 INFO:teuthology.orchestra.run.smithi191.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-07T20:29:53.528 INFO:teuthology.orchestra.run.smithi112.stderr:bash: line 1: ntpq: command not found 2024-04-07T20:29:53.531 INFO:teuthology.orchestra.run.smithi112.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T20:29:53.531 INFO:teuthology.orchestra.run.smithi112.stdout:=============================================================================== 2024-04-07T20:29:53.532 INFO:teuthology.orchestra.run.smithi112.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.532 INFO:teuthology.orchestra.run.smithi112.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.532 INFO:teuthology.orchestra.run.smithi112.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.532 INFO:teuthology.orchestra.run.smithi112.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.538 INFO:teuthology.orchestra.run.smithi044.stderr:bash: line 1: ntpq: command not found 2024-04-07T20:29:53.542 INFO:teuthology.orchestra.run.smithi044.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T20:29:53.542 INFO:teuthology.orchestra.run.smithi044.stdout:=============================================================================== 2024-04-07T20:29:53.543 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.543 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.543 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.543 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.559 INFO:teuthology.orchestra.run.smithi191.stderr:bash: line 1: ntpq: command not found 2024-04-07T20:29:53.563 INFO:teuthology.orchestra.run.smithi191.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T20:29:53.563 INFO:teuthology.orchestra.run.smithi191.stdout:=============================================================================== 2024-04-07T20:29:53.563 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.563 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.563 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.563 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:29:53.564 INFO:teuthology.run_tasks:Running task install... 2024-04-07T20:29:53.572 DEBUG:teuthology.task.install:project ceph 2024-04-07T20:29:53.572 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d'}} 2024-04-07T20:29:53.573 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d'} 2024-04-07T20:29:53.573 INFO:teuthology.task.install:Using flavor: default 2024-04-07T20:29:53.578 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-07T20:29:53.579 INFO:teuthology.task.install:extra packages: [] 2024-04-07T20:29:53.579 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-07T20:29:53.580 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-07T20:29:53.582 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-07T20:29:53.582 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-07T20:29:53.583 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-07T20:29:53.583 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-07T20:29:53.726 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/ 2024-04-07T20:29:53.726 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2578.ge5c885fe 2024-04-07T20:29:53.828 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/ 2024-04-07T20:29:53.828 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2578.ge5c885fe 2024-04-07T20:29:53.835 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/ 2024-04-07T20:29:53.835 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2578.ge5c885fe 2024-04-07T20:29:53.840 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-07T20:29:53.840 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-04-07T20:29:53.840 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-07T20:29:53.868 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-07T20:29:53.868 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:29:53.935 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:29:53.939 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-07T20:29:53.939 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-07T20:29:53.939 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-07T20:29:53.967 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-07T20:29:53.968 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:29:54.015 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:29:54.035 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:29:54.081 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-07T20:29:54.081 DEBUG:teuthology.orchestra.run.smithi112:> set -ex 2024-04-07T20:29:54.081 DEBUG:teuthology.orchestra.run.smithi112:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-07T20:29:54.082 INFO:teuthology.orchestra.run.smithi191.stdout:check_obsoletes = 1 2024-04-07T20:29:54.083 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum clean all 2024-04-07T20:29:54.110 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-07T20:29:54.110 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:29:54.115 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:29:54.178 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:29:54.180 INFO:teuthology.orchestra.run.smithi044.stdout:check_obsoletes = 1 2024-04-07T20:29:54.182 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum clean all 2024-04-07T20:29:54.258 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:29:54.324 INFO:teuthology.orchestra.run.smithi112.stdout:check_obsoletes = 1 2024-04-07T20:29:54.326 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum clean all 2024-04-07T20:29:54.329 INFO:teuthology.orchestra.run.smithi191.stdout:74 files removed 2024-04-07T20:29:54.357 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-radosgw 2024-04-07T20:29:54.444 INFO:teuthology.orchestra.run.smithi044.stdout:74 files removed 2024-04-07T20:29:54.470 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-radosgw 2024-04-07T20:29:54.565 INFO:teuthology.orchestra.run.smithi112.stdout:74 files removed 2024-04-07T20:29:54.592 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-radosgw 2024-04-07T20:29:55.115 INFO:teuthology.orchestra.run.smithi191.stdout:ceph packages for x86_64 182 kB/s | 83 kB 00:00 2024-04-07T20:29:55.126 INFO:teuthology.orchestra.run.smithi044.stdout:ceph packages for x86_64 236 kB/s | 83 kB 00:00 2024-04-07T20:29:55.221 INFO:teuthology.orchestra.run.smithi112.stdout:ceph packages for x86_64 249 kB/s | 83 kB 00:00 2024-04-07T20:29:55.499 INFO:teuthology.orchestra.run.smithi191.stdout:ceph noarch packages 34 kB/s | 11 kB 00:00 2024-04-07T20:29:55.552 INFO:teuthology.orchestra.run.smithi044.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-07T20:29:55.639 INFO:teuthology.orchestra.run.smithi112.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-07T20:29:55.842 INFO:teuthology.orchestra.run.smithi191.stdout:ceph source packages 6.2 kB/s | 1.9 kB 00:00 2024-04-07T20:29:55.969 INFO:teuthology.orchestra.run.smithi044.stdout:ceph source packages 5.0 kB/s | 1.9 kB 00:00 2024-04-07T20:29:56.015 INFO:teuthology.orchestra.run.smithi112.stdout:ceph source packages 5.6 kB/s | 1.9 kB 00:00 2024-04-07T20:29:56.270 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS-9 - AppStream 21 MB/s | 8.1 MB 00:00 2024-04-07T20:29:56.438 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS-9 - AppStream 19 MB/s | 8.1 MB 00:00 2024-04-07T20:29:56.452 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS-9 - AppStream 20 MB/s | 8.1 MB 00:00 2024-04-07T20:29:57.895 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS-9 - BaseOS 8.7 MB/s | 2.5 MB 00:00 2024-04-07T20:29:58.111 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS-9 - BaseOS 7.4 MB/s | 2.5 MB 00:00 2024-04-07T20:29:58.130 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS-9 - BaseOS 7.9 MB/s | 2.5 MB 00:00 2024-04-07T20:29:59.013 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - BaseOS 19 MB/s | 8.0 MB 00:00 2024-04-07T20:29:59.270 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.0 MB 00:00 2024-04-07T20:29:59.526 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - BaseOS 6.9 MB/s | 8.0 MB 00:01 2024-04-07T20:30:01.008 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - AppStream 21 MB/s | 19 MB 00:00 2024-04-07T20:30:02.788 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - AppStream 9.0 MB/s | 19 MB 00:02 2024-04-07T20:30:03.661 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS Stream 9 - AppStream 5.7 MB/s | 19 MB 00:03 2024-04-07T20:30:05.466 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - CRB 8.0 MB/s | 6.1 MB 00:00 2024-04-07T20:30:07.141 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - Extras packages 36 kB/s | 16 kB 00:00 2024-04-07T20:30:07.956 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS Stream 9 - CRB 8.8 MB/s | 6.1 MB 00:00 2024-04-07T20:30:08.910 INFO:teuthology.orchestra.run.smithi044.stdout:Extra Packages for Enterprise Linux 13 MB/s | 21 MB 00:01 2024-04-07T20:30:09.596 INFO:teuthology.orchestra.run.smithi112.stdout:CentOS Stream 9 - Extras packages 53 kB/s | 16 kB 00:00 2024-04-07T20:30:11.098 INFO:teuthology.orchestra.run.smithi112.stdout:Extra Packages for Enterprise Linux 15 MB/s | 21 MB 00:01 2024-04-07T20:30:14.110 INFO:teuthology.orchestra.run.smithi044.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-04-07T20:30:14.647 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - CRB 765 kB/s | 6.1 MB 00:08 2024-04-07T20:30:16.198 INFO:teuthology.orchestra.run.smithi112.stdout:lab-extras 13 kB/s | 1.7 kB 00:00 2024-04-07T20:30:16.638 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:30:16.638 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:30:16.638 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:30:16.638 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.638 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:30:16.638 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.638 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.639 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:30:16.640 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:30:16.641 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:30:16.642 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:30:16.643 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:30:16.644 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.645 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:30:16.646 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.647 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.647 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.647 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.647 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:30:16.647 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.647 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.647 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:30:16.647 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:30:17.215 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:30:17.228 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-radosgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 9.8 M 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout:Upgrading: 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: librados2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.4 M 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: librbd1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-base x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.4 M 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 21 M 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-selinux x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 25 k 2024-04-07T20:30:17.229 INFO:teuthology.orchestra.run.smithi044.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: libcephfs2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 746 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: libradosstriper1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 500 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: librgw2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.1 M 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-07T20:30:17.230 INFO:teuthology.orchestra.run.smithi044.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ceph-argparse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 45 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 134 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cephfs x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 161 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rados x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 320 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 299 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 99 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout:Installing weak dependencies: 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:17.231 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:30:17.232 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:30:17.232 INFO:teuthology.orchestra.run.smithi044.stdout:Install 30 Packages 2024-04-07T20:30:17.232 INFO:teuthology.orchestra.run.smithi044.stdout:Upgrade 2 Packages 2024-04-07T20:30:17.232 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:17.232 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 59 M 2024-04-07T20:30:17.232 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:30:18.608 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:30:18.608 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:30:18.608 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:30:18.608 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.609 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:30:18.610 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.611 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.612 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:30:18.613 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.614 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:30:18.615 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.616 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.617 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:30:18.878 INFO:teuthology.orchestra.run.smithi044.stdout:(1/32): ceph-base-19.0.0-2578.ge5c885fe.el9.x86 4.4 MB/s | 5.4 MB 00:01 2024-04-07T20:30:18.953 INFO:teuthology.orchestra.run.smithi044.stdout:(2/32): ceph-selinux-19.0.0-2578.ge5c885fe.el9. 336 kB/s | 25 kB 00:00 2024-04-07T20:30:19.086 INFO:teuthology.orchestra.run.smithi044.stdout:(3/32): libcephfs2-19.0.0-2578.ge5c885fe.el9.x8 5.5 MB/s | 746 kB 00:00 2024-04-07T20:30:19.131 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:30:19.149 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:19.149 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:30:19.149 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:19.149 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:30:19.149 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-radosgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 9.8 M 2024-04-07T20:30:19.149 INFO:teuthology.orchestra.run.smithi112.stdout:Upgrading: 2024-04-07T20:30:19.149 INFO:teuthology.orchestra.run.smithi112.stdout: librados2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.4 M 2024-04-07T20:30:19.149 INFO:teuthology.orchestra.run.smithi112.stdout: librbd1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-base x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.4 M 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 21 M 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-selinux x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 25 k 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: libcephfs2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 746 k 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-07T20:30:19.150 INFO:teuthology.orchestra.run.smithi112.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: libradosstriper1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 500 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: librgw2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.1 M 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: python3-ceph-argparse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 45 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: python3-ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 134 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cephfs x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 161 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: python3-rados x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 320 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: python3-rbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 299 k 2024-04-07T20:30:19.151 INFO:teuthology.orchestra.run.smithi112.stdout: python3-rgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 99 k 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout:Installing weak dependencies: 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout:Install 30 Packages 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout:Upgrade 2 Packages 2024-04-07T20:30:19.152 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:19.153 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 59 M 2024-04-07T20:30:19.153 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:30:19.228 INFO:teuthology.orchestra.run.smithi044.stdout:(4/32): libradosstriper1-19.0.0-2578.ge5c885fe. 3.5 MB/s | 500 kB 00:00 2024-04-07T20:30:19.437 INFO:teuthology.orchestra.run.smithi044.stdout:(5/32): ceph-radosgw-19.0.0-2578.ge5c885fe.el9. 5.5 MB/s | 9.8 MB 00:01 2024-04-07T20:30:19.704 INFO:teuthology.orchestra.run.smithi044.stdout:(6/32): python3-ceph-argparse-19.0.0-2578.ge5c8 169 kB/s | 45 kB 00:00 2024-04-07T20:30:19.821 INFO:teuthology.orchestra.run.smithi044.stdout:(7/32): python3-ceph-common-19.0.0-2578.ge5c885 1.1 MB/s | 134 kB 00:00 2024-04-07T20:30:19.980 INFO:teuthology.orchestra.run.smithi044.stdout:(8/32): python3-cephfs-19.0.0-2578.ge5c885fe.el 1.0 MB/s | 161 kB 00:00 2024-04-07T20:30:20.147 INFO:teuthology.orchestra.run.smithi044.stdout:(9/32): python3-rados-19.0.0-2578.ge5c885fe.el9 1.9 MB/s | 320 kB 00:00 2024-04-07T20:30:20.305 INFO:teuthology.orchestra.run.smithi044.stdout:(10/32): librgw2-19.0.0-2578.ge5c885fe.el9.x86_ 4.8 MB/s | 5.1 MB 00:01 2024-04-07T20:30:20.441 INFO:teuthology.orchestra.run.smithi112.stdout:(1/32): ceph-base-19.0.0-2578.ge5c885fe.el9.x86 4.9 MB/s | 5.4 MB 00:01 2024-04-07T20:30:20.499 INFO:teuthology.orchestra.run.smithi112.stdout:(2/32): ceph-selinux-19.0.0-2578.ge5c885fe.el9. 432 kB/s | 25 kB 00:00 2024-04-07T20:30:20.505 INFO:teuthology.orchestra.run.smithi044.stdout:(11/32): ceph-common-19.0.0-2578.ge5c885fe.el9. 7.3 MB/s | 21 MB 00:02 2024-04-07T20:30:20.530 INFO:teuthology.orchestra.run.smithi044.stdout:(12/32): python3-rbd-19.0.0-2578.ge5c885fe.el9. 779 kB/s | 299 kB 00:00 2024-04-07T20:30:20.581 INFO:teuthology.orchestra.run.smithi044.stdout:(13/32): python3-rgw-19.0.0-2578.ge5c885fe.el9. 361 kB/s | 99 kB 00:00 2024-04-07T20:30:20.591 INFO:teuthology.orchestra.run.smithi112.stdout:(3/32): libcephfs2-19.0.0-2578.ge5c885fe.el9.x8 8.0 MB/s | 746 kB 00:00 2024-04-07T20:30:20.700 INFO:teuthology.orchestra.run.smithi112.stdout:(4/32): libradosstriper1-19.0.0-2578.ge5c885fe. 4.5 MB/s | 500 kB 00:00 2024-04-07T20:30:20.923 INFO:teuthology.orchestra.run.smithi044.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 132 kB/s | 45 kB 00:00 2024-04-07T20:30:21.006 INFO:teuthology.orchestra.run.smithi044.stdout:(15/32): boost-program-options-1.75.0-8.el9.x86 225 kB/s | 107 kB 00:00 2024-04-07T20:30:21.090 INFO:teuthology.orchestra.run.smithi044.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 287 kB/s | 160 kB 00:00 2024-04-07T20:30:21.198 INFO:teuthology.orchestra.run.smithi044.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 391 kB/s | 42 kB 00:00 2024-04-07T20:30:21.274 INFO:teuthology.orchestra.run.smithi044.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.1 MB/s | 292 kB 00:00 2024-04-07T20:30:21.291 INFO:teuthology.orchestra.run.smithi112.stdout:(5/32): librgw2-19.0.0-2578.ge5c885fe.el9.x86_6 8.7 MB/s | 5.1 MB 00:00 2024-04-07T20:30:21.357 INFO:teuthology.orchestra.run.smithi044.stdout:(19/32): librdkafka-1.6.1-102.el9.x86_64.rpm 1.5 MB/s | 662 kB 00:00 2024-04-07T20:30:21.383 INFO:teuthology.orchestra.run.smithi044.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 330 kB/s | 36 kB 00:00 2024-04-07T20:30:21.408 INFO:teuthology.orchestra.run.smithi044.stdout:(21/32): qatlib-24.02.0-1.el9.x86_64.rpm 1.0 MB/s | 221 kB 00:00 2024-04-07T20:30:21.458 INFO:teuthology.orchestra.run.smithi044.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 471 kB/s | 47 kB 00:00 2024-04-07T20:30:21.559 INFO:teuthology.orchestra.run.smithi112.stdout:(6/32): ceph-common-19.0.0-2578.ge5c885fe.el9.x 9.3 MB/s | 21 MB 00:02 2024-04-07T20:30:21.584 INFO:teuthology.orchestra.run.smithi112.stdout:(7/32): python3-ceph-argparse-19.0.0-2578.ge5c8 154 kB/s | 45 kB 00:00 2024-04-07T20:30:21.609 INFO:teuthology.orchestra.run.smithi112.stdout:(8/32): python3-ceph-common-19.0.0-2578.ge5c885 2.6 MB/s | 134 kB 00:00 2024-04-07T20:30:21.626 INFO:teuthology.orchestra.run.smithi112.stdout:(9/32): python3-cephfs-19.0.0-2578.ge5c885fe.el 3.8 MB/s | 161 kB 00:00 2024-04-07T20:30:21.660 INFO:teuthology.orchestra.run.smithi112.stdout:(10/32): python3-rados-19.0.0-2578.ge5c885fe.el 6.2 MB/s | 320 kB 00:00 2024-04-07T20:30:21.667 INFO:teuthology.orchestra.run.smithi044.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 125 kB/s | 26 kB 00:00 2024-04-07T20:30:21.685 INFO:teuthology.orchestra.run.smithi112.stdout:(11/32): python3-rbd-19.0.0-2578.ge5c885fe.el9. 5.0 MB/s | 299 kB 00:00 2024-04-07T20:30:21.702 INFO:teuthology.orchestra.run.smithi112.stdout:(12/32): python3-rgw-19.0.0-2578.ge5c885fe.el9. 2.3 MB/s | 99 kB 00:00 2024-04-07T20:30:21.834 INFO:teuthology.orchestra.run.smithi044.stdout:(24/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 685 kB/s | 309 kB 00:00 2024-04-07T20:30:21.859 INFO:teuthology.orchestra.run.smithi044.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 253 kB/s | 49 kB 00:00 2024-04-07T20:30:21.894 INFO:teuthology.orchestra.run.smithi112.stdout:(13/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 837 kB/s | 160 kB 00:00 2024-04-07T20:30:21.918 INFO:teuthology.orchestra.run.smithi044.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 805 kB/s | 67 kB 00:00 2024-04-07T20:30:21.927 INFO:teuthology.orchestra.run.smithi112.stdout:(14/32): boost-program-options-1.75.0-8.el9.x86 441 kB/s | 107 kB 00:00 2024-04-07T20:30:21.969 INFO:teuthology.orchestra.run.smithi112.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 601 kB/s | 45 kB 00:00 2024-04-07T20:30:22.035 INFO:teuthology.orchestra.run.smithi044.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 1.6 MB/s | 192 kB 00:00 2024-04-07T20:30:22.128 INFO:teuthology.orchestra.run.smithi112.stdout:(16/32): ceph-radosgw-19.0.0-2578.ge5c885fe.el9 3.5 MB/s | 9.8 MB 00:02 2024-04-07T20:30:22.161 INFO:teuthology.orchestra.run.smithi112.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 2.8 MB/s | 662 kB 00:00 2024-04-07T20:30:22.168 INFO:teuthology.orchestra.run.smithi044.stdout:(28/32): libarrow-9.0.0-10.el9.x86_64.rpm 5.8 MB/s | 4.4 MB 00:00 2024-04-07T20:30:22.187 INFO:teuthology.orchestra.run.smithi112.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.3 MB/s | 292 kB 00:00 2024-04-07T20:30:22.212 INFO:teuthology.orchestra.run.smithi112.stdout:(19/32): python3-prettytable-0.7.2-27.el9.noarc 505 kB/s | 42 kB 00:00 2024-04-07T20:30:22.227 INFO:teuthology.orchestra.run.smithi044.stdout:(29/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 2.2 MB/s | 838 kB 00:00 2024-04-07T20:30:22.237 INFO:teuthology.orchestra.run.smithi112.stdout:(20/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.9 MB/s | 221 kB 00:00 2024-04-07T20:30:22.263 INFO:teuthology.orchestra.run.smithi112.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 475 kB/s | 36 kB 00:00 2024-04-07T20:30:22.288 INFO:teuthology.orchestra.run.smithi112.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 628 kB/s | 47 kB 00:00 2024-04-07T20:30:22.336 INFO:teuthology.orchestra.run.smithi044.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 5.3 MB/s | 1.6 MB 00:00 2024-04-07T20:30:22.669 INFO:teuthology.orchestra.run.smithi044.stdout:(31/32): librados2-19.0.0-2578.ge5c885fe.el9.x8 6.8 MB/s | 3.4 MB 00:00 2024-04-07T20:30:22.705 INFO:teuthology.orchestra.run.smithi112.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 62 kB/s | 26 kB 00:00 2024-04-07T20:30:22.727 INFO:teuthology.orchestra.run.smithi044.stdout:(32/32): librbd1-19.0.0-2578.ge5c885fe.el9.x86_ 6.3 MB/s | 3.1 MB 00:00 2024-04-07T20:30:22.730 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:30:22.730 INFO:teuthology.orchestra.run.smithi044.stdout:Total 11 MB/s | 59 MB 00:05 2024-04-07T20:30:22.833 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:30:22.872 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:30:22.872 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:30:22.880 INFO:teuthology.orchestra.run.smithi112.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 277 kB/s | 49 kB 00:00 2024-04-07T20:30:22.922 INFO:teuthology.orchestra.run.smithi112.stdout:(25/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 451 kB/s | 309 kB 00:00 2024-04-07T20:30:23.014 INFO:teuthology.orchestra.run.smithi112.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 504 kB/s | 67 kB 00:00 2024-04-07T20:30:23.198 INFO:teuthology.orchestra.run.smithi112.stdout:(27/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 3.0 MB/s | 838 kB 00:00 2024-04-07T20:30:23.215 INFO:teuthology.orchestra.run.smithi112.stdout:(28/32): re2-20211101-3.el9.x86_64.rpm 957 kB/s | 192 kB 00:00 2024-04-07T20:30:23.282 INFO:teuthology.orchestra.run.smithi112.stdout:(29/32): libarrow-9.0.0-10.el9.x86_64.rpm 4.3 MB/s | 4.4 MB 00:01 2024-04-07T20:30:23.371 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:30:23.371 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:30:23.415 INFO:teuthology.orchestra.run.smithi112.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 7.3 MB/s | 1.6 MB 00:00 2024-04-07T20:30:23.607 INFO:teuthology.orchestra.run.smithi112.stdout:(31/32): librados2-19.0.0-2578.ge5c885fe.el9.x8 8.7 MB/s | 3.4 MB 00:00 2024-04-07T20:30:23.674 INFO:teuthology.orchestra.run.smithi112.stdout:(32/32): librbd1-19.0.0-2578.ge5c885fe.el9.x86_ 8.0 MB/s | 3.1 MB 00:00 2024-04-07T20:30:23.681 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:30:23.681 INFO:teuthology.orchestra.run.smithi112.stdout:Total 13 MB/s | 59 MB 00:04 2024-04-07T20:30:23.783 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:30:23.819 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:30:23.819 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:30:24.300 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:30:24.300 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:30:25.002 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:30:25.095 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-07T20:30:25.133 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-07T20:30:25.158 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-07T20:30:25.181 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T20:30:25.197 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T20:30:25.339 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T20:30:25.395 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T20:30:25.787 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-07T20:30:25.792 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:30:25.826 INFO:teuthology.orchestra.run.smithi044.stdout: Upgrading : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:30:25.879 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-07T20:30:25.911 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:30:25.921 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-07T20:30:25.946 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-07T20:30:25.969 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T20:30:25.986 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T20:30:26.000 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 8/34 2024-04-07T20:30:26.037 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T20:30:26.083 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T20:30:26.183 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T20:30:26.183 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-07T20:30:26.183 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 11/34 2024-04-07T20:30:26.226 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T20:30:26.232 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T20:30:26.247 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T20:30:26.306 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T20:30:26.342 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-07T20:30:26.461 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-07T20:30:26.497 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-07T20:30:26.538 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-07T20:30:26.555 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-07T20:30:26.570 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-07T20:30:26.599 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-07T20:30:26.614 INFO:teuthology.orchestra.run.smithi112.stdout: Upgrading : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:30:26.632 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-07T20:30:26.689 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:30:26.775 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 8/34 2024-04-07T20:30:26.799 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T20:30:26.854 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T20:30:26.882 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-07T20:30:26.926 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 11/34 2024-04-07T20:30:26.972 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-07T20:30:26.995 INFO:teuthology.orchestra.run.smithi044.stdout: Upgrading : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T20:30:26.997 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T20:30:27.026 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T20:30:27.070 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T20:30:27.074 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T20:30:27.100 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 23/34 2024-04-07T20:30:27.109 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-07T20:30:27.141 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-07T20:30:27.216 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-07T20:30:27.260 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-07T20:30:27.300 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-07T20:30:27.332 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-07T20:30:27.362 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-07T20:30:27.394 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-07T20:30:27.621 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-07T20:30:27.656 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T20:30:27.710 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-07T20:30:27.711 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T20:30:27.741 INFO:teuthology.orchestra.run.smithi112.stdout: Upgrading : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T20:30:27.783 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 27/34 2024-04-07T20:30:27.817 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 28/34 2024-04-07T20:30:27.850 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T20:30:27.879 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 23/34 2024-04-07T20:30:27.920 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-07T20:30:28.374 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-07T20:30:28.402 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T20:30:28.473 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T20:30:28.542 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 27/34 2024-04-07T20:30:28.571 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 28/34 2024-04-07T20:30:30.100 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:30:30.147 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:30:30.727 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:30:30.767 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T20:30:30.856 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:30:30.880 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T20:30:30.880 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-07T20:30:30.880 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-07T20:30:30.881 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:30.919 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:30:31.026 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:30:31.595 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:30:31.646 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T20:30:31.730 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T20:30:31.730 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-07T20:30:31.730 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-07T20:30:31.730 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:31.764 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:30:40.983 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:30:40.984 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /sys 2024-04-07T20:30:40.984 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /proc 2024-04-07T20:30:40.984 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /mnt 2024-04-07T20:30:40.984 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /var/tmp 2024-04-07T20:30:40.984 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /home 2024-04-07T20:30:40.984 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /root 2024-04-07T20:30:40.984 INFO:teuthology.orchestra.run.smithi044.stdout:skipping the directory /tmp 2024-04-07T20:30:40.984 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout:skipping the directory /sys 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout:skipping the directory /proc 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout:skipping the directory /mnt 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout:skipping the directory /var/tmp 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout:skipping the directory /home 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout:skipping the directory /root 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout:skipping the directory /tmp 2024-04-07T20:30:41.424 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:41.948 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T20:30:41.971 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T20:30:41.972 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:30:41.972 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-07T20:30:41.972 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T20:30:41.972 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T20:30:41.972 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:41.974 INFO:teuthology.orchestra.run.smithi044.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T20:30:42.068 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T20:30:42.068 INFO:teuthology.orchestra.run.smithi044.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:30:42.355 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T20:30:42.380 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T20:30:42.380 INFO:teuthology.orchestra.run.smithi112.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:30:42.380 INFO:teuthology.orchestra.run.smithi112.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-07T20:30:42.380 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T20:30:42.380 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T20:30:42.380 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:42.382 INFO:teuthology.orchestra.run.smithi112.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T20:30:42.466 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T20:30:42.466 INFO:teuthology.orchestra.run.smithi112.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:30:43.252 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:30:43.252 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/34 2024-04-07T20:30:43.252 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/34 2024-04-07T20:30:43.252 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/34 2024-04-07T20:30:43.252 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 6/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 8/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 9/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 10/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 11/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 13/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-07T20:30:43.253 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:30:43.254 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-07T20:30:43.255 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/34 2024-04-07T20:30:43.653 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 6/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 8/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 9/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 10/34 2024-04-07T20:30:43.654 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 11/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 13/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-07T20:30:43.655 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-07T20:30:43.656 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/34 2024-04-07T20:30:44.483 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:30:44.483 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:44.483 INFO:teuthology.orchestra.run.smithi044.stdout:Upgraded: 2024-04-07T20:30:44.483 INFO:teuthology.orchestra.run.smithi044.stdout: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.483 INFO:teuthology.orchestra.run.smithi044.stdout: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.483 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:30:44.483 INFO:teuthology.orchestra.run.smithi044.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-07T20:30:44.484 INFO:teuthology.orchestra.run.smithi044.stdout: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-07T20:30:44.485 INFO:teuthology.orchestra.run.smithi044.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-07T20:30:44.486 INFO:teuthology.orchestra.run.smithi044.stdout: re2-1:20211101-3.el9.x86_64 2024-04-07T20:30:44.486 INFO:teuthology.orchestra.run.smithi044.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-07T20:30:44.486 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:44.486 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout:Upgraded: 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.630 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-07T20:30:44.631 INFO:teuthology.orchestra.run.smithi112.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: re2-1:20211101-3.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:44.632 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:30:44.830 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-test 2024-04-07T20:30:44.972 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-test 2024-04-07T20:30:45.429 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:31 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:30:45.558 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:00:29 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:30:45.740 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:30:45.740 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:30:45.740 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:30:45.740 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.740 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:30:45.740 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.740 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:30:45.740 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.741 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:30:45.742 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.743 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.744 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.745 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.746 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.747 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.748 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.748 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:30:45.748 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.748 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.748 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.748 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.824 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:30:45.824 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-test x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 48 M 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout: libcephsqlite x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 163 k 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:30:45.825 INFO:teuthology.orchestra.run.smithi044.stdout:Install 6 Packages 2024-04-07T20:30:45.826 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:30:45.826 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 49 M 2024-04-07T20:30:45.826 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 206 M 2024-04-07T20:30:45.826 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:30:45.847 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:30:45.847 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:30:45.847 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:30:45.847 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.847 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:30:45.847 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:30:45.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.850 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.851 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:30:45.852 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.853 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.854 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.855 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.856 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:30:45.916 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-test x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 48 M 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout: libcephsqlite x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 163 k 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:45.917 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:30:45.918 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:45.918 INFO:teuthology.orchestra.run.smithi112.stdout:Install 6 Packages 2024-04-07T20:30:45.918 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:45.918 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 49 M 2024-04-07T20:30:45.918 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 206 M 2024-04-07T20:30:45.918 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:30:46.488 INFO:teuthology.orchestra.run.smithi112.stdout:(1/6): libcephsqlite-19.0.0-2578.ge5c885fe.el9. 644 kB/s | 163 kB 00:00 2024-04-07T20:30:46.491 INFO:teuthology.orchestra.run.smithi044.stdout:(1/6): libcephsqlite-19.0.0-2578.ge5c885fe.el9. 714 kB/s | 163 kB 00:00 2024-04-07T20:30:46.530 INFO:teuthology.orchestra.run.smithi112.stdout:(2/6): jq-1.6-16.el9.x86_64.rpm 634 kB/s | 187 kB 00:00 2024-04-07T20:30:46.772 INFO:teuthology.orchestra.run.smithi112.stdout:(3/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 769 kB/s | 218 kB 00:00 2024-04-07T20:30:46.808 INFO:teuthology.orchestra.run.smithi044.stdout:(2/6): jq-1.6-16.el9.x86_64.rpm 343 kB/s | 187 kB 00:00 2024-04-07T20:30:47.158 INFO:teuthology.orchestra.run.smithi044.stdout:(3/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 327 kB/s | 218 kB 00:00 2024-04-07T20:30:47.164 INFO:teuthology.orchestra.run.smithi112.stdout:(4/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 163 kB/s | 64 kB 00:00 2024-04-07T20:30:47.189 INFO:teuthology.orchestra.run.smithi112.stdout:(5/6): socat-1.7.4.1-5.el9.x86_64.rpm 463 kB/s | 305 kB 00:00 2024-04-07T20:30:47.540 INFO:teuthology.orchestra.run.smithi044.stdout:(4/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 167 kB/s | 64 kB 00:00 2024-04-07T20:30:47.728 INFO:teuthology.orchestra.run.smithi044.stdout:(5/6): socat-1.7.4.1-5.el9.x86_64.rpm 331 kB/s | 305 kB 00:00 2024-04-07T20:30:47.752 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - Extras packages 504 B/s | 16 kB 00:31 2024-04-07T20:30:48.589 INFO:teuthology.orchestra.run.smithi112.stdout:(6/6): ceph-test-19.0.0-2578.ge5c885fe.el9.x86_ 20 MB/s | 48 MB 00:02 2024-04-07T20:30:48.591 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:30:48.591 INFO:teuthology.orchestra.run.smithi112.stdout:Total 18 MB/s | 49 MB 00:02 2024-04-07T20:30:48.641 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:30:48.662 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:30:48.662 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:30:49.050 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:30:49.051 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:30:49.623 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:30:49.715 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-07T20:30:49.752 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-07T20:30:49.784 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-07T20:30:49.823 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-07T20:30:49.850 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T20:30:52.121 INFO:teuthology.orchestra.run.smithi191.stdout:Extra Packages for Enterprise Linux 4.9 MB/s | 21 MB 00:04 2024-04-07T20:30:54.352 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T20:30:54.426 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T20:30:56.923 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T20:30:56.924 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/6 2024-04-07T20:30:56.924 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/6 2024-04-07T20:30:56.924 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-07T20:30:56.924 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-07T20:30:56.924 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-07T20:30:57.321 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout: jq-1.6-16.el9.x86_64 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:57.322 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:30:57.421 INFO:teuthology.orchestra.run.smithi191.stdout:lab-extras 4.9 kB/s | 1.7 kB 00:00 2024-04-07T20:30:57.637 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph 2024-04-07T20:30:58.239 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:00:42 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:30:58.480 INFO:teuthology.orchestra.run.smithi044.stdout:(6/6): ceph-test-19.0.0-2578.ge5c885fe.el9.x86_ 3.9 MB/s | 48 MB 00:12 2024-04-07T20:30:58.482 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:30:58.482 INFO:teuthology.orchestra.run.smithi044.stdout:Total 3.8 MB/s | 49 MB 00:12 2024-04-07T20:30:58.530 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:30:58.530 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:30:58.530 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:30:58.530 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.530 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:30:58.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:30:58.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:30:58.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:30:58.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.538 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:30:58.539 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:30:58.549 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:30:58.550 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:30:58.601 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: ceph x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 6.6 k 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mds x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 2.4 M 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 1.5 M 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 249 k 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mon x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 4.7 M 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-osd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 17 M 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-07T20:30:58.604 INFO:teuthology.orchestra.run.smithi112.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-collections 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-07T20:30:58.605 INFO:teuthology.orchestra.run.smithi112.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:58.606 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:30:58.607 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:30:58.607 INFO:teuthology.orchestra.run.smithi112.stdout:Install 36 Packages 2024-04-07T20:30:58.607 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:30:58.607 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 30 M 2024-04-07T20:30:58.607 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 108 M 2024-04-07T20:30:58.607 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:30:58.958 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:30:58.958 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:30:58.994 INFO:teuthology.orchestra.run.smithi112.stdout:(1/36): ceph-19.0.0-2578.ge5c885fe.el9.x86_64.r 31 kB/s | 6.6 kB 00:00 2024-04-07T20:30:59.303 INFO:teuthology.orchestra.run.smithi112.stdout:(2/36): ceph-mds-19.0.0-2578.ge5c885fe.el9.x86_ 4.5 MB/s | 2.4 MB 00:00 2024-04-07T20:30:59.378 INFO:teuthology.orchestra.run.smithi112.stdout:(3/36): ceph-mgr-19.0.0-2578.ge5c885fe.el9.x86_ 2.5 MB/s | 1.5 MB 00:00 2024-04-07T20:30:59.486 INFO:teuthology.orchestra.run.smithi112.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2578.ge5c8 2.2 MB/s | 249 kB 00:00 2024-04-07T20:30:59.554 INFO:teuthology.orchestra.run.smithi112.stdout:(5/36): ceph-mon-19.0.0-2578.ge5c885fe.el9.x86_ 8.4 MB/s | 4.7 MB 00:00 2024-04-07T20:30:59.564 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:30:59.648 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-07T20:30:59.691 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-07T20:30:59.731 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-07T20:30:59.762 INFO:teuthology.orchestra.run.smithi112.stdout:(6/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 919 kB/s | 253 kB 00:00 2024-04-07T20:30:59.786 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-07T20:30:59.813 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T20:30:59.821 INFO:teuthology.orchestra.run.smithi112.stdout:(7/36): python3-ply-3.11-14.el9.noarch.rpm 1.8 MB/s | 106 kB 00:00 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:30:59.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:30:59.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.865 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.866 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.867 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.868 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.869 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.870 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:30:59.871 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.872 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.872 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.873 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:30:59.879 INFO:teuthology.orchestra.run.smithi112.stdout:(8/36): python3-pycparser-2.20-6.el9.noarch.rpm 2.3 MB/s | 135 kB 00:00 2024-04-07T20:30:59.913 INFO:teuthology.orchestra.run.smithi112.stdout:(9/36): python3-cryptography-36.0.1-4.el9.x86_6 3.4 MB/s | 1.2 MB 00:00 2024-04-07T20:30:59.938 INFO:teuthology.orchestra.run.smithi112.stdout:(10/36): python3-requests-2.25.1-8.el9.noarch.r 2.1 MB/s | 125 kB 00:00 2024-04-07T20:30:59.972 INFO:teuthology.orchestra.run.smithi112.stdout:(11/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.6 MB/s | 215 kB 00:00 2024-04-07T20:30:59.997 INFO:teuthology.orchestra.run.smithi112.stdout:(12/36): lua-5.4.4-4.el9.x86_64.rpm 3.1 MB/s | 188 kB 00:00 2024-04-07T20:31:00.031 INFO:teuthology.orchestra.run.smithi112.stdout:(13/36): python3-mako-1.1.4-6.el9.noarch.rpm 2.9 MB/s | 172 kB 00:00 2024-04-07T20:31:00.056 INFO:teuthology.orchestra.run.smithi112.stdout:(14/36): python3-markupsafe-1.1.1-12.el9.x86_64 594 kB/s | 35 kB 00:00 2024-04-07T20:31:00.089 INFO:teuthology.orchestra.run.smithi112.stdout:(15/36): python3-pytz-2021.1-5.el9.noarch.rpm 873 kB/s | 51 kB 00:00 2024-04-07T20:31:00.115 INFO:teuthology.orchestra.run.smithi112.stdout:(16/36): python3-toml-0.10.2-6.el9.noarch.rpm 710 kB/s | 42 kB 00:00 2024-04-07T20:31:00.290 INFO:teuthology.orchestra.run.smithi112.stdout:(17/36): ceph-osd-19.0.0-2578.ge5c885fe.el9.x86 17 MB/s | 17 MB 00:00 2024-04-07T20:31:00.315 INFO:teuthology.orchestra.run.smithi112.stdout:(18/36): lua-devel-5.4.4-4.el9.x86_64.rpm 99 kB/s | 22 kB 00:00 2024-04-07T20:31:00.408 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-radosgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 9.8 M 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout:Upgrading: 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout: librados2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.4 M 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout: librbd1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-base x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.4 M 2024-04-07T20:31:00.417 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 21 M 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-selinux x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 25 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 746 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: libradosstriper1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 500 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: librgw2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.1 M 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-07T20:31:00.418 INFO:teuthology.orchestra.run.smithi191.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-argparse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 45 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 134 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cephfs x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 161 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rados x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 320 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 299 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 99 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout:Installing weak dependencies: 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-07T20:31:00.419 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:00.420 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:31:00.420 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:00.420 INFO:teuthology.orchestra.run.smithi191.stdout:Install 30 Packages 2024-04-07T20:31:00.420 INFO:teuthology.orchestra.run.smithi191.stdout:Upgrade 2 Packages 2024-04-07T20:31:00.420 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:00.420 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 59 M 2024-04-07T20:31:00.420 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:31:00.607 INFO:teuthology.orchestra.run.smithi112.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 137 kB/s | 43 kB 00:00 2024-04-07T20:31:00.632 INFO:teuthology.orchestra.run.smithi112.stdout:(20/36): luarocks-3.9.2-1.el9.noarch.rpm 292 kB/s | 151 kB 00:00 2024-04-07T20:31:00.709 INFO:teuthology.orchestra.run.smithi112.stdout:(21/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 438 kB/s | 172 kB 00:00 2024-04-07T20:31:00.741 INFO:teuthology.orchestra.run.smithi112.stdout:(22/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 98 kB/s | 11 kB 00:00 2024-04-07T20:31:00.825 INFO:teuthology.orchestra.run.smithi112.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 151 kB/s | 18 kB 00:00 2024-04-07T20:31:00.850 INFO:teuthology.orchestra.run.smithi112.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 213 kB/s | 23 kB 00:00 2024-04-07T20:31:00.875 INFO:teuthology.orchestra.run.smithi112.stdout:(25/36): python3-cherrypy-18.6.1-2.el9.noarch.r 1.3 MB/s | 358 kB 00:00 2024-04-07T20:31:00.918 INFO:teuthology.orchestra.run.smithi112.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 211 kB/s | 19 kB 00:00 2024-04-07T20:31:00.968 INFO:teuthology.orchestra.run.smithi112.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 168 kB/s | 20 kB 00:00 2024-04-07T20:31:00.993 INFO:teuthology.orchestra.run.smithi112.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 395 kB/s | 46 kB 00:00 2024-04-07T20:31:01.019 INFO:teuthology.orchestra.run.smithi112.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 782 kB/s | 79 kB 00:00 2024-04-07T20:31:01.135 INFO:teuthology.orchestra.run.smithi112.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 115 kB/s | 16 kB 00:00 2024-04-07T20:31:01.152 INFO:teuthology.orchestra.run.smithi112.stdout:(31/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 674 kB/s | 90 kB 00:00 2024-04-07T20:31:01.203 INFO:teuthology.orchestra.run.smithi112.stdout:(32/36): python3-pecan-1.4.2-3.el9.noarch.rpm 1.1 MB/s | 272 kB 00:00 2024-04-07T20:31:01.246 INFO:teuthology.orchestra.run.smithi112.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 329 kB/s | 36 kB 00:00 2024-04-07T20:31:01.395 INFO:teuthology.orchestra.run.smithi112.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 949 kB/s | 230 kB 00:00 2024-04-07T20:31:01.420 INFO:teuthology.orchestra.run.smithi112.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 114 kB/s | 20 kB 00:00 2024-04-07T20:31:01.478 INFO:teuthology.orchestra.run.smithi112.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 1.5 MB/s | 427 kB 00:00 2024-04-07T20:31:01.481 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:01.481 INFO:teuthology.orchestra.run.smithi112.stdout:Total 10 MB/s | 30 MB 00:02 2024-04-07T20:31:01.622 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:01.660 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:01.661 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:01.814 INFO:teuthology.orchestra.run.smithi191.stdout:(1/32): ceph-base-19.0.0-2578.ge5c885fe.el9.x86 4.8 MB/s | 5.4 MB 00:01 2024-04-07T20:31:01.881 INFO:teuthology.orchestra.run.smithi191.stdout:(2/32): ceph-selinux-19.0.0-2578.ge5c885fe.el9. 377 kB/s | 25 kB 00:00 2024-04-07T20:31:02.073 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:02.073 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:02.082 INFO:teuthology.orchestra.run.smithi191.stdout:(3/32): libcephfs2-19.0.0-2578.ge5c885fe.el9.x8 3.6 MB/s | 746 kB 00:00 2024-04-07T20:31:02.332 INFO:teuthology.orchestra.run.smithi191.stdout:(4/32): ceph-radosgw-19.0.0-2578.ge5c885fe.el9. 6.0 MB/s | 9.8 MB 00:01 2024-04-07T20:31:02.357 INFO:teuthology.orchestra.run.smithi191.stdout:(5/32): libradosstriper1-19.0.0-2578.ge5c885fe. 1.8 MB/s | 500 kB 00:00 2024-04-07T20:31:02.441 INFO:teuthology.orchestra.run.smithi191.stdout:(6/32): python3-ceph-argparse-19.0.0-2578.ge5c8 539 kB/s | 45 kB 00:00 2024-04-07T20:31:02.525 INFO:teuthology.orchestra.run.smithi191.stdout:(7/32): python3-ceph-common-19.0.0-2578.ge5c885 1.6 MB/s | 134 kB 00:00 2024-04-07T20:31:02.617 INFO:teuthology.orchestra.run.smithi191.stdout:(8/32): python3-cephfs-19.0.0-2578.ge5c885fe.el 1.7 MB/s | 161 kB 00:00 2024-04-07T20:31:02.717 INFO:teuthology.orchestra.run.smithi191.stdout:(9/32): python3-rados-19.0.0-2578.ge5c885fe.el9 3.1 MB/s | 320 kB 00:00 2024-04-07T20:31:02.852 INFO:teuthology.orchestra.run.smithi191.stdout:(10/32): librgw2-19.0.0-2578.ge5c885fe.el9.x86_ 9.9 MB/s | 5.1 MB 00:00 2024-04-07T20:31:02.876 INFO:teuthology.orchestra.run.smithi191.stdout:(11/32): python3-rbd-19.0.0-2578.ge5c885fe.el9. 1.8 MB/s | 299 kB 00:00 2024-04-07T20:31:03.136 INFO:teuthology.orchestra.run.smithi191.stdout:(12/32): ceph-common-19.0.0-2578.ge5c885fe.el9. 8.5 MB/s | 21 MB 00:02 2024-04-07T20:31:03.160 INFO:teuthology.orchestra.run.smithi191.stdout:(13/32): python3-rgw-19.0.0-2578.ge5c885fe.el9. 322 kB/s | 99 kB 00:00 2024-04-07T20:31:03.496 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:03.547 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-07T20:31:03.580 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-07T20:31:03.608 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-07T20:31:03.700 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-07T20:31:03.740 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-07T20:31:03.769 INFO:teuthology.orchestra.run.smithi191.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 74 kB/s | 45 kB 00:00 2024-04-07T20:31:03.773 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-07T20:31:03.836 INFO:teuthology.orchestra.run.smithi191.stdout:(15/32): boost-program-options-1.75.0-8.el9.x86 111 kB/s | 107 kB 00:00 2024-04-07T20:31:03.865 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-07T20:31:03.935 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-07T20:31:03.975 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-07T20:31:03.987 INFO:teuthology.orchestra.run.smithi191.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 188 kB/s | 160 kB 00:00 2024-04-07T20:31:04.010 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-07T20:31:04.041 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-07T20:31:04.075 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-07T20:31:04.108 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-07T20:31:04.149 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-07T20:31:04.184 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-07T20:31:04.218 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-07T20:31:04.256 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-07T20:31:04.329 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-07T20:31:04.464 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-07T20:31:04.547 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-07T20:31:04.569 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T20:31:04.595 INFO:teuthology.orchestra.run.smithi191.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 69 kB/s | 42 kB 00:00 2024-04-07T20:31:04.600 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-07T20:31:04.639 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-07T20:31:04.648 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T20:31:04.687 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-07T20:31:04.743 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-07T20:31:04.796 INFO:teuthology.orchestra.run.smithi191.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 305 kB/s | 292 kB 00:00 2024-04-07T20:31:04.938 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-07T20:31:04.984 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-07T20:31:05.054 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-07T20:31:05.142 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-07T20:31:05.183 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-07T20:31:05.271 INFO:teuthology.orchestra.run.smithi191.stdout:(19/32): librdkafka-1.6.1-102.el9.x86_64.rpm 441 kB/s | 662 kB 00:01 2024-04-07T20:31:05.298 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-07T20:31:05.464 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 31/36 2024-04-07T20:31:05.471 INFO:teuthology.orchestra.run.smithi191.stdout:(20/32): qatlib-24.02.0-1.el9.x86_64.rpm 252 kB/s | 221 kB 00:00 2024-04-07T20:31:05.488 INFO:teuthology.orchestra.run.smithi191.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 52 kB/s | 36 kB 00:00 2024-04-07T20:31:05.493 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T20:31:05.518 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T20:31:05.518 INFO:teuthology.orchestra.run.smithi112.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:05.518 INFO:teuthology.orchestra.run.smithi112.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-07T20:31:05.519 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T20:31:05.519 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T20:31:05.519 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:05.889 INFO:teuthology.orchestra.run.smithi191.stdout:(22/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 741 kB/s | 309 kB 00:00 2024-04-07T20:31:05.914 INFO:teuthology.orchestra.run.smithi191.stdout:(23/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 74 kB/s | 47 kB 00:00 2024-04-07T20:31:05.964 INFO:teuthology.orchestra.run.smithi191.stdout:(24/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 348 kB/s | 26 kB 00:00 2024-04-07T20:31:06.073 INFO:teuthology.orchestra.run.smithi191.stdout:(25/32): libunwind-1.6.2-1.el9.x86_64.rpm 810 kB/s | 67 kB 00:00 2024-04-07T20:31:06.173 INFO:teuthology.orchestra.run.smithi191.stdout:(26/32): libarrow-9.0.0-10.el9.x86_64.rpm 6.5 MB/s | 4.4 MB 00:00 2024-04-07T20:31:06.216 INFO:teuthology.orchestra.run.smithi191.stdout:(27/32): liboath-2.6.7-2.el9.x86_64.rpm 161 kB/s | 49 kB 00:00 2024-04-07T20:31:06.241 INFO:teuthology.orchestra.run.smithi191.stdout:(28/32): re2-20211101-3.el9.x86_64.rpm 2.8 MB/s | 192 kB 00:00 2024-04-07T20:31:06.274 INFO:teuthology.orchestra.run.smithi191.stdout:(29/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 4.1 MB/s | 838 kB 00:00 2024-04-07T20:31:06.567 INFO:teuthology.orchestra.run.smithi191.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 4.5 MB/s | 1.6 MB 00:00 2024-04-07T20:31:06.692 INFO:teuthology.orchestra.run.smithi191.stdout:(31/32): librbd1-19.0.0-2578.ge5c885fe.el9.x86_ 7.5 MB/s | 3.1 MB 00:00 2024-04-07T20:31:06.817 INFO:teuthology.orchestra.run.smithi191.stdout:(32/32): librados2-19.0.0-2578.ge5c885fe.el9.x8 5.9 MB/s | 3.4 MB 00:00 2024-04-07T20:31:06.822 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:06.822 INFO:teuthology.orchestra.run.smithi191.stdout:Total 9.2 MB/s | 59 MB 00:06 2024-04-07T20:31:06.894 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T20:31:06.894 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/6 2024-04-07T20:31:06.894 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/6 2024-04-07T20:31:06.894 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-07T20:31:06.894 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-07T20:31:06.894 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-07T20:31:06.914 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:31:06.944 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T20:31:06.949 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:31:06.949 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:31:06.970 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T20:31:06.971 INFO:teuthology.orchestra.run.smithi112.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:06.971 INFO:teuthology.orchestra.run.smithi112.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-07T20:31:06.971 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T20:31:06.971 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T20:31:06.971 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: jq-1.6-16.el9.x86_64 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:07.282 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:07.412 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T20:31:07.432 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:31:07.432 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:31:07.435 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T20:31:07.435 INFO:teuthology.orchestra.run.smithi112.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:07.436 INFO:teuthology.orchestra.run.smithi112.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-07T20:31:07.436 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T20:31:07.436 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T20:31:07.436 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:07.585 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph 2024-04-07T20:31:07.654 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T20:31:07.678 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T20:31:07.678 INFO:teuthology.orchestra.run.smithi112.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:07.678 INFO:teuthology.orchestra.run.smithi112.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-07T20:31:07.678 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T20:31:07.678 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T20:31:07.678 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:07.735 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T20:31:08.191 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:00:54 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:31:08.496 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:31:08.496 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:31:08.496 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:31:08.496 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.496 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:31:08.496 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.496 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.497 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:31:08.498 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:31:08.499 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:31:08.500 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.501 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.502 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.503 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.504 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:08.575 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:31:08.578 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:08.578 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:31:08.578 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:08.578 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:31:08.578 INFO:teuthology.orchestra.run.smithi044.stdout: ceph x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 6.6 k 2024-04-07T20:31:08.578 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mds x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 2.4 M 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 1.5 M 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 249 k 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mon x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 4.7 M 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-osd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 17 M 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-07T20:31:08.579 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-collections 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-07T20:31:08.580 INFO:teuthology.orchestra.run.smithi044.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout:Install 36 Packages 2024-04-07T20:31:08.581 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:08.582 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 30 M 2024-04-07T20:31:08.582 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 108 M 2024-04-07T20:31:08.582 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:31:08.930 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:31:09.014 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-07T20:31:09.048 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-07T20:31:09.073 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-07T20:31:09.096 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T20:31:09.113 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T20:31:09.214 INFO:teuthology.orchestra.run.smithi044.stdout:(1/36): ceph-19.0.0-2578.ge5c885fe.el9.x86_64.r 35 kB/s | 6.6 kB 00:00 2024-04-07T20:31:09.256 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T20:31:09.311 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T20:31:09.389 INFO:teuthology.orchestra.run.smithi044.stdout:(2/36): ceph-mds-19.0.0-2578.ge5c885fe.el9.x86_ 6.5 MB/s | 2.4 MB 00:00 2024-04-07T20:31:09.496 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 6/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-07T20:31:09.497 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-07T20:31:09.498 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-07T20:31:09.499 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-07T20:31:09.499 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-07T20:31:09.499 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-07T20:31:09.500 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-07T20:31:09.500 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-07T20:31:09.500 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-07T20:31:09.500 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-07T20:31:09.500 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-07T20:31:09.500 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-07T20:31:09.500 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-07T20:31:09.643 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-07T20:31:09.702 INFO:teuthology.orchestra.run.smithi191.stdout: Upgrading : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:31:09.793 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:31:09.847 INFO:teuthology.orchestra.run.smithi044.stdout:(3/36): ceph-mgr-19.0.0-2578.ge5c885fe.el9.x86_ 1.8 MB/s | 1.5 MB 00:00 2024-04-07T20:31:09.882 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 8/34 2024-04-07T20:31:09.912 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T20:31:09.966 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T20:31:09.995 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-07T20:31:10.031 INFO:teuthology.orchestra.run.smithi044.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2578.ge5c8 1.3 MB/s | 249 kB 00:00 2024-04-07T20:31:10.048 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 11/34 2024-04-07T20:31:10.116 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T20:31:10.140 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T20:31:10.205 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T20:31:10.239 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-07T20:31:10.281 INFO:teuthology.orchestra.run.smithi044.stdout:(5/36): ceph-osd-19.0.0-2578.ge5c885fe.el9.x86_ 19 MB/s | 17 MB 00:00 2024-04-07T20:31:10.348 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-07T20:31:10.382 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:10.396 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: lua-5.4.4-4.el9.x86_64 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-07T20:31:10.397 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-ply-3.11-14.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-07T20:31:10.398 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:10.399 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:10.406 INFO:teuthology.orchestra.run.smithi044.stdout:(6/36): ceph-mon-19.0.0-2578.ge5c885fe.el9.x86_ 3.9 MB/s | 4.7 MB 00:01 2024-04-07T20:31:10.431 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-07T20:31:10.432 INFO:teuthology.orchestra.run.smithi044.stdout:(7/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 632 kB/s | 253 kB 00:00 2024-04-07T20:31:10.465 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-07T20:31:10.493 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-07T20:31:10.527 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-07T20:31:10.532 INFO:teuthology.orchestra.run.smithi044.stdout:(8/36): python3-pycparser-2.20-6.el9.noarch.rpm 1.3 MB/s | 135 kB 00:00 2024-04-07T20:31:10.590 INFO:teuthology.orchestra.run.smithi044.stdout:(9/36): python3-ply-3.11-14.el9.noarch.rpm 580 kB/s | 106 kB 00:00 2024-04-07T20:31:10.624 INFO:teuthology.orchestra.run.smithi044.stdout:(10/36): python3-requests-2.25.1-8.el9.noarch.r 1.3 MB/s | 125 kB 00:00 2024-04-07T20:31:10.649 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-base 2024-04-07T20:31:10.657 INFO:teuthology.orchestra.run.smithi044.stdout:(11/36): python3-cryptography-36.0.1-4.el9.x86_ 3.3 MB/s | 1.2 MB 00:00 2024-04-07T20:31:10.717 INFO:teuthology.orchestra.run.smithi044.stdout:(12/36): python3-urllib3-1.26.5-5.el9.noarch.rp 1.7 MB/s | 215 kB 00:00 2024-04-07T20:31:10.825 INFO:teuthology.orchestra.run.smithi044.stdout:(13/36): lua-5.4.4-4.el9.x86_64.rpm 940 kB/s | 188 kB 00:00 2024-04-07T20:31:10.832 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-07T20:31:10.842 INFO:teuthology.orchestra.run.smithi044.stdout:(14/36): python3-markupsafe-1.1.1-12.el9.x86_64 277 kB/s | 35 kB 00:00 2024-04-07T20:31:10.865 INFO:teuthology.orchestra.run.smithi191.stdout: Upgrading : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T20:31:10.867 INFO:teuthology.orchestra.run.smithi044.stdout:(15/36): python3-mako-1.1.4-6.el9.noarch.rpm 822 kB/s | 172 kB 00:00 2024-04-07T20:31:10.884 INFO:teuthology.orchestra.run.smithi044.stdout:(16/36): python3-pytz-2021.1-5.el9.noarch.rpm 868 kB/s | 51 kB 00:00 2024-04-07T20:31:10.918 INFO:teuthology.orchestra.run.smithi044.stdout:(17/36): python3-toml-0.10.2-6.el9.noarch.rpm 551 kB/s | 42 kB 00:00 2024-04-07T20:31:10.964 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T20:31:10.995 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 23/34 2024-04-07T20:31:11.001 INFO:teuthology.orchestra.run.smithi044.stdout:(18/36): lua-devel-5.4.4-4.el9.x86_64.rpm 167 kB/s | 22 kB 00:00 2024-04-07T20:31:11.035 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-07T20:31:11.235 INFO:teuthology.orchestra.run.smithi044.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 150 kB/s | 43 kB 00:00 2024-04-07T20:31:11.242 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:00:55 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:11.302 INFO:teuthology.orchestra.run.smithi044.stdout:(20/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 632 kB/s | 172 kB 00:00 2024-04-07T20:31:11.352 INFO:teuthology.orchestra.run.smithi044.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 214 kB/s | 11 kB 00:00 2024-04-07T20:31:11.394 INFO:teuthology.orchestra.run.smithi044.stdout:(22/36): python3-cherrypy-18.6.1-2.el9.noarch.r 2.2 MB/s | 358 kB 00:00 2024-04-07T20:31:11.436 INFO:teuthology.orchestra.run.smithi044.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 211 kB/s | 18 kB 00:00 2024-04-07T20:31:11.478 INFO:teuthology.orchestra.run.smithi044.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 277 kB/s | 23 kB 00:00 2024-04-07T20:31:11.495 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-07T20:31:11.520 INFO:teuthology.orchestra.run.smithi044.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 233 kB/s | 19 kB 00:00 2024-04-07T20:31:11.527 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.529 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:11.530 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.531 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.532 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:11.533 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.534 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:11.535 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.536 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.537 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:11.538 INFO:teuthology.orchestra.run.smithi112.stdout:Package ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:31:11.545 INFO:teuthology.orchestra.run.smithi044.stdout:(26/36): python3-jaraco-text-3.2.0-6.el9.noarch 295 kB/s | 20 kB 00:00 2024-04-07T20:31:11.596 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:11.597 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:31:11.597 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:11.598 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T20:31:11.612 INFO:teuthology.orchestra.run.smithi044.stdout:(27/36): python3-more-itertools-8.12.0-2.el9.no 1.2 MB/s | 79 kB 00:00 2024-04-07T20:31:11.668 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install cephadm 2024-04-07T20:31:11.668 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 27/34 2024-04-07T20:31:11.697 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 28/34 2024-04-07T20:31:11.763 INFO:teuthology.orchestra.run.smithi044.stdout:(28/36): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-04-07T20:31:11.830 INFO:teuthology.orchestra.run.smithi044.stdout:(29/36): python3-portend-3.1.0-2.el9.noarch.rpm 246 kB/s | 16 kB 00:00 2024-04-07T20:31:11.930 INFO:teuthology.orchestra.run.smithi044.stdout:(30/36): luarocks-3.9.2-1.el9.noarch.rpm 144 kB/s | 151 kB 00:01 2024-04-07T20:31:11.955 INFO:teuthology.orchestra.run.smithi044.stdout:(31/36): python3-logutils-0.3.5-21.el9.noarch.r 106 kB/s | 46 kB 00:00 2024-04-07T20:31:12.064 INFO:teuthology.orchestra.run.smithi044.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 268 kB/s | 36 kB 00:00 2024-04-07T20:31:12.260 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:00:56 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:12.380 INFO:teuthology.orchestra.run.smithi044.stdout:(33/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 163 kB/s | 90 kB 00:00 2024-04-07T20:31:12.481 INFO:teuthology.orchestra.run.smithi044.stdout:(34/36): python3-zc-lockfile-2.0-10.el9.noarch. 200 kB/s | 20 kB 00:00 2024-04-07T20:31:12.550 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:12.550 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:12.550 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:12.550 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.551 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.552 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:12.553 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:12.554 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.555 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.556 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.557 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:12.558 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.559 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout: cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 762 k 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:12.619 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:12.620 INFO:teuthology.orchestra.run.smithi112.stdout:Install 1 Package 2024-04-07T20:31:12.620 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:12.620 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 762 k 2024-04-07T20:31:12.620 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 768 k 2024-04-07T20:31:12.620 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:12.647 INFO:teuthology.orchestra.run.smithi044.stdout:(35/36): python3-webob-1.8.7-6.el9.noarch.rpm 332 kB/s | 230 kB 00:00 2024-04-07T20:31:12.806 INFO:teuthology.orchestra.run.smithi044.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 576 kB/s | 427 kB 00:00 2024-04-07T20:31:12.810 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:12.810 INFO:teuthology.orchestra.run.smithi044.stdout:Total 7.1 MB/s | 30 MB 00:04 2024-04-07T20:31:12.918 INFO:teuthology.orchestra.run.smithi112.stdout:cephadm-19.0.0-2578.ge5c885fe.el9.noarch.rpm 2.5 MB/s | 762 kB 00:00 2024-04-07T20:31:12.918 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:12.919 INFO:teuthology.orchestra.run.smithi112.stdout:Total 2.5 MB/s | 762 kB 00:00 2024-04-07T20:31:12.919 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:12.924 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:12.924 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:12.929 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:12.930 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:12.949 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:31:12.991 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:31:12.991 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:31:13.003 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:13.410 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:31:13.410 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:31:13.479 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:31:13.567 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:31:13.937 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:31:13.954 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:31:13.971 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:31:14.246 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:31:14.246 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:14.246 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:14.246 INFO:teuthology.orchestra.run.smithi112.stdout: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:14.246 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:14.246 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:14.440 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-immutable-object-cache 2024-04-07T20:31:14.531 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T20:31:14.566 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T20:31:14.669 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T20:31:14.669 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-07T20:31:14.669 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-07T20:31:14.669 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:14.701 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:31:14.784 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:31:14.842 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-07T20:31:14.882 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-07T20:31:14.911 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-07T20:31:14.986 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-07T20:31:15.027 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-07T20:31:15.043 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:00:59 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:15.060 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-07T20:31:15.157 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-07T20:31:15.242 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-07T20:31:15.288 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-07T20:31:15.322 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:15.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.334 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.335 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:15.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:15.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.340 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:15.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:15.352 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-07T20:31:15.387 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-07T20:31:15.399 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:15.399 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repo Size 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 145 k 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout:Install 1 Package 2024-04-07T20:31:15.400 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:15.401 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 145 k 2024-04-07T20:31:15.401 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 435 k 2024-04-07T20:31:15.401 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:15.420 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-07T20:31:15.461 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-07T20:31:15.504 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-07T20:31:15.538 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-07T20:31:15.576 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-07T20:31:15.613 INFO:teuthology.orchestra.run.smithi112.stdout:ceph-immutable-object-cache-19.0.0-2578.ge5c885 682 kB/s | 145 kB 00:00 2024-04-07T20:31:15.614 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:15.614 INFO:teuthology.orchestra.run.smithi112.stdout:Total 678 kB/s | 145 kB 00:00 2024-04-07T20:31:15.614 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:15.622 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:15.622 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:15.653 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-07T20:31:15.674 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:15.675 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:15.795 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-07T20:31:15.817 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:15.879 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-07T20:31:15.881 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:31:15.905 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:31:15.905 INFO:teuthology.orchestra.run.smithi112.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:15.905 INFO:teuthology.orchestra.run.smithi112.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-07T20:31:15.905 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:15.939 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-07T20:31:15.976 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-07T20:31:16.035 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-07T20:31:16.099 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-07T20:31:16.291 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-07T20:31:16.338 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-07T20:31:16.420 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-07T20:31:16.509 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-07T20:31:16.545 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-07T20:31:16.666 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-07T20:31:16.834 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 31/36 2024-04-07T20:31:16.864 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T20:31:16.888 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T20:31:16.888 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:16.888 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-07T20:31:16.888 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T20:31:16.888 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T20:31:16.889 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:16.908 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:31:16.908 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:16.908 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:16.908 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:16.908 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:16.908 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:17.190 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-mgr 2024-04-07T20:31:17.792 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:01 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:18.082 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:18.082 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:18.082 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:18.082 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:18.083 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:18.084 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:18.085 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.086 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.087 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.088 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.089 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:18.090 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:18.091 INFO:teuthology.orchestra.run.smithi112.stdout:Package ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:31:18.149 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:18.151 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:31:18.151 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:18.229 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-mgr-dashboard 2024-04-07T20:31:18.406 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T20:31:18.432 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T20:31:18.432 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:18.432 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-07T20:31:18.432 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T20:31:18.432 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T20:31:18.432 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:18.812 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:02 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:18.907 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T20:31:18.930 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T20:31:18.930 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:18.930 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-07T20:31:18.930 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T20:31:18.930 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T20:31:18.930 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:19.102 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:19.102 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.103 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:19.104 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.105 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:19.106 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.107 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.108 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.109 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:19.110 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.111 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.111 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.111 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:19.165 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T20:31:19.172 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:19.174 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:19.174 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:31:19.174 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:19.174 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:19.174 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 3.5 M 2024-04-07T20:31:19.174 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:31:19.174 INFO:teuthology.orchestra.run.smithi112.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-07T20:31:19.174 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 34 k 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 16 k 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:19.175 INFO:teuthology.orchestra.run.smithi112.stdout:Install 12 Packages 2024-04-07T20:31:19.176 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:19.176 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 8.6 M 2024-04-07T20:31:19.176 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 104 M 2024-04-07T20:31:19.176 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:19.189 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T20:31:19.189 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:19.189 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-07T20:31:19.189 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T20:31:19.189 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T20:31:19.189 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:19.248 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T20:31:19.866 INFO:teuthology.orchestra.run.smithi112.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2578.ge5c 62 kB/s | 16 kB 00:00 2024-04-07T20:31:19.892 INFO:teuthology.orchestra.run.smithi112.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2578.ge5 117 kB/s | 34 kB 00:00 2024-04-07T20:31:20.050 INFO:teuthology.orchestra.run.smithi112.stdout:(3/12): ceph-mgr-dashboard-19.0.0-2578.ge5c885f 7.9 MB/s | 3.5 MB 00:00 2024-04-07T20:31:20.192 INFO:teuthology.orchestra.run.smithi112.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 897 kB/s | 269 kB 00:00 2024-04-07T20:31:20.243 INFO:teuthology.orchestra.run.smithi112.stdout:(5/12): protobuf-compiler-3.14.0-13.el9.x86_64. 4.4 MB/s | 863 kB 00:00 2024-04-07T20:31:20.351 INFO:teuthology.orchestra.run.smithi112.stdout:(6/12): protobuf-3.14.0-13.el9.x86_64.rpm 2.1 MB/s | 1.0 MB 00:00 2024-04-07T20:31:20.377 INFO:teuthology.orchestra.run.smithi112.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 145 kB/s | 19 kB 00:00 2024-04-07T20:31:20.527 INFO:teuthology.orchestra.run.smithi112.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 963 kB/s | 144 kB 00:00 2024-04-07T20:31:20.552 INFO:teuthology.orchestra.run.smithi112.stdout:(9/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.5 MB/s | 548 kB 00:00 2024-04-07T20:31:20.586 INFO:teuthology.orchestra.run.smithi112.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 526 kB/s | 31 kB 00:00 2024-04-07T20:31:20.611 INFO:teuthology.orchestra.run.smithi112.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 3.2 MB/s | 188 kB 00:00 2024-04-07T20:31:20.719 INFO:teuthology.orchestra.run.smithi112.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 5.5 MB/s | 2.0 MB 00:00 2024-04-07T20:31:20.721 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:20.721 INFO:teuthology.orchestra.run.smithi112.stdout:Total 5.6 MB/s | 8.6 MB 00:01 2024-04-07T20:31:20.768 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:20.785 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:20.785 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 6/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-07T20:31:20.972 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-07T20:31:20.973 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-07T20:31:20.974 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-07T20:31:20.974 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-07T20:31:20.974 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-07T20:31:20.974 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-07T20:31:20.975 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-07T20:31:20.975 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-07T20:31:20.975 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-07T20:31:20.975 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-07T20:31:20.975 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-07T20:31:20.975 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-07T20:31:20.975 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-07T20:31:20.975 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-07T20:31:20.976 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:20.976 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:21.497 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:21.587 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-07T20:31:21.622 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-07T20:31:21.668 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-07T20:31:21.699 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-07T20:31:21.801 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-07T20:31:21.924 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-07T20:31:22.018 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-07T20:31:22.061 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-07T20:31:22.090 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: lua-5.4.4-4.el9.x86_64 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-07T20:31:22.093 INFO:teuthology.orchestra.run.smithi044.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-07T20:31:22.094 INFO:teuthology.orchestra.run.smithi044.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-ply-3.11-14.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-07T20:31:22.095 INFO:teuthology.orchestra.run.smithi044.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-07T20:31:22.096 INFO:teuthology.orchestra.run.smithi044.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-07T20:31:22.096 INFO:teuthology.orchestra.run.smithi044.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-07T20:31:22.096 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:22.096 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:22.122 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 10/12 2024-04-07T20:31:22.471 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-base 2024-04-07T20:31:23.169 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 11/12 2024-04-07T20:31:23.206 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T20:31:23.302 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:09 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:31:23.608 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.609 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:31:23.610 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.611 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:31:23.612 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.613 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.614 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:23.615 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.615 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.615 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.615 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.615 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:31:23.615 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.615 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.615 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.617 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.617 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.617 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.617 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.618 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.619 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.620 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.620 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.620 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:23.620 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.620 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.620 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.620 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:23.620 INFO:teuthology.orchestra.run.smithi044.stdout:Package ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:31:23.679 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:31:23.680 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:31:23.680 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:23.762 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install cephadm 2024-04-07T20:31:24.230 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:31:24.231 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /sys 2024-04-07T20:31:24.231 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /proc 2024-04-07T20:31:24.231 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /mnt 2024-04-07T20:31:24.231 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /var/tmp 2024-04-07T20:31:24.231 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /home 2024-04-07T20:31:24.231 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /root 2024-04-07T20:31:24.231 INFO:teuthology.orchestra.run.smithi191.stdout:skipping the directory /tmp 2024-04-07T20:31:24.231 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:24.365 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:10 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 1/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 2/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 3/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-07T20:31:24.629 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-07T20:31:24.630 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-07T20:31:24.630 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-07T20:31:24.667 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:31:24.667 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:31:24.667 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:31:24.668 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.669 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:31:24.670 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.671 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:31:24.672 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.673 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:24.674 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.675 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.676 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.677 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:24.739 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout: cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 762 k 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:24.740 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-04-07T20:31:24.741 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:24.741 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 762 k 2024-04-07T20:31:24.741 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 768 k 2024-04-07T20:31:24.741 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:31:25.006 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-07T20:31:25.006 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-07T20:31:25.007 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:25.008 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:25.176 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T20:31:25.181 INFO:teuthology.orchestra.run.smithi044.stdout:cephadm-19.0.0-2578.ge5c885fe.el9.noarch.rpm 1.7 MB/s | 762 kB 00:00 2024-04-07T20:31:25.182 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:25.182 INFO:teuthology.orchestra.run.smithi044.stdout:Total 1.7 MB/s | 762 kB 00:00 2024-04-07T20:31:25.182 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:31:25.188 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:31:25.188 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:31:25.194 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:31:25.194 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:31:25.200 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T20:31:25.200 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:25.200 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-07T20:31:25.200 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T20:31:25.200 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T20:31:25.200 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:25.202 INFO:teuthology.orchestra.run.smithi191.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T20:31:25.262 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-07T20:31:25.270 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T20:31:25.270 INFO:teuthology.orchestra.run.smithi191.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:31:25.272 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:31:25.637 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:31:25.721 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:31:25.872 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:09 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:26.105 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:31:26.160 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:26.160 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:26.160 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:26.160 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:26.161 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:26.162 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:26.163 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.164 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:26.165 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.166 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:26.167 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:26.168 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.169 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.169 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.169 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:26.229 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:26.230 INFO:teuthology.orchestra.run.smithi112.stdout:======================================================================================= 2024-04-07T20:31:26.230 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:31:26.230 INFO:teuthology.orchestra.run.smithi112.stdout:======================================================================================= 2024-04-07T20:31:26.230 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:26.230 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 7.4 M 2024-04-07T20:31:26.230 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:31:26.230 INFO:teuthology.orchestra.run.smithi112.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout:======================================================================================= 2024-04-07T20:31:26.231 INFO:teuthology.orchestra.run.smithi112.stdout:Install 12 Packages 2024-04-07T20:31:26.232 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:26.232 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 38 M 2024-04-07T20:31:26.232 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 209 M 2024-04-07T20:31:26.232 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:26.392 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:31:26.393 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:26.393 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:31:26.393 INFO:teuthology.orchestra.run.smithi044.stdout: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:26.393 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:26.393 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:26.411 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:31:26.411 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 6/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 8/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 9/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 10/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 11/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 13/34 2024-04-07T20:31:26.412 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-07T20:31:26.413 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-07T20:31:26.414 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-07T20:31:26.414 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-07T20:31:26.414 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T20:31:26.414 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-07T20:31:26.414 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/34 2024-04-07T20:31:26.610 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-immutable-object-cache 2024-04-07T20:31:26.719 INFO:teuthology.orchestra.run.smithi112.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 2.3 MB/s | 195 kB 00:00 2024-04-07T20:31:26.844 INFO:teuthology.orchestra.run.smithi112.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 327 kB/s | 33 kB 00:00 2024-04-07T20:31:26.987 INFO:teuthology.orchestra.run.smithi112.stdout:(3/12): libgfortran-11.4.1-3.el9.x86_64.rpm 2.2 MB/s | 803 kB 00:00 2024-04-07T20:31:27.061 INFO:teuthology.orchestra.run.smithi112.stdout:(4/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 14 MB/s | 3.0 MB 00:00 2024-04-07T20:31:27.078 INFO:teuthology.orchestra.run.smithi112.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 198 kB/s | 18 kB 00:00 2024-04-07T20:31:27.112 INFO:teuthology.orchestra.run.smithi112.stdout:(6/12): openblas-0.3.21-2.el9.x86_64.rpm 701 kB/s | 35 kB 00:00 2024-04-07T20:31:27.162 INFO:teuthology.orchestra.run.smithi112.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 4.8 MB/s | 245 kB 00:00 2024-04-07T20:31:27.214 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:13 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:31:27.363 INFO:teuthology.orchestra.run.smithi112.stdout:(8/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 26 MB/s | 5.1 MB 00:00 2024-04-07T20:31:27.413 INFO:teuthology.orchestra.run.smithi112.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 4.9 MB/s | 250 kB 00:00 2024-04-07T20:31:27.492 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T20:31:27.492 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:27.492 INFO:teuthology.orchestra.run.smithi191.stdout:Upgraded: 2024-04-07T20:31:27.492 INFO:teuthology.orchestra.run.smithi191.stdout: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.492 INFO:teuthology.orchestra.run.smithi191.stdout: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.492 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:31:27.492 INFO:teuthology.orchestra.run.smithi191.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.493 INFO:teuthology.orchestra.run.smithi191.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-07T20:31:27.494 INFO:teuthology.orchestra.run.smithi191.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-07T20:31:27.495 INFO:teuthology.orchestra.run.smithi191.stdout: re2-1:20211101-3.el9.x86_64 2024-04-07T20:31:27.495 INFO:teuthology.orchestra.run.smithi191.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-07T20:31:27.495 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:27.495 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:31:27.496 INFO:teuthology.orchestra.run.smithi112.stdout:(10/12): openblas-openmp-0.3.21-2.el9.x86_64.rp 11 MB/s | 4.7 MB 00:00 2024-04-07T20:31:27.529 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:31:27.530 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.531 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:31:27.532 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.533 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:31:27.534 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.535 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:27.601 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repo Size 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 145 k 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:27.602 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 145 k 2024-04-07T20:31:27.603 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 435 k 2024-04-07T20:31:27.603 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:31:27.747 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-test 2024-04-07T20:31:27.846 INFO:teuthology.orchestra.run.smithi044.stdout:ceph-immutable-object-cache-19.0.0-2578.ge5c885 597 kB/s | 145 kB 00:00 2024-04-07T20:31:27.846 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:27.847 INFO:teuthology.orchestra.run.smithi044.stdout:Total 594 kB/s | 145 kB 00:00 2024-04-07T20:31:27.847 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:31:27.854 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:31:27.854 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:31:27.910 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:31:27.910 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:31:28.173 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:31:28.230 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:31:28.254 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:31:28.254 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:28.254 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-07T20:31:28.254 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:28.289 INFO:teuthology.orchestra.run.smithi112.stdout:(11/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 19 MB/s | 16 MB 00:00 2024-04-07T20:31:28.337 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:31 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:31:28.625 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.626 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:31:28.627 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:31:28.628 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:31:28.629 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:31:28.630 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.631 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.632 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.633 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.634 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.635 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.635 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:28.635 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.635 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.635 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.635 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:28.694 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:31:28.695 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-test x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 48 M 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout: libcephsqlite x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 163 k 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:28.696 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:31:28.697 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:28.697 INFO:teuthology.orchestra.run.smithi191.stdout:Install 6 Packages 2024-04-07T20:31:28.697 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:28.697 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 49 M 2024-04-07T20:31:28.697 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 206 M 2024-04-07T20:31:28.697 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:31:29.202 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:31:29.202 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:29.203 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:31:29.203 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:29.203 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:29.203 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:29.448 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr 2024-04-07T20:31:30.058 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:16 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:31:30.215 INFO:teuthology.orchestra.run.smithi191.stdout:(1/6): jq-1.6-16.el9.x86_64.rpm 1.2 MB/s | 187 kB 00:00 2024-04-07T20:31:30.284 INFO:teuthology.orchestra.run.smithi191.stdout:(2/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 3.1 MB/s | 218 kB 00:00 2024-04-07T20:31:30.332 INFO:teuthology.orchestra.run.smithi191.stdout:(3/6): socat-1.7.4.1-5.el9.x86_64.rpm 6.3 MB/s | 305 kB 00:00 2024-04-07T20:31:30.359 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:31:30.359 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:31:30.359 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:31:30.359 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.359 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:31:30.359 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.359 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:31:30.359 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.360 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:31:30.361 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.362 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.363 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:31:30.364 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.365 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:31:30.365 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.366 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:30.367 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.368 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:30.369 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.370 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.370 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.370 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:30.370 INFO:teuthology.orchestra.run.smithi044.stdout:Package ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:31:30.374 INFO:teuthology.orchestra.run.smithi191.stdout:(4/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.5 MB/s | 64 kB 00:00 2024-04-07T20:31:30.430 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:31:30.431 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:31:30.431 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:30.515 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr-dashboard 2024-04-07T20:31:30.574 INFO:teuthology.orchestra.run.smithi191.stdout:(5/6): libcephsqlite-19.0.0-2578.ge5c885fe.el9. 316 kB/s | 163 kB 00:00 2024-04-07T20:31:31.131 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:17 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:31:31.355 INFO:teuthology.orchestra.run.smithi112.stdout:(12/12): ceph-mgr-diskprediction-local-19.0.0-2 1.6 MB/s | 7.4 MB 00:04 2024-04-07T20:31:31.356 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:31.357 INFO:teuthology.orchestra.run.smithi112.stdout:Total 7.4 MB/s | 38 MB 00:05 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.434 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:31:31.435 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.436 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:31:31.437 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:31:31.438 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:31:31.439 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.440 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.441 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.441 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.441 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.441 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:31.441 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.441 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.441 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.441 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.442 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.443 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:31.506 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:31:31.507 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:31.507 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:31:31.507 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:31.507 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:31:31.507 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 3.5 M 2024-04-07T20:31:31.507 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 34 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 16 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:31:31.508 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:31.509 INFO:teuthology.orchestra.run.smithi044.stdout:Install 12 Packages 2024-04-07T20:31:31.509 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:31.509 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 8.6 M 2024-04-07T20:31:31.509 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 104 M 2024-04-07T20:31:31.509 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:31:31.712 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:31.739 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:31.740 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:32.171 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:32.171 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:32.358 INFO:teuthology.orchestra.run.smithi044.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2578.ge5c 44 kB/s | 16 kB 00:00 2024-04-07T20:31:32.434 INFO:teuthology.orchestra.run.smithi044.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2578.ge5 76 kB/s | 34 kB 00:00 2024-04-07T20:31:32.634 INFO:teuthology.orchestra.run.smithi044.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.3 MB/s | 269 kB 00:00 2024-04-07T20:31:32.692 INFO:teuthology.orchestra.run.smithi044.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 3.0 MB/s | 1.0 MB 00:00 2024-04-07T20:31:32.851 INFO:teuthology.orchestra.run.smithi044.stdout:(5/12): protobuf-compiler-3.14.0-13.el9.x86_64. 3.9 MB/s | 863 kB 00:00 2024-04-07T20:31:32.933 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:33.005 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-07T20:31:33.044 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-07T20:31:33.143 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-07T20:31:33.179 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-07T20:31:33.243 INFO:teuthology.orchestra.run.smithi044.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 50 kB/s | 19 kB 00:00 2024-04-07T20:31:33.347 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-07T20:31:33.369 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-07T20:31:33.445 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-07T20:31:33.552 INFO:teuthology.orchestra.run.smithi044.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 638 kB/s | 548 kB 00:00 2024-04-07T20:31:34.094 INFO:teuthology.orchestra.run.smithi044.stdout:(8/12): ceph-mgr-dashboard-19.0.0-2578.ge5c885f 1.7 MB/s | 3.5 MB 00:02 2024-04-07T20:31:34.097 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-07T20:31:34.178 INFO:teuthology.orchestra.run.smithi044.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 231 kB/s | 144 kB 00:00 2024-04-07T20:31:34.215 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-07T20:31:34.552 INFO:teuthology.orchestra.run.smithi044.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 67 kB/s | 31 kB 00:00 2024-04-07T20:31:34.828 INFO:teuthology.orchestra.run.smithi044.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 303 kB/s | 188 kB 00:00 2024-04-07T20:31:35.472 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T20:31:36.086 INFO:teuthology.orchestra.run.smithi044.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 734 kB/s | 2.0 MB 00:02 2024-04-07T20:31:36.089 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:36.090 INFO:teuthology.orchestra.run.smithi044.stdout:Total 1.9 MB/s | 8.6 MB 00:04 2024-04-07T20:31:36.140 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:31:36.162 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:31:36.162 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:31:36.361 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:31:36.362 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:31:36.501 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-07T20:31:36.526 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T20:31:37.034 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:31:37.112 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-07T20:31:37.156 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-07T20:31:37.203 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-07T20:31:37.232 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-07T20:31:37.334 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-07T20:31:37.464 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-07T20:31:37.580 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-07T20:31:37.629 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-07T20:31:37.666 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-07T20:31:37.698 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 10/12 2024-04-07T20:31:37.724 INFO:teuthology.orchestra.run.smithi191.stdout:(6/6): ceph-test-19.0.0-2578.ge5c885fe.el9.x86_ 6.2 MB/s | 48 MB 00:07 2024-04-07T20:31:37.726 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:37.726 INFO:teuthology.orchestra.run.smithi191.stdout:Total 5.4 MB/s | 49 MB 00:09 2024-04-07T20:31:37.777 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:31:37.797 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:31:37.797 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:31:38.178 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:31:38.179 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:31:38.778 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:31:38.800 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 11/12 2024-04-07T20:31:38.831 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T20:31:38.866 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-07T20:31:38.918 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-07T20:31:38.958 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-07T20:31:38.982 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T20:31:38.982 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 1/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T20:31:38.983 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-07T20:31:38.998 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-07T20:31:39.019 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T20:31:39.468 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-07T20:31:39.468 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:39.468 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:39.468 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:39.468 INFO:teuthology.orchestra.run.smithi112.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-07T20:31:39.468 INFO:teuthology.orchestra.run.smithi112.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-07T20:31:39.468 INFO:teuthology.orchestra.run.smithi112.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-07T20:31:39.468 INFO:teuthology.orchestra.run.smithi112.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:39.469 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:39.850 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-mgr-rook 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 1/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 2/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 3/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-07T20:31:40.157 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-07T20:31:40.158 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-07T20:31:40.158 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-07T20:31:40.443 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:24 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-07T20:31:40.527 INFO:teuthology.orchestra.run.smithi044.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-07T20:31:40.528 INFO:teuthology.orchestra.run.smithi044.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-07T20:31:40.528 INFO:teuthology.orchestra.run.smithi044.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-07T20:31:40.528 INFO:teuthology.orchestra.run.smithi044.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-07T20:31:40.528 INFO:teuthology.orchestra.run.smithi044.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-07T20:31:40.528 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:40.528 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:40.728 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:40.728 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:40.728 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:40.728 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.728 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:40.728 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:40.729 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.730 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.731 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.732 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.733 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.734 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.735 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:40.736 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.737 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.737 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.737 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.737 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:40.737 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.737 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.737 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.737 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:40.796 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:40.797 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:40.797 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-rook noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 49 k 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-07T20:31:40.798 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout:Install 13 Packages 2024-04-07T20:31:40.799 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:40.800 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 2.2 M 2024-04-07T20:31:40.800 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 26 M 2024-04-07T20:31:40.800 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:40.809 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-07T20:31:41.017 INFO:teuthology.orchestra.run.smithi112.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 160 kB/s | 19 kB 00:00 2024-04-07T20:31:41.034 INFO:teuthology.orchestra.run.smithi112.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 187 kB/s | 26 kB 00:00 2024-04-07T20:31:41.093 INFO:teuthology.orchestra.run.smithi112.stdout:(3/13): ceph-mgr-rook-19.0.0-2578.ge5c885fe.el9 252 kB/s | 49 kB 00:00 2024-04-07T20:31:41.118 INFO:teuthology.orchestra.run.smithi112.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.2 MB/s | 222 kB 00:00 2024-04-07T20:31:41.143 INFO:teuthology.orchestra.run.smithi112.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-04-07T20:31:41.168 INFO:teuthology.orchestra.run.smithi112.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-04-07T20:31:41.252 INFO:teuthology.orchestra.run.smithi112.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.7 MB/s | 279 kB 00:00 2024-04-07T20:31:41.277 INFO:teuthology.orchestra.run.smithi112.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 137 kB/s | 15 kB 00:00 2024-04-07T20:31:41.294 INFO:teuthology.orchestra.run.smithi112.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 213 kB/s | 32 kB 00:00 2024-04-07T20:31:41.403 INFO:teuthology.orchestra.run.smithi112.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 546 kB/s | 59 kB 00:00 2024-04-07T20:31:41.412 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:27 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:31:41.487 INFO:teuthology.orchestra.run.smithi112.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 1.0 MB/s | 90 kB 00:00 2024-04-07T20:31:41.503 INFO:teuthology.orchestra.run.smithi112.stdout:(12/13): python3-google-auth-2.28.2-1.el9.noarc 808 kB/s | 203 kB 00:00 2024-04-07T20:31:41.537 INFO:teuthology.orchestra.run.smithi112.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 3.9 MB/s | 1.0 MB 00:00 2024-04-07T20:31:41.537 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:41.537 INFO:teuthology.orchestra.run.smithi112.stdout:Total 3.0 MB/s | 2.2 MB 00:00 2024-04-07T20:31:41.598 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:41.614 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:41.614 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:41.708 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:41.708 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:41.714 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:31:41.714 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:31:41.714 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:31:41.714 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.714 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:31:41.714 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.715 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:31:41.716 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.717 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.718 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.719 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.720 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.721 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.722 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.723 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:41.723 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.723 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.723 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.723 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:41.790 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:31:41.791 INFO:teuthology.orchestra.run.smithi044.stdout:======================================================================================= 2024-04-07T20:31:41.791 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:31:41.791 INFO:teuthology.orchestra.run.smithi044.stdout:======================================================================================= 2024-04-07T20:31:41.791 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:31:41.791 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 7.4 M 2024-04-07T20:31:41.791 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:31:41.791 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout:======================================================================================= 2024-04-07T20:31:41.792 INFO:teuthology.orchestra.run.smithi044.stdout:Install 12 Packages 2024-04-07T20:31:41.793 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:41.793 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 38 M 2024-04-07T20:31:41.793 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 209 M 2024-04-07T20:31:41.793 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:31:42.222 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:42.327 INFO:teuthology.orchestra.run.smithi044.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 1.4 MB/s | 195 kB 00:00 2024-04-07T20:31:42.386 INFO:teuthology.orchestra.run.smithi044.stdout:(2/12): libgfortran-11.4.1-3.el9.x86_64.rpm 4.1 MB/s | 803 kB 00:00 2024-04-07T20:31:42.393 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-07T20:31:42.446 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-07T20:31:42.502 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-07T20:31:42.536 INFO:teuthology.orchestra.run.smithi044.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 157 kB/s | 33 kB 00:00 2024-04-07T20:31:42.539 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-07T20:31:42.580 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-07T20:31:42.594 INFO:teuthology.orchestra.run.smithi044.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 312 kB/s | 18 kB 00:00 2024-04-07T20:31:42.662 INFO:teuthology.orchestra.run.smithi044.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 528 kB/s | 35 kB 00:00 2024-04-07T20:31:42.674 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-07T20:31:42.728 INFO:teuthology.orchestra.run.smithi044.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 8.7 MB/s | 3.0 MB 00:00 2024-04-07T20:31:42.774 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-07T20:31:42.795 INFO:teuthology.orchestra.run.smithi044.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 3.6 MB/s | 245 kB 00:00 2024-04-07T20:31:42.823 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-07T20:31:43.204 INFO:teuthology.orchestra.run.smithi044.stdout:(8/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 12 MB/s | 5.1 MB 00:00 2024-04-07T20:31:43.280 INFO:teuthology.orchestra.run.smithi044.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 3.3 MB/s | 250 kB 00:00 2024-04-07T20:31:43.354 INFO:teuthology.orchestra.run.smithi044.stdout:(10/12): openblas-openmp-0.3.21-2.el9.x86_64.rp 6.8 MB/s | 4.7 MB 00:00 2024-04-07T20:31:43.455 INFO:teuthology.orchestra.run.smithi044.stdout:(11/12): ceph-mgr-diskprediction-local-19.0.0-2 5.9 MB/s | 7.4 MB 00:01 2024-04-07T20:31:43.516 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T20:31:43.538 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-07T20:31:43.600 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T20:31:43.612 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-07T20:31:43.645 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-07T20:31:43.685 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-07T20:31:43.707 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T20:31:44.330 INFO:teuthology.orchestra.run.smithi044.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 15 MB/s | 16 MB 00:01 2024-04-07T20:31:44.332 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:44.333 INFO:teuthology.orchestra.run.smithi044.stdout:Total 15 MB/s | 38 MB 00:02 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 1/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-07T20:31:44.415 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-07T20:31:44.416 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-07T20:31:44.416 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-07T20:31:44.416 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-07T20:31:44.688 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:31:44.716 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:31:44.716 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:31:44.805 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-07T20:31:44.805 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:44.805 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:44.805 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:44.805 INFO:teuthology.orchestra.run.smithi112.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:44.806 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:45.067 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-mgr-cephadm 2024-04-07T20:31:45.178 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:31:45.178 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:31:45.663 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:29 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:45.955 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.956 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:45.957 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.958 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:45.959 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.960 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:45.961 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:45.962 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:45.963 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:31:46.025 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:46.026 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 141 k 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:46.027 INFO:teuthology.orchestra.run.smithi112.stdout:Install 6 Packages 2024-04-07T20:31:46.028 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:46.028 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 7.0 M 2024-04-07T20:31:46.028 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 33 M 2024-04-07T20:31:46.028 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:46.033 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-07T20:31:46.070 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-07T20:31:46.175 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T20:31:46.175 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/6 2024-04-07T20:31:46.175 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/6 2024-04-07T20:31:46.175 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-07T20:31:46.175 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-07T20:31:46.175 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-07T20:31:46.176 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-07T20:31:46.213 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-07T20:31:46.354 INFO:teuthology.orchestra.run.smithi112.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.2 MB/s | 248 kB 00:00 2024-04-07T20:31:46.398 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-07T20:31:46.428 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-07T20:31:46.515 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-07T20:31:46.546 INFO:teuthology.orchestra.run.smithi112.stdout:(2/6): python3-babel-2.9.1-2.el9.noarch.rpm 15 MB/s | 6.0 MB 00:00 2024-04-07T20:31:46.551 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-07T20:31:46.551 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:46.551 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:31:46.551 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:46.551 INFO:teuthology.orchestra.run.smithi191.stdout: jq-1.6-16.el9.x86_64 2024-04-07T20:31:46.551 INFO:teuthology.orchestra.run.smithi191.stdout: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:46.551 INFO:teuthology.orchestra.run.smithi191.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-07T20:31:46.552 INFO:teuthology.orchestra.run.smithi191.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-07T20:31:46.552 INFO:teuthology.orchestra.run.smithi191.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-07T20:31:46.552 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:46.552 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:31:46.680 INFO:teuthology.orchestra.run.smithi112.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.6 MB/s | 548 kB 00:00 2024-04-07T20:31:46.705 INFO:teuthology.orchestra.run.smithi112.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 364 kB/s | 58 kB 00:00 2024-04-07T20:31:46.730 INFO:teuthology.orchestra.run.smithi112.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 1.0 MB/s | 51 kB 00:00 2024-04-07T20:31:46.755 INFO:teuthology.orchestra.run.smithi112.stdout:(6/6): ceph-mgr-cephadm-19.0.0-2578.ge5c885fe.e 234 kB/s | 141 kB 00:00 2024-04-07T20:31:46.757 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:46.757 INFO:teuthology.orchestra.run.smithi112.stdout:Total 9.6 MB/s | 7.0 MB 00:00 2024-04-07T20:31:46.828 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:46.840 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:46.840 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:46.889 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph 2024-04-07T20:31:46.942 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:46.942 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:47.200 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-07T20:31:47.255 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:47.319 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-07T20:31:47.428 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-07T20:31:47.482 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-07T20:31:47.500 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:00:50 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:31:47.790 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:31:47.790 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:31:47.790 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:31:47.790 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.790 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:31:47.790 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.790 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:31:47.790 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:31:47.791 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:31:47.792 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.793 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.794 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:31:47.795 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.796 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.797 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:47.798 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.799 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.799 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.799 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:47.869 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout: ceph x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 6.6 k 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mds x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 2.4 M 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 1.5 M 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 249 k 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mon x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 4.7 M 2024-04-07T20:31:47.872 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-osd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 17 M 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-collections 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-07T20:31:47.873 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-07T20:31:47.874 INFO:teuthology.orchestra.run.smithi191.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout:Install 36 Packages 2024-04-07T20:31:47.875 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:47.876 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 30 M 2024-04-07T20:31:47.876 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 108 M 2024-04-07T20:31:47.876 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:31:47.996 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-07T20:31:48.076 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-07T20:31:48.138 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-07T20:31:48.169 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T20:31:48.625 INFO:teuthology.orchestra.run.smithi191.stdout:(1/36): ceph-19.0.0-2578.ge5c885fe.el9.x86_64.r 35 kB/s | 6.6 kB 00:00 2024-04-07T20:31:48.632 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T20:31:48.817 INFO:teuthology.orchestra.run.smithi191.stdout:(2/36): ceph-mgr-19.0.0-2578.ge5c885fe.el9.x86_ 3.9 MB/s | 1.5 MB 00:00 2024-04-07T20:31:48.892 INFO:teuthology.orchestra.run.smithi191.stdout:(3/36): ceph-mds-19.0.0-2578.ge5c885fe.el9.x86_ 5.2 MB/s | 2.4 MB 00:00 2024-04-07T20:31:48.931 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T20:31:48.931 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/6 2024-04-07T20:31:48.931 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-07T20:31:48.931 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-07T20:31:48.931 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-07T20:31:48.931 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-07T20:31:48.959 INFO:teuthology.orchestra.run.smithi191.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2578.ge5c8 3.6 MB/s | 249 kB 00:00 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-07T20:31:49.254 INFO:teuthology.orchestra.run.smithi112.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-07T20:31:49.255 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:49.255 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:49.468 INFO:teuthology.orchestra.run.smithi191.stdout:(5/36): ceph-mon-19.0.0-2578.ge5c885fe.el9.x86_ 5.6 MB/s | 4.7 MB 00:00 2024-04-07T20:31:49.502 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-fuse 2024-04-07T20:31:49.593 INFO:teuthology.orchestra.run.smithi191.stdout:(6/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 400 kB/s | 253 kB 00:00 2024-04-07T20:31:49.713 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-07T20:31:49.744 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T20:31:49.760 INFO:teuthology.orchestra.run.smithi191.stdout:(7/36): ceph-osd-19.0.0-2578.ge5c885fe.el9.x86_ 18 MB/s | 17 MB 00:00 2024-04-07T20:31:49.785 INFO:teuthology.orchestra.run.smithi191.stdout:(8/36): python3-ply-3.11-14.el9.noarch.rpm 555 kB/s | 106 kB 00:00 2024-04-07T20:31:49.894 INFO:teuthology.orchestra.run.smithi191.stdout:(9/36): python3-requests-2.25.1-8.el9.noarch.rp 1.1 MB/s | 125 kB 00:00 2024-04-07T20:31:50.002 INFO:teuthology.orchestra.run.smithi191.stdout:(10/36): python3-urllib3-1.26.5-5.el9.noarch.rp 1.9 MB/s | 215 kB 00:00 2024-04-07T20:31:50.098 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:34 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:50.102 INFO:teuthology.orchestra.run.smithi191.stdout:(11/36): lua-5.4.4-4.el9.x86_64.rpm 1.8 MB/s | 188 kB 00:00 2024-04-07T20:31:50.211 INFO:teuthology.orchestra.run.smithi191.stdout:(12/36): python3-mako-1.1.4-6.el9.noarch.rpm 1.6 MB/s | 172 kB 00:00 2024-04-07T20:31:50.236 INFO:teuthology.orchestra.run.smithi191.stdout:(13/36): python3-pycparser-2.20-6.el9.noarch.rp 284 kB/s | 135 kB 00:00 2024-04-07T20:31:50.320 INFO:teuthology.orchestra.run.smithi191.stdout:(14/36): python3-markupsafe-1.1.1-12.el9.x86_64 320 kB/s | 35 kB 00:00 2024-04-07T20:31:50.345 INFO:teuthology.orchestra.run.smithi191.stdout:(15/36): python3-pytz-2021.1-5.el9.noarch.rpm 470 kB/s | 51 kB 00:00 2024-04-07T20:31:50.392 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:50.392 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:50.392 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:50.392 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.392 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.393 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.394 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.395 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:50.396 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.397 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.398 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.399 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.400 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.401 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:50.412 INFO:teuthology.orchestra.run.smithi191.stdout:(16/36): python3-cryptography-36.0.1-4.el9.x86_ 1.3 MB/s | 1.2 MB 00:00 2024-04-07T20:31:50.446 INFO:teuthology.orchestra.run.smithi191.stdout:(17/36): python3-toml-0.10.2-6.el9.noarch.rpm 332 kB/s | 42 kB 00:00 2024-04-07T20:31:50.462 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 890 k 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout:Install 2 Packages 2024-04-07T20:31:50.463 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:50.464 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 971 k 2024-04-07T20:31:50.464 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 2.8 M 2024-04-07T20:31:50.464 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:50.521 INFO:teuthology.orchestra.run.smithi191.stdout:(18/36): lua-devel-5.4.4-4.el9.x86_64.rpm 127 kB/s | 22 kB 00:00 2024-04-07T20:31:50.688 INFO:teuthology.orchestra.run.smithi191.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 179 kB/s | 43 kB 00:00 2024-04-07T20:31:50.780 INFO:teuthology.orchestra.run.smithi191.stdout:(20/36): luarocks-3.9.2-1.el9.noarch.rpm 411 kB/s | 151 kB 00:00 2024-04-07T20:31:50.872 INFO:teuthology.orchestra.run.smithi191.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 117 kB/s | 11 kB 00:00 2024-04-07T20:31:50.914 INFO:teuthology.orchestra.run.smithi191.stdout:(22/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 438 kB/s | 172 kB 00:00 2024-04-07T20:31:50.981 INFO:teuthology.orchestra.run.smithi191.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 162 kB/s | 18 kB 00:00 2024-04-07T20:31:51.006 INFO:teuthology.orchestra.run.smithi191.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 252 kB/s | 23 kB 00:00 2024-04-07T20:31:51.042 INFO:teuthology.orchestra.run.smithi191.stdout:(25/36): python3-cherrypy-18.6.1-2.el9.noarch.r 1.0 MB/s | 358 kB 00:00 2024-04-07T20:31:51.065 INFO:teuthology.orchestra.run.smithi191.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 233 kB/s | 19 kB 00:00 2024-04-07T20:31:51.091 INFO:teuthology.orchestra.run.smithi191.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 234 kB/s | 20 kB 00:00 2024-04-07T20:31:51.116 INFO:teuthology.orchestra.run.smithi191.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 615 kB/s | 46 kB 00:00 2024-04-07T20:31:51.149 INFO:teuthology.orchestra.run.smithi191.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 941 kB/s | 79 kB 00:00 2024-04-07T20:31:51.175 INFO:teuthology.orchestra.run.smithi191.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 281 kB/s | 16 kB 00:00 2024-04-07T20:31:51.215 INFO:teuthology.orchestra.run.smithi112.stdout:(1/2): ceph-fuse-19.0.0-2578.ge5c885fe.el9.x86_ 1.4 MB/s | 890 kB 00:00 2024-04-07T20:31:51.250 INFO:teuthology.orchestra.run.smithi191.stdout:(31/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 897 kB/s | 90 kB 00:00 2024-04-07T20:31:51.275 INFO:teuthology.orchestra.run.smithi191.stdout:(32/36): python3-pecan-1.4.2-3.el9.noarch.rpm 1.4 MB/s | 272 kB 00:00 2024-04-07T20:31:51.300 INFO:teuthology.orchestra.run.smithi191.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 285 kB/s | 36 kB 00:00 2024-04-07T20:31:51.384 INFO:teuthology.orchestra.run.smithi191.stdout:(34/36): python3-zc-lockfile-2.0-10.el9.noarch. 240 kB/s | 20 kB 00:00 2024-04-07T20:31:51.409 INFO:teuthology.orchestra.run.smithi191.stdout:(35/36): python3-webob-1.8.7-6.el9.noarch.rpm 1.4 MB/s | 230 kB 00:00 2024-04-07T20:31:51.434 INFO:teuthology.orchestra.run.smithi191.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 2.6 MB/s | 427 kB 00:00 2024-04-07T20:31:51.436 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:51.436 INFO:teuthology.orchestra.run.smithi191.stdout:Total 8.5 MB/s | 30 MB 00:03 2024-04-07T20:31:51.473 INFO:teuthology.orchestra.run.smithi112.stdout:(2/2): fuse-2.9.9-15.el9.x86_64.rpm 90 kB/s | 80 kB 00:00 2024-04-07T20:31:51.474 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:51.474 INFO:teuthology.orchestra.run.smithi112.stdout:Total 960 kB/s | 971 kB 00:01 2024-04-07T20:31:51.485 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:51.508 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:51.508 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:51.577 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:31:51.586 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:51.587 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:51.616 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:31:51.616 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:31:51.776 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:51.908 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-07T20:31:51.973 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T20:31:52.044 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:31:52.044 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 1/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T20:31:52.422 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-07T20:31:52.732 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T20:31:52.732 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/2 2024-04-07T20:31:52.908 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-07T20:31:52.908 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:52.908 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:31:52.908 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:52.909 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:53.105 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-07T20:31:53.105 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:53.105 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:53.105 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-07T20:31:53.105 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:53.105 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:53.273 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr-rook 2024-04-07T20:31:53.383 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:31:53.422 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install ceph-volume 2024-04-07T20:31:53.445 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-07T20:31:53.483 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-07T20:31:53.514 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-07T20:31:53.586 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-07T20:31:53.629 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-07T20:31:53.662 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-07T20:31:53.762 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-07T20:31:53.849 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-07T20:31:53.883 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:39 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:31:53.890 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-07T20:31:53.925 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-07T20:31:53.955 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-07T20:31:53.989 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-07T20:31:54.023 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-07T20:31:54.041 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:38 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:54.063 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-07T20:31:54.098 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-07T20:31:54.133 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-07T20:31:54.170 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-07T20:31:54.185 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:31:54.185 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:31:54.185 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:31:54.186 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:31:54.187 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:31:54.188 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:31:54.189 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.190 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:54.191 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.192 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:54.193 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.194 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.243 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-07T20:31:54.258 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-rook noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 49 k 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-07T20:31:54.260 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout:Install 13 Packages 2024-04-07T20:31:54.261 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:54.262 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 2.2 M 2024-04-07T20:31:54.262 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 26 M 2024-04-07T20:31:54.262 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:31:54.335 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:54.336 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.337 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:54.338 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.339 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:54.340 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.341 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:54.342 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.343 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.344 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:54.380 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-07T20:31:54.405 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:54.405 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repository Size 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-volume noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 264 k 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout:Installing dependencies: 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout:Install 2 Packages 2024-04-07T20:31:54.406 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:54.407 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 341 k 2024-04-07T20:31:54.407 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 1.5 M 2024-04-07T20:31:54.407 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:54.453 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-07T20:31:54.507 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-07T20:31:54.545 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-07T20:31:54.586 INFO:teuthology.orchestra.run.smithi112.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 666 kB/s | 77 kB 00:00 2024-04-07T20:31:54.594 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-07T20:31:54.658 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-07T20:31:54.711 INFO:teuthology.orchestra.run.smithi112.stdout:(2/2): ceph-volume-19.0.0-2578.ge5c885fe.el9.no 1.1 MB/s | 264 kB 00:00 2024-04-07T20:31:54.712 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:54.712 INFO:teuthology.orchestra.run.smithi112.stdout:Total 1.1 MB/s | 341 kB 00:00 2024-04-07T20:31:54.724 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:54.733 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:54.733 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:54.777 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:54.777 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:54.843 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-07T20:31:54.891 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-07T20:31:54.942 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:54.960 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-07T20:31:54.961 INFO:teuthology.orchestra.run.smithi044.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 118 kB/s | 19 kB 00:00 2024-04-07T20:31:54.985 INFO:teuthology.orchestra.run.smithi044.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 137 kB/s | 26 kB 00:00 2024-04-07T20:31:55.049 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-07T20:31:55.121 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-07T20:31:55.164 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T20:31:55.166 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-07T20:31:55.180 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T20:31:55.180 INFO:teuthology.orchestra.run.smithi112.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:55.181 INFO:teuthology.orchestra.run.smithi112.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-07T20:31:55.181 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:55.194 INFO:teuthology.orchestra.run.smithi044.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 955 kB/s | 222 kB 00:00 2024-04-07T20:31:55.261 INFO:teuthology.orchestra.run.smithi044.stdout:(4/13): ceph-mgr-rook-19.0.0-2578.ge5c885fe.el9 106 kB/s | 49 kB 00:00 2024-04-07T20:31:55.286 INFO:teuthology.orchestra.run.smithi044.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 528 kB/s | 159 kB 00:00 2024-04-07T20:31:55.312 INFO:teuthology.orchestra.run.smithi044.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-04-07T20:31:55.337 INFO:teuthology.orchestra.run.smithi044.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.9 MB/s | 279 kB 00:00 2024-04-07T20:31:55.404 INFO:teuthology.orchestra.run.smithi044.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 163 kB/s | 15 kB 00:00 2024-04-07T20:31:55.406 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-07T20:31:55.429 INFO:teuthology.orchestra.run.smithi044.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 226 kB/s | 32 kB 00:00 2024-04-07T20:31:55.505 INFO:teuthology.orchestra.run.smithi044.stdout:(10/13): python3-google-auth-2.28.2-1.el9.noarc 1.2 MB/s | 203 kB 00:00 2024-04-07T20:31:55.530 INFO:teuthology.orchestra.run.smithi044.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 590 kB/s | 59 kB 00:00 2024-04-07T20:31:55.572 INFO:teuthology.orchestra.run.smithi044.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.3 MB/s | 90 kB 00:00 2024-04-07T20:31:55.573 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 31/36 2024-04-07T20:31:55.600 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T20:31:55.625 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T20:31:55.625 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:55.625 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-07T20:31:55.625 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T20:31:55.625 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T20:31:55.625 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:55.664 INFO:teuthology.orchestra.run.smithi044.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 3.9 MB/s | 1.0 MB 00:00 2024-04-07T20:31:55.664 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:55.664 INFO:teuthology.orchestra.run.smithi044.stdout:Total 1.6 MB/s | 2.2 MB 00:01 2024-04-07T20:31:55.734 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:31:55.750 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:31:55.750 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:31:55.852 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:31:55.853 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:31:55.979 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 1/2 2024-04-07T20:31:56.332 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-07T20:31:56.332 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:56.332 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:56.332 INFO:teuthology.orchestra.run.smithi112.stdout: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:56.332 INFO:teuthology.orchestra.run.smithi112.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-07T20:31:56.332 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:56.333 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:56.365 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:31:56.544 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-07T20:31:56.600 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-07T20:31:56.655 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-07T20:31:56.700 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install librados-devel 2024-04-07T20:31:56.716 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-07T20:31:56.758 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-07T20:31:56.856 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-07T20:31:56.965 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-07T20:31:57.018 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-07T20:31:57.085 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T20:31:57.113 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T20:31:57.113 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:57.113 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-07T20:31:57.113 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T20:31:57.113 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T20:31:57.113 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:57.306 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:41 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:31:57.568 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T20:31:57.592 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T20:31:57.593 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:57.593 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-07T20:31:57.593 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T20:31:57.593 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T20:31:57.593 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:57.596 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:31:57.596 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:31:57.596 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:31:57.596 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.596 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:31:57.596 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:31:57.597 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:31:57.598 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:31:57.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:31:57.665 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:31:57.666 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:57.666 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repo Size 2024-04-07T20:31:57.666 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:57.666 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:31:57.666 INFO:teuthology.orchestra.run.smithi112.stdout: librados-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 127 k 2024-04-07T20:31:57.666 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:57.666 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:31:57.667 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:31:57.667 INFO:teuthology.orchestra.run.smithi112.stdout:Install 1 Package 2024-04-07T20:31:57.667 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:57.667 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 127 k 2024-04-07T20:31:57.667 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 456 k 2024-04-07T20:31:57.667 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:31:57.792 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-07T20:31:57.811 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T20:31:57.834 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T20:31:57.834 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:31:57.835 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-07T20:31:57.835 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T20:31:57.835 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T20:31:57.835 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:31:57.839 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-07T20:31:57.873 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-07T20:31:57.900 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T20:31:57.922 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-07T20:31:57.951 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T20:31:58.050 INFO:teuthology.orchestra.run.smithi112.stdout:librados-devel-19.0.0-2578.ge5c885fe.el9.x86_64 331 kB/s | 127 kB 00:00 2024-04-07T20:31:58.051 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:31:58.051 INFO:teuthology.orchestra.run.smithi112.stdout:Total 329 kB/s | 127 kB 00:00 2024-04-07T20:31:58.051 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:31:58.057 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:31:58.057 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:31:58.119 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:31:58.120 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:31:58.273 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:31:58.374 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:31:58.753 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T20:31:58.753 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 1/13 2024-04-07T20:31:58.753 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-07T20:31:58.753 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-07T20:31:58.753 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-07T20:31:58.754 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-07T20:31:58.754 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-07T20:31:58.754 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-07T20:31:58.754 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-07T20:31:58.754 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-07T20:31:58.754 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-07T20:31:58.754 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-07T20:31:58.754 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-07T20:31:58.821 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:31:59.139 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:31:59.139 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:59.140 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:31:59.140 INFO:teuthology.orchestra.run.smithi112.stdout: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:31:59.140 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:31:59.140 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:31:59.140 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-07T20:31:59.140 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:59.140 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:31:59.140 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:31:59.141 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:31:59.386 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install libcephfs2 2024-04-07T20:31:59.429 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-mgr-cephadm 2024-04-07T20:31:59.628 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T20:31:59.628 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/36 2024-04-07T20:31:59.628 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/36 2024-04-07T20:31:59.628 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/36 2024-04-07T20:31:59.628 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/36 2024-04-07T20:31:59.628 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/36 2024-04-07T20:31:59.628 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 6/36 2024-04-07T20:31:59.628 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-07T20:31:59.629 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-07T20:31:59.630 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-07T20:31:59.631 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-07T20:32:00.000 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:44 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:00.036 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:46 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:00.293 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:00.294 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.295 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:00.296 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.297 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:00.298 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:00.299 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.300 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.301 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.302 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.302 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:00.302 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.302 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.302 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.302 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.302 INFO:teuthology.orchestra.run.smithi112.stdout:Package libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:00.338 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:00.338 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:00.338 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:00.338 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.338 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:00.338 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:00.339 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.340 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.341 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.342 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.343 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.344 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.345 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.346 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:00.363 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:00.364 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:32:00.364 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:00.412 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:00.413 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:00.413 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:32:00.413 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:00.413 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:32:00.413 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 141 k 2024-04-07T20:32:00.413 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:32:00.413 INFO:teuthology.orchestra.run.smithi044.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout:Install 6 Packages 2024-04-07T20:32:00.414 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:00.415 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 7.0 M 2024-04-07T20:32:00.415 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 33 M 2024-04-07T20:32:00.415 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:32:00.442 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install libcephfs-devel 2024-04-07T20:32:00.577 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: lua-5.4.4-4.el9.x86_64 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-07T20:32:00.578 INFO:teuthology.orchestra.run.smithi191.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-07T20:32:00.579 INFO:teuthology.orchestra.run.smithi191.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-ply-3.11-14.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-07T20:32:00.580 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:00.581 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:00.699 INFO:teuthology.orchestra.run.smithi044.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.5 MB/s | 248 kB 00:00 2024-04-07T20:32:00.908 INFO:teuthology.orchestra.run.smithi044.stdout:(2/6): python3-babel-2.9.1-2.el9.noarch.rpm 16 MB/s | 6.0 MB 00:00 2024-04-07T20:32:00.933 INFO:teuthology.orchestra.run.smithi044.stdout:(3/6): ceph-mgr-cephadm-19.0.0-2578.ge5c885fe.e 354 kB/s | 141 kB 00:00 2024-04-07T20:32:00.940 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-base 2024-04-07T20:32:01.036 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:45 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:01.099 INFO:teuthology.orchestra.run.smithi044.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 301 kB/s | 58 kB 00:00 2024-04-07T20:32:01.125 INFO:teuthology.orchestra.run.smithi044.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 359 kB/s | 51 kB 00:00 2024-04-07T20:32:01.175 INFO:teuthology.orchestra.run.smithi044.stdout:(6/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.1 MB/s | 548 kB 00:00 2024-04-07T20:32:01.176 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:01.176 INFO:teuthology.orchestra.run.smithi044.stdout:Total 9.2 MB/s | 7.0 MB 00:00 2024-04-07T20:32:01.248 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:32:01.260 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:32:01.260 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:32:01.325 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:01.326 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:01.327 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:01.328 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:01.329 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.330 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.331 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.332 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.333 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.334 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.369 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:32:01.371 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:32:01.395 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:01.396 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:01.396 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repo Size 2024-04-07T20:32:01.396 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:01.396 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:32:01.396 INFO:teuthology.orchestra.run.smithi112.stdout: libcephfs-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 32 k 2024-04-07T20:32:01.396 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:01.396 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:32:01.397 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:01.397 INFO:teuthology.orchestra.run.smithi112.stdout:Install 1 Package 2024-04-07T20:32:01.397 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:01.397 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 32 k 2024-04-07T20:32:01.397 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 142 k 2024-04-07T20:32:01.397 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:32:01.564 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:04 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:01.630 INFO:teuthology.orchestra.run.smithi112.stdout:libcephfs-devel-19.0.0-2578.ge5c885fe.el9.x86_6 136 kB/s | 32 kB 00:00 2024-04-07T20:32:01.631 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:01.631 INFO:teuthology.orchestra.run.smithi112.stdout:Total 135 kB/s | 32 kB 00:00 2024-04-07T20:32:01.631 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:32:01.635 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:32:01.635 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:32:01.663 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:32:01.664 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:32:01.698 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:32:01.752 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:32:01.854 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.855 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:01.856 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:01.857 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:01.858 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.859 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:01.859 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.859 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:01.859 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.859 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:01.859 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:01.860 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.861 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.862 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.863 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:01.864 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.865 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:01.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.865 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.866 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:01.866 INFO:teuthology.orchestra.run.smithi191.stdout:Package ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:01.882 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-07T20:32:01.923 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:01.924 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:01.924 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:01.936 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-07T20:32:02.005 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install cephadm 2024-04-07T20:32:02.234 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:02.487 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-07T20:32:02.518 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:02.519 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:02.519 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:32:02.519 INFO:teuthology.orchestra.run.smithi112.stdout: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:02.519 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:02.519 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:02.583 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-07T20:32:02.598 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:05 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:02.661 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-07T20:32:02.689 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T20:32:02.717 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install librados2 2024-04-07T20:32:02.886 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:02.886 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:02.886 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:02.886 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.886 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:02.887 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.888 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.889 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.890 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:02.891 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.892 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.893 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:02.894 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.895 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.895 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.895 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:02.955 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout: cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 762 k 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 762 k 2024-04-07T20:32:02.956 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 768 k 2024-04-07T20:32:02.957 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:03.310 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:47 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:03.394 INFO:teuthology.orchestra.run.smithi191.stdout:cephadm-19.0.0-2578.ge5c885fe.el9.noarch.rpm 1.7 MB/s | 762 kB 00:00 2024-04-07T20:32:03.395 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:03.395 INFO:teuthology.orchestra.run.smithi191.stdout:Total 1.7 MB/s | 762 kB 00:00 2024-04-07T20:32:03.396 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:03.401 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:03.401 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:03.407 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:03.407 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:03.483 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:03.485 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T20:32:03.485 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/6 2024-04-07T20:32:03.485 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-07T20:32:03.485 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-07T20:32:03.485 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-07T20:32:03.485 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-07T20:32:03.598 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:03.598 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:03.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:03.598 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:03.598 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.598 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:03.599 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:03.600 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.601 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.602 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.603 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.604 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:03.605 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.606 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.607 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:03.607 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.607 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.607 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.607 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:03.607 INFO:teuthology.orchestra.run.smithi112.stdout:Package librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:03.666 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:03.667 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:32:03.667 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:03.746 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install librbd1 2024-04-07T20:32:03.814 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-07T20:32:03.814 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:03.814 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:32:03.814 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:03.814 INFO:teuthology.orchestra.run.smithi044.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-07T20:32:03.815 INFO:teuthology.orchestra.run.smithi044.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-07T20:32:03.815 INFO:teuthology.orchestra.run.smithi044.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-07T20:32:03.815 INFO:teuthology.orchestra.run.smithi044.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-07T20:32:03.815 INFO:teuthology.orchestra.run.smithi044.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-07T20:32:03.815 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:03.815 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:04.026 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:32:04.075 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-fuse 2024-04-07T20:32:04.107 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:32:04.337 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:48 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:04.447 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:32:04.626 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:04.626 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:04.626 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:04.626 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.626 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:04.626 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.626 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:04.627 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:04.628 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:04.629 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.630 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:04.631 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.632 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.633 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.634 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.635 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.635 INFO:teuthology.orchestra.run.smithi112.stdout:Package librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:04.682 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:50 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:04.695 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:04.696 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:32:04.697 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:04.756 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T20:32:04.756 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:04.756 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:04.756 INFO:teuthology.orchestra.run.smithi191.stdout: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:04.756 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:04.756 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:04.788 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install python3-rados 2024-04-07T20:32:04.988 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:04.988 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:04.988 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:04.988 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.988 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:04.988 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.989 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:04.990 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.991 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:04.992 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.993 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.994 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.995 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.996 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:04.997 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-immutable-object-cache 2024-04-07T20:32:05.062 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:05.062 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:05.062 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:32:05.062 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 890 k 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout:Install 2 Packages 2024-04-07T20:32:05.063 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:05.064 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 971 k 2024-04-07T20:32:05.064 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 2.8 M 2024-04-07T20:32:05.064 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:32:05.398 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:49 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:05.519 INFO:teuthology.orchestra.run.smithi044.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 454 kB/s | 80 kB 00:00 2024-04-07T20:32:05.602 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:08 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:05.688 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:05.688 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:05.688 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:05.688 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.689 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:05.690 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:05.691 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:05.692 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:05.693 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.694 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.695 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.696 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.697 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.697 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.697 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:05.697 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.697 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.697 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.697 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.697 INFO:teuthology.orchestra.run.smithi112.stdout:Package python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:05.760 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:05.761 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:32:05.761 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:05.777 INFO:teuthology.orchestra.run.smithi044.stdout:(2/2): ceph-fuse-19.0.0-2578.ge5c885fe.el9.x86_ 2.0 MB/s | 890 kB 00:00 2024-04-07T20:32:05.777 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:05.778 INFO:teuthology.orchestra.run.smithi044.stdout:Total 1.3 MB/s | 971 kB 00:00 2024-04-07T20:32:05.790 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:32:05.814 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:32:05.814 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:32:05.834 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install python3-rgw 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.898 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:05.899 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.900 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:05.901 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:05.902 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.903 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.904 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.905 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:05.906 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:32:05.907 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:32:05.964 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 145 k 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:05.965 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-04-07T20:32:05.966 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:05.966 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 145 k 2024-04-07T20:32:05.966 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 435 k 2024-04-07T20:32:05.966 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:06.090 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:32:06.192 INFO:teuthology.orchestra.run.smithi191.stdout:ceph-immutable-object-cache-19.0.0-2578.ge5c885 642 kB/s | 145 kB 00:00 2024-04-07T20:32:06.192 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:06.192 INFO:teuthology.orchestra.run.smithi191.stdout:Total 638 kB/s | 145 kB 00:00 2024-04-07T20:32:06.193 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:06.200 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:06.200 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:06.241 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-07T20:32:06.254 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:06.254 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:06.313 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T20:32:06.398 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:06.447 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:50 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:06.459 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:32:06.485 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:32:06.485 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:32:06.485 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-07T20:32:06.485 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:06.738 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:06.738 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.739 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:06.740 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:06.741 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:06.742 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:06.743 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.744 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:06.745 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.746 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.747 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.747 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:06.747 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.747 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.747 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.747 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:06.747 INFO:teuthology.orchestra.run.smithi112.stdout:Package python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:06.809 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:06.810 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:32:06.810 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:06.888 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install python3-cephfs 2024-04-07T20:32:07.008 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T20:32:07.008 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/2 2024-04-07T20:32:07.347 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-07T20:32:07.347 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:07.347 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:32:07.347 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-07T20:32:07.347 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:07.347 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:07.478 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:51 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:07.505 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T20:32:07.505 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:07.505 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:07.505 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:07.505 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:07.505 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:07.623 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install ceph-volume 2024-04-07T20:32:07.763 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.764 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.765 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.766 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:07.767 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.768 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.769 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.770 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.771 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.772 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:07.773 INFO:teuthology.orchestra.run.smithi112.stdout:Package python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:07.774 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr 2024-04-07T20:32:07.833 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:07.834 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:32:07.834 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:07.920 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install python3-rbd 2024-04-07T20:32:08.242 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:54 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:08.377 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:11 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:08.513 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:52 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:08.544 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.545 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.546 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.547 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:08.548 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.549 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.550 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.551 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.552 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.553 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.620 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:08.621 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:08.621 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-07T20:32:08.621 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:08.621 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:32:08.621 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-volume noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 264 k 2024-04-07T20:32:08.621 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-07T20:32:08.621 INFO:teuthology.orchestra.run.smithi044.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-07T20:32:08.621 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:08.622 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:32:08.622 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:08.622 INFO:teuthology.orchestra.run.smithi044.stdout:Install 2 Packages 2024-04-07T20:32:08.622 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:08.622 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 341 k 2024-04-07T20:32:08.622 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 1.5 M 2024-04-07T20:32:08.622 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:32:08.665 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:08.665 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:08.665 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:08.665 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.665 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.666 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:08.667 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:08.668 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:08.669 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:08.670 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.671 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.672 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.673 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.674 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.674 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.674 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:08.674 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.674 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.674 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.674 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.674 INFO:teuthology.orchestra.run.smithi191.stdout:Package ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:08.732 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:08.733 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:08.733 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:08.803 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:08.803 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:08.803 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:08.803 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.803 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:08.804 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.805 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:08.806 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:08.807 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.808 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:08.809 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.810 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:08.811 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.812 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.812 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.812 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.812 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:08.812 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.812 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.812 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.812 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:08.813 INFO:teuthology.orchestra.run.smithi112.stdout:Package python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:08.813 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-dashboard 2024-04-07T20:32:08.873 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:08.874 INFO:teuthology.orchestra.run.smithi112.stdout:Nothing to do. 2024-04-07T20:32:08.874 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:08.909 INFO:teuthology.orchestra.run.smithi044.stdout:(1/2): ceph-volume-19.0.0-2578.ge5c885fe.el9.no 1.1 MB/s | 264 kB 00:00 2024-04-07T20:32:08.954 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install rbd-fuse 2024-04-07T20:32:09.084 INFO:teuthology.orchestra.run.smithi044.stdout:(2/2): python3-packaging-20.9-5.el9.noarch.rpm 185 kB/s | 77 kB 00:00 2024-04-07T20:32:09.084 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:09.085 INFO:teuthology.orchestra.run.smithi044.stdout:Total 736 kB/s | 341 kB 00:00 2024-04-07T20:32:09.096 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:32:09.107 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:32:09.107 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:32:09.150 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:32:09.150 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:32:09.305 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:32:09.402 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:12 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:09.480 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-07T20:32:09.512 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T20:32:09.526 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T20:32:09.527 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:32:09.527 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-07T20:32:09.527 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:09.549 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:53 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:09.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:09.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:09.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:09.692 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:09.693 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.694 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.695 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:09.696 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:09.697 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.698 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.698 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.698 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.698 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:09.698 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.698 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.698 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.698 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.757 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 3.5 M 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 34 k 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 16 k 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-07T20:32:09.759 INFO:teuthology.orchestra.run.smithi191.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout:Install 12 Packages 2024-04-07T20:32:09.760 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:09.761 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 8.6 M 2024-04-07T20:32:09.761 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 104 M 2024-04-07T20:32:09.761 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.839 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.840 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.841 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:09.842 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:09.843 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.844 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:09.845 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.846 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.847 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.847 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:09.847 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.847 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.847 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.847 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.847 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:09.847 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.848 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:09.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.848 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.849 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.850 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:09.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.850 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:09.907 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:09.908 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:09.908 INFO:teuthology.orchestra.run.smithi112.stdout: Package Architecture Version Repository Size 2024-04-07T20:32:09.908 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:09.908 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:32:09.908 INFO:teuthology.orchestra.run.smithi112.stdout: rbd-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 85 k 2024-04-07T20:32:09.908 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:09.908 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:32:09.908 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:09.909 INFO:teuthology.orchestra.run.smithi112.stdout:Install 1 Package 2024-04-07T20:32:09.909 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:09.909 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 85 k 2024-04-07T20:32:09.909 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 231 k 2024-04-07T20:32:09.909 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:32:10.296 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 1/2 2024-04-07T20:32:10.370 INFO:teuthology.orchestra.run.smithi191.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2578.ge5c 83 kB/s | 16 kB 00:00 2024-04-07T20:32:10.382 INFO:teuthology.orchestra.run.smithi112.stdout:rbd-fuse-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 180 kB/s | 85 kB 00:00 2024-04-07T20:32:10.383 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:10.383 INFO:teuthology.orchestra.run.smithi112.stdout:Total 180 kB/s | 85 kB 00:00 2024-04-07T20:32:10.383 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:32:10.391 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:32:10.391 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:32:10.452 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:32:10.452 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:32:10.620 INFO:teuthology.orchestra.run.smithi191.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2578.ge5 76 kB/s | 34 kB 00:00 2024-04-07T20:32:10.645 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:32:10.646 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-07T20:32:10.646 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:10.646 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:32:10.647 INFO:teuthology.orchestra.run.smithi044.stdout: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:10.647 INFO:teuthology.orchestra.run.smithi044.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-07T20:32:10.647 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:10.647 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:10.679 INFO:teuthology.orchestra.run.smithi191.stdout:(3/12): protobuf-3.14.0-13.el9.x86_64.rpm 3.3 MB/s | 1.0 MB 00:00 2024-04-07T20:32:10.748 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:10.788 INFO:teuthology.orchestra.run.smithi191.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.6 MB/s | 269 kB 00:00 2024-04-07T20:32:10.854 INFO:teuthology.orchestra.run.smithi191.stdout:(5/12): protobuf-compiler-3.14.0-13.el9.x86_64. 4.8 MB/s | 863 kB 00:00 2024-04-07T20:32:10.981 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install librados-devel 2024-04-07T20:32:11.013 INFO:teuthology.orchestra.run.smithi191.stdout:(6/12): ceph-mgr-dashboard-19.0.0-2578.ge5c885f 4.2 MB/s | 3.5 MB 00:00 2024-04-07T20:32:11.030 INFO:teuthology.orchestra.run.smithi191.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 111 kB/s | 19 kB 00:00 2024-04-07T20:32:11.122 INFO:teuthology.orchestra.run.smithi191.stdout:(8/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.6 MB/s | 548 kB 00:00 2024-04-07T20:32:11.146 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:11.172 INFO:teuthology.orchestra.run.smithi191.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 618 kB/s | 31 kB 00:00 2024-04-07T20:32:11.247 INFO:teuthology.orchestra.run.smithi191.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.5 MB/s | 188 kB 00:00 2024-04-07T20:32:11.273 INFO:teuthology.orchestra.run.smithi191.stdout:(11/12): python3-grpcio-tools-1.46.7-10.el9.x86 597 kB/s | 144 kB 00:00 2024-04-07T20:32:11.348 INFO:teuthology.orchestra.run.smithi191.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 6.1 MB/s | 2.0 MB 00:00 2024-04-07T20:32:11.350 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:11.350 INFO:teuthology.orchestra.run.smithi191.stdout:Total 5.4 MB/s | 8.6 MB 00:01 2024-04-07T20:32:11.398 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:11.414 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:11.414 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:11.493 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:11.493 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:11.493 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:32:11.493 INFO:teuthology.orchestra.run.smithi112.stdout: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:11.493 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:11.493 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:11.588 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:01:57 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:11.623 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:11.623 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:11.733 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install rbd-mirror 2024-04-07T20:32:11.890 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:11.890 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:11.890 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:11.890 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.891 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.892 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:11.893 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.894 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.895 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.896 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:11.897 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.898 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.899 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:11.964 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:11.964 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repo Size 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout: librados-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 127 k 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 127 k 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 456 k 2024-04-07T20:32:11.965 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:32:12.150 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:12.172 INFO:teuthology.orchestra.run.smithi044.stdout:librados-devel-19.0.0-2578.ge5c885fe.el9.x86_64 613 kB/s | 127 kB 00:00 2024-04-07T20:32:12.173 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:12.173 INFO:teuthology.orchestra.run.smithi044.stdout:Total 608 kB/s | 127 kB 00:00 2024-04-07T20:32:12.173 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:32:12.179 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:32:12.179 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:32:12.215 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-07T20:32:12.241 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:32:12.242 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:32:12.250 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-07T20:32:12.296 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-07T20:32:12.327 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-07T20:32:12.345 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:56 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:12.396 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:32:12.437 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-07T20:32:12.507 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:12.559 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-07T20:32:12.644 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:12.644 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.645 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:12.646 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.647 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.648 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:12.649 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.650 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:12.651 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.652 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.653 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.653 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.653 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:12.653 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.653 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.653 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.653 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:12.654 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-07T20:32:12.697 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-07T20:32:12.712 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:12.712 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:12.712 INFO:teuthology.orchestra.run.smithi112.stdout: Package Arch Version Repo Size 2024-04-07T20:32:12.712 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:12.713 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:32:12.713 INFO:teuthology.orchestra.run.smithi112.stdout: rbd-mirror x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T20:32:12.713 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:12.713 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:32:12.713 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:12.713 INFO:teuthology.orchestra.run.smithi112.stdout:Install 1 Package 2024-04-07T20:32:12.713 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:12.713 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 3.1 M 2024-04-07T20:32:12.714 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 13 M 2024-04-07T20:32:12.714 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:32:12.735 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-07T20:32:12.767 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 10/12 2024-04-07T20:32:12.951 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:13.085 INFO:teuthology.orchestra.run.smithi112.stdout:rbd-mirror-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 8.3 MB/s | 3.1 MB 00:00 2024-04-07T20:32:13.085 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:13.086 INFO:teuthology.orchestra.run.smithi112.stdout:Total 8.3 MB/s | 3.1 MB 00:00 2024-04-07T20:32:13.086 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:32:13.095 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:32:13.095 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:32:13.171 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:32:13.171 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:32:13.287 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:13.287 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:13.287 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:32:13.287 INFO:teuthology.orchestra.run.smithi044.stdout: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:13.287 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:13.288 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:13.555 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install libcephfs2 2024-04-07T20:32:13.605 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:32:13.678 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:13.703 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:13.703 INFO:teuthology.orchestra.run.smithi112.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:32:13.703 INFO:teuthology.orchestra.run.smithi112.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-07T20:32:13.703 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T20:32:13.703 INFO:teuthology.orchestra.run.smithi112.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T20:32:13.703 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:13.805 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 11/12 2024-04-07T20:32:13.843 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T20:32:14.170 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:00 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:14.473 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:14.473 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:14.473 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:14.473 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.473 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:14.473 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.473 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:14.474 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.475 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:14.476 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.477 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:14.478 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.479 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.480 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.481 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.482 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:14.483 INFO:teuthology.orchestra.run.smithi044.stdout:Package libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:14.547 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:14.548 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:32:14.548 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:14.623 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install libcephfs-devel 2024-04-07T20:32:14.840 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:14.840 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:14.840 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:32:14.840 INFO:teuthology.orchestra.run.smithi112.stdout: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:14.840 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:14.840 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:15.101 DEBUG:teuthology.orchestra.run.smithi112:> sudo yum -y install rbd-nbd 2024-04-07T20:32:15.175 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 1/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 2/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 3/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-07T20:32:15.176 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-07T20:32:15.227 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:01 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:15.536 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:15.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.543 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.545 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:15.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.551 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-07T20:32:15.551 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:15.551 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:15.551 INFO:teuthology.orchestra.run.smithi191.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-07T20:32:15.551 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:15.551 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:15.551 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:15.552 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:15.609 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:15.610 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:15.610 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repo Size 2024-04-07T20:32:15.610 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout: libcephfs-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 32 k 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 32 k 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 142 k 2024-04-07T20:32:15.611 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:32:15.705 INFO:teuthology.orchestra.run.smithi112.stdout:Last metadata expiration check: 0:01:59 ago on Sun 07 Apr 2024 08:30:16 PM UTC. 2024-04-07T20:32:15.776 INFO:teuthology.orchestra.run.smithi044.stdout:libcephfs-devel-19.0.0-2578.ge5c885fe.el9.x86_6 193 kB/s | 32 kB 00:00 2024-04-07T20:32:15.777 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:15.777 INFO:teuthology.orchestra.run.smithi044.stdout:Total 191 kB/s | 32 kB 00:00 2024-04-07T20:32:15.777 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:32:15.780 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:32:15.780 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:32:15.808 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-07T20:32:15.809 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:32:15.809 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:32:15.905 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:32:15.993 INFO:teuthology.orchestra.run.smithi112.stderr:Modular dependency problems: 2024-04-07T20:32:15.993 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 1: conflicting requests 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 2: conflicting requests 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 3: conflicting requests 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 4: conflicting requests 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 5: conflicting requests 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 6: conflicting requests 2024-04-07T20:32:15.994 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 7: conflicting requests 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 8: conflicting requests 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 9: conflicting requests 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 10: conflicting requests 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 11: conflicting requests 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 12: conflicting requests 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.995 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 13: conflicting requests 2024-04-07T20:32:15.996 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.996 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 14: conflicting requests 2024-04-07T20:32:15.997 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.997 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 15: conflicting requests 2024-04-07T20:32:15.997 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.997 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 16: conflicting requests 2024-04-07T20:32:15.997 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 17: conflicting requests 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 18: conflicting requests 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 19: conflicting requests 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 20: conflicting requests 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 21: conflicting requests 2024-04-07T20:32:15.998 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 22: conflicting requests 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 23: conflicting requests 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 24: conflicting requests 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 25: conflicting requests 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 26: conflicting requests 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 27: conflicting requests 2024-04-07T20:32:15.999 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 28: conflicting requests 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 29: conflicting requests 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 30: conflicting requests 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 31: conflicting requests 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 32: conflicting requests 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 33: conflicting requests 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.000 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 34: conflicting requests 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 35: conflicting requests 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 36: conflicting requests 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 37: conflicting requests 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.001 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 39: conflicting requests 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.002 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.003 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.004 INFO:teuthology.orchestra.run.smithi112.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.018 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:16.062 INFO:teuthology.orchestra.run.smithi112.stdout:Dependencies resolved. 2024-04-07T20:32:16.062 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout: Package Architecture Version Repository Size 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout:Installing: 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout: rbd-nbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 171 k 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction Summary 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout:================================================================================ 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout:Install 1 Package 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout:Total download size: 171 k 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout:Installed size: 494 k 2024-04-07T20:32:16.063 INFO:teuthology.orchestra.run.smithi112.stdout:Downloading Packages: 2024-04-07T20:32:16.380 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:16.397 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:19 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:16.513 INFO:teuthology.orchestra.run.smithi112.stdout:rbd-nbd-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 379 kB/s | 171 kB 00:00 2024-04-07T20:32:16.514 INFO:teuthology.orchestra.run.smithi112.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:16.514 INFO:teuthology.orchestra.run.smithi112.stdout:Total 378 kB/s | 171 kB 00:00 2024-04-07T20:32:16.514 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction check 2024-04-07T20:32:16.522 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction check succeeded. 2024-04-07T20:32:16.522 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction test 2024-04-07T20:32:16.583 INFO:teuthology.orchestra.run.smithi112.stdout:Transaction test succeeded. 2024-04-07T20:32:16.583 INFO:teuthology.orchestra.run.smithi112.stdout:Running transaction 2024-04-07T20:32:16.678 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:16.678 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:16.678 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:32:16.678 INFO:teuthology.orchestra.run.smithi044.stdout: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:16.679 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:16.679 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:16.682 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:16.682 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:16.683 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:16.684 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:16.685 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.686 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.687 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.688 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.689 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.690 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.691 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:16.745 INFO:teuthology.orchestra.run.smithi112.stdout: Preparing : 1/1 2024-04-07T20:32:16.751 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout:======================================================================================= 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout:======================================================================================= 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 7.4 M 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-07T20:32:16.752 INFO:teuthology.orchestra.run.smithi191.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout:======================================================================================= 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout:Install 12 Packages 2024-04-07T20:32:16.753 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:16.754 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 38 M 2024-04-07T20:32:16.754 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 209 M 2024-04-07T20:32:16.754 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:16.844 INFO:teuthology.orchestra.run.smithi112.stdout: Installing : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:16.884 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install librados2 2024-04-07T20:32:17.268 INFO:teuthology.orchestra.run.smithi112.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:17.430 INFO:teuthology.orchestra.run.smithi191.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 705 kB/s | 195 kB 00:00 2024-04-07T20:32:17.487 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:03 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:17.522 INFO:teuthology.orchestra.run.smithi191.stdout:(2/12): libgfortran-11.4.1-3.el9.x86_64.rpm 2.1 MB/s | 803 kB 00:00 2024-04-07T20:32:17.548 INFO:teuthology.orchestra.run.smithi191.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 279 kB/s | 33 kB 00:00 2024-04-07T20:32:17.600 INFO:teuthology.orchestra.run.smithi112.stdout: Verifying : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:17.600 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:17.601 INFO:teuthology.orchestra.run.smithi112.stdout:Installed: 2024-04-07T20:32:17.601 INFO:teuthology.orchestra.run.smithi112.stdout: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:17.601 INFO:teuthology.orchestra.run.smithi112.stdout: 2024-04-07T20:32:17.601 INFO:teuthology.orchestra.run.smithi112.stdout:Complete! 2024-04-07T20:32:17.706 INFO:teuthology.orchestra.run.smithi191.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 115 kB/s | 18 kB 00:00 2024-04-07T20:32:17.756 INFO:teuthology.orchestra.run.smithi191.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 708 kB/s | 35 kB 00:00 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.791 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:17.792 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.793 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:17.794 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:17.795 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:17.796 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.797 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.798 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.799 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.800 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:17.801 INFO:teuthology.orchestra.run.smithi044.stdout:Package librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:17.832 INFO:teuthology.orchestra.run.smithi191.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 9.7 MB/s | 3.0 MB 00:00 2024-04-07T20:32:17.849 DEBUG:teuthology.parallel:result is None 2024-04-07T20:32:17.866 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:17.866 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:32:17.867 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:17.882 INFO:teuthology.orchestra.run.smithi191.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 4.8 MB/s | 245 kB 00:00 2024-04-07T20:32:17.939 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install librbd1 2024-04-07T20:32:18.066 INFO:teuthology.orchestra.run.smithi191.stdout:(8/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 15 MB/s | 4.7 MB 00:00 2024-04-07T20:32:18.133 INFO:teuthology.orchestra.run.smithi191.stdout:(9/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 20 MB/s | 5.1 MB 00:00 2024-04-07T20:32:18.158 INFO:teuthology.orchestra.run.smithi191.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 2.7 MB/s | 250 kB 00:00 2024-04-07T20:32:18.300 INFO:teuthology.orchestra.run.smithi191.stdout:(11/12): ceph-mgr-diskprediction-local-19.0.0-2 6.5 MB/s | 7.4 MB 00:01 2024-04-07T20:32:18.546 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:04 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:18.847 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:19.067 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:19.067 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:19.067 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.067 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:19.067 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.067 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:19.067 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:19.068 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.069 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.070 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:19.073 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.073 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:19.073 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.073 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:19.073 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.074 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.075 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.076 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.077 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.078 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.080 INFO:teuthology.orchestra.run.smithi191.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 20 MB/s | 16 MB 00:00 2024-04-07T20:32:19.080 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:19.080 INFO:teuthology.orchestra.run.smithi191.stdout:Total 17 MB/s | 38 MB 00:02 2024-04-07T20:32:19.081 INFO:teuthology.orchestra.run.smithi044.stdout:Package librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:19.081 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:19.081 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:32:19.081 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:19.081 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install python3-rados 2024-04-07T20:32:19.290 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:19.317 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:19.317 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:19.690 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:05 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:19.743 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:19.743 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:19.997 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:19.997 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:19.997 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:19.997 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.997 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:19.997 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.997 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:19.998 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:19.999 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.000 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.001 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.002 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:20.003 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.003 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:20.003 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.004 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.005 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.006 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.007 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:20.008 INFO:teuthology.orchestra.run.smithi044.stdout:Package python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:20.071 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:20.072 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:32:20.072 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:20.168 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install python3-rgw 2024-04-07T20:32:20.497 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:20.584 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-07T20:32:20.623 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-07T20:32:20.721 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-07T20:32:20.757 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-07T20:32:20.783 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:06 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:20.935 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-07T20:32:20.964 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-07T20:32:21.046 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-07T20:32:21.087 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.088 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:21.089 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.090 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:21.091 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.092 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:21.093 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.094 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:21.095 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.096 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:21.097 INFO:teuthology.orchestra.run.smithi044.stdout:Package python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:21.162 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:21.163 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:32:21.163 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:21.255 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install python3-cephfs 2024-04-07T20:32:21.692 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-07T20:32:21.812 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-07T20:32:21.859 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:07 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:22.161 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.162 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.163 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:22.164 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:22.165 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:22.166 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:22.167 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.168 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.169 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.170 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:22.171 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.171 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.171 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.171 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:22.171 INFO:teuthology.orchestra.run.smithi044.stdout:Package python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:22.236 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:22.237 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:32:22.238 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:22.322 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install python3-rbd 2024-04-07T20:32:22.941 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:08 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:23.046 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T20:32:23.244 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:23.244 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:23.244 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:23.244 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:23.245 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.246 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:23.247 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:23.248 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:23.249 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:23.250 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.251 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.252 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:23.253 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.254 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.255 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:23.255 INFO:teuthology.orchestra.run.smithi044.stdout:Package python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:23.317 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:23.318 INFO:teuthology.orchestra.run.smithi044.stdout:Nothing to do. 2024-04-07T20:32:23.318 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:23.400 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install rbd-fuse 2024-04-07T20:32:24.005 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:10 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:24.080 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-07T20:32:24.107 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T20:32:24.307 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:24.307 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:24.308 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:24.308 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.308 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:24.308 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.308 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:24.309 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.309 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:24.309 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.309 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:24.309 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.309 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:24.310 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.311 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:24.312 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:24.313 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:24.314 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.315 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.316 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:24.317 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.318 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.318 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.318 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.318 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:24.318 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.318 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.318 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.318 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:24.379 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:24.380 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:24.380 INFO:teuthology.orchestra.run.smithi044.stdout: Package Architecture Version Repository Size 2024-04-07T20:32:24.380 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:24.380 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:32:24.380 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 85 k 2024-04-07T20:32:24.380 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:24.380 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:32:24.381 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:24.381 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-04-07T20:32:24.381 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:24.381 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 85 k 2024-04-07T20:32:24.381 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 231 k 2024-04-07T20:32:24.381 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:32:24.595 INFO:teuthology.orchestra.run.smithi044.stdout:rbd-fuse-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 398 kB/s | 85 kB 00:00 2024-04-07T20:32:24.596 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:24.596 INFO:teuthology.orchestra.run.smithi044.stdout:Total 396 kB/s | 85 kB 00:00 2024-04-07T20:32:24.596 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:32:24.603 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:32:24.603 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:32:24.666 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:32:24.666 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:32:24.872 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:32:24.989 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:25.379 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:25.685 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:25.686 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:25.686 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:32:25.686 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:25.686 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:25.686 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:25.929 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install rbd-mirror 2024-04-07T20:32:26.545 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:12 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:26.743 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 1/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T20:32:26.744 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.856 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.857 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.858 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:26.859 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.860 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.861 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.862 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:26.863 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.864 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.865 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:26.865 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.865 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.865 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.865 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:26.928 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:26.929 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:26.929 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repo Size 2024-04-07T20:32:26.929 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-mirror x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 3.1 M 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 13 M 2024-04-07T20:32:26.930 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:32:27.198 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-07T20:32:27.198 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:27.198 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:27.198 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:27.198 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:27.199 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:27.556 INFO:teuthology.orchestra.run.smithi044.stdout:rbd-mirror-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 4.9 MB/s | 3.1 MB 00:00 2024-04-07T20:32:27.557 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:27.557 INFO:teuthology.orchestra.run.smithi044.stdout:Total 4.9 MB/s | 3.1 MB 00:00 2024-04-07T20:32:27.557 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:32:27.567 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:32:27.567 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:32:27.613 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-rook 2024-04-07T20:32:27.647 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:32:27.648 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:32:28.114 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:32:28.173 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:28.198 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:28.198 INFO:teuthology.orchestra.run.smithi044.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:32:28.198 INFO:teuthology.orchestra.run.smithi044.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-07T20:32:28.198 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T20:32:28.198 INFO:teuthology.orchestra.run.smithi044.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T20:32:28.198 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:28.221 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:31 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:28.532 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:28.532 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:28.532 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:28.532 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.532 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:28.532 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:28.533 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.534 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:28.535 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:28.536 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:28.537 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.538 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.539 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.540 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.541 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.541 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.541 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:28.541 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.541 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.541 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.541 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:28.605 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:28.606 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:28.606 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:32:28.606 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:28.606 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:28.606 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-rook noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 49 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-07T20:32:28.607 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:28.608 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:28.608 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:28.608 INFO:teuthology.orchestra.run.smithi191.stdout:Install 13 Packages 2024-04-07T20:32:28.608 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:28.608 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 2.2 M 2024-04-07T20:32:28.608 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 26 M 2024-04-07T20:32:28.608 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:29.231 INFO:teuthology.orchestra.run.smithi191.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 95 kB/s | 26 kB 00:00 2024-04-07T20:32:29.256 INFO:teuthology.orchestra.run.smithi191.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 65 kB/s | 19 kB 00:00 2024-04-07T20:32:29.281 INFO:teuthology.orchestra.run.smithi191.stdout:(3/13): ceph-mgr-rook-19.0.0-2578.ge5c885fe.el9 153 kB/s | 49 kB 00:00 2024-04-07T20:32:29.370 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:29.370 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:29.370 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:32:29.370 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:29.370 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:29.370 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:29.607 INFO:teuthology.orchestra.run.smithi191.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 453 kB/s | 159 kB 00:00 2024-04-07T20:32:29.619 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum -y install rbd-nbd 2024-04-07T20:32:29.657 INFO:teuthology.orchestra.run.smithi191.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 521 kB/s | 222 kB 00:00 2024-04-07T20:32:29.716 INFO:teuthology.orchestra.run.smithi191.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 493 kB/s | 54 kB 00:00 2024-04-07T20:32:29.883 INFO:teuthology.orchestra.run.smithi191.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 464 kB/s | 279 kB 00:00 2024-04-07T20:32:29.900 INFO:teuthology.orchestra.run.smithi191.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 133 kB/s | 32 kB 00:00 2024-04-07T20:32:29.992 INFO:teuthology.orchestra.run.smithi191.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 59 kB/s | 15 kB 00:00 2024-04-07T20:32:30.084 INFO:teuthology.orchestra.run.smithi191.stdout:(10/13): python3-google-auth-2.28.2-1.el9.noarc 1.0 MB/s | 203 kB 00:00 2024-04-07T20:32:30.167 INFO:teuthology.orchestra.run.smithi191.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 338 kB/s | 59 kB 00:00 2024-04-07T20:32:30.209 INFO:teuthology.orchestra.run.smithi191.stdout:(12/13): python3-kubernetes-26.1.0-2.el9.noarch 3.3 MB/s | 1.0 MB 00:00 2024-04-07T20:32:30.231 INFO:teuthology.orchestra.run.smithi044.stdout:Last metadata expiration check: 0:02:16 ago on Sun 07 Apr 2024 08:30:14 PM UTC. 2024-04-07T20:32:30.242 INFO:teuthology.orchestra.run.smithi191.stdout:(13/13): python3-websocket-client-1.2.3-2.el9.n 567 kB/s | 90 kB 00:00 2024-04-07T20:32:30.244 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:30.244 INFO:teuthology.orchestra.run.smithi191.stdout:Total 1.3 MB/s | 2.2 MB 00:01 2024-04-07T20:32:30.305 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:30.320 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:30.320 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:30.414 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:30.414 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:30.536 INFO:teuthology.orchestra.run.smithi044.stderr:Modular dependency problems: 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 1: conflicting requests 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 2: conflicting requests 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 3: conflicting requests 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 4: conflicting requests 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 5: conflicting requests 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.537 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 6: conflicting requests 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 7: conflicting requests 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 8: conflicting requests 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 9: conflicting requests 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 10: conflicting requests 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 11: conflicting requests 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.538 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 12: conflicting requests 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 13: conflicting requests 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 14: conflicting requests 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 15: conflicting requests 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 16: conflicting requests 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 17: conflicting requests 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 18: conflicting requests 2024-04-07T20:32:30.539 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 19: conflicting requests 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 20: conflicting requests 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 21: conflicting requests 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 22: conflicting requests 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 23: conflicting requests 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 24: conflicting requests 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 25: conflicting requests 2024-04-07T20:32:30.540 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 26: conflicting requests 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 27: conflicting requests 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 28: conflicting requests 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 29: conflicting requests 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 30: conflicting requests 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 31: conflicting requests 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 32: conflicting requests 2024-04-07T20:32:30.541 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 33: conflicting requests 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 34: conflicting requests 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 35: conflicting requests 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 36: conflicting requests 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 37: conflicting requests 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:30.542 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 39: conflicting requests 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.543 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:30.544 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.545 INFO:teuthology.orchestra.run.smithi044.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:30.608 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-07T20:32:30.608 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:30.608 INFO:teuthology.orchestra.run.smithi044.stdout: Package Architecture Version Repository Size 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-nbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 171 k 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout:Install 1 Package 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 171 k 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 494 k 2024-04-07T20:32:30.609 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-07T20:32:30.818 INFO:teuthology.orchestra.run.smithi044.stdout:rbd-nbd-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 820 kB/s | 171 kB 00:00 2024-04-07T20:32:30.818 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:30.818 INFO:teuthology.orchestra.run.smithi044.stdout:Total 813 kB/s | 171 kB 00:00 2024-04-07T20:32:30.819 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-07T20:32:30.827 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-07T20:32:30.827 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-07T20:32:30.889 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-07T20:32:30.890 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-07T20:32:30.930 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:31.050 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-07T20:32:31.088 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-07T20:32:31.143 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-07T20:32:31.153 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:31.198 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-07T20:32:31.228 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-07T20:32:31.268 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-07T20:32:31.360 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-07T20:32:31.471 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-07T20:32:31.528 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-07T20:32:31.588 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:31.886 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:31.886 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:31.886 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-07T20:32:31.886 INFO:teuthology.orchestra.run.smithi044.stdout: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:31.887 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:32:31.887 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-07T20:32:32.137 DEBUG:teuthology.parallel:result is None 2024-04-07T20:32:32.239 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-07T20:32:32.292 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-07T20:32:32.326 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-07T20:32:32.374 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-07T20:32:32.396 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T20:32:33.282 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 1/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-07T20:32:33.283 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-07T20:32:33.666 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-07T20:32:33.667 INFO:teuthology.orchestra.run.smithi191.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-07T20:32:33.668 INFO:teuthology.orchestra.run.smithi191.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-07T20:32:33.668 INFO:teuthology.orchestra.run.smithi191.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-07T20:32:33.668 INFO:teuthology.orchestra.run.smithi191.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-07T20:32:33.668 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:33.668 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:33.921 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-mgr-cephadm 2024-04-07T20:32:34.521 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:37 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:34.814 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:34.814 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:34.814 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:34.814 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.814 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:34.814 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.814 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:34.815 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.816 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.817 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.818 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.819 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:34.820 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.821 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.822 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.823 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:34.886 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 141 k 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-07T20:32:34.887 INFO:teuthology.orchestra.run.smithi191.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-07T20:32:34.888 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:34.888 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:34.888 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:34.888 INFO:teuthology.orchestra.run.smithi191.stdout:Install 6 Packages 2024-04-07T20:32:34.888 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:34.888 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 7.0 M 2024-04-07T20:32:34.888 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 33 M 2024-04-07T20:32:34.889 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:35.419 INFO:teuthology.orchestra.run.smithi191.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.4 MB/s | 248 kB 00:00 2024-04-07T20:32:35.602 INFO:teuthology.orchestra.run.smithi191.stdout:(2/6): ceph-mgr-cephadm-19.0.0-2578.ge5c885fe.e 398 kB/s | 141 kB 00:00 2024-04-07T20:32:35.828 INFO:teuthology.orchestra.run.smithi191.stdout:(3/6): python3-babel-2.9.1-2.el9.noarch.rpm 10 MB/s | 6.0 MB 00:00 2024-04-07T20:32:35.936 INFO:teuthology.orchestra.run.smithi191.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 173 kB/s | 58 kB 00:00 2024-04-07T20:32:35.962 INFO:teuthology.orchestra.run.smithi191.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.0 MB/s | 548 kB 00:00 2024-04-07T20:32:36.128 INFO:teuthology.orchestra.run.smithi191.stdout:(6/6): python3-typing-extensions-4.4.0-2.el9.no 170 kB/s | 51 kB 00:00 2024-04-07T20:32:36.131 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:36.132 INFO:teuthology.orchestra.run.smithi191.stdout:Total 5.6 MB/s | 7.0 MB 00:01 2024-04-07T20:32:36.201 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:36.212 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:36.213 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:36.316 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:36.317 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:36.623 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:36.787 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-07T20:32:36.830 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-07T20:32:37.342 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-07T20:32:37.424 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-07T20:32:37.495 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-07T20:32:37.526 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T20:32:38.308 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T20:32:38.309 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/6 2024-04-07T20:32:38.309 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-07T20:32:38.309 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-07T20:32:38.309 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-07T20:32:38.309 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-07T20:32:38.633 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-07T20:32:38.633 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:38.633 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:38.634 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:38.634 INFO:teuthology.orchestra.run.smithi191.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-07T20:32:38.634 INFO:teuthology.orchestra.run.smithi191.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-07T20:32:38.634 INFO:teuthology.orchestra.run.smithi191.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-07T20:32:38.634 INFO:teuthology.orchestra.run.smithi191.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-07T20:32:38.634 INFO:teuthology.orchestra.run.smithi191.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-07T20:32:38.635 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:38.635 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:38.882 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-fuse 2024-04-07T20:32:39.478 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:42 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:39.767 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:39.767 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.768 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.769 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:39.770 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.771 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.772 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.773 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:39.836 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:39.836 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:39.836 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:32:39.836 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 890 k 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout:Install 2 Packages 2024-04-07T20:32:39.837 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:39.838 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 971 k 2024-04-07T20:32:39.838 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 2.8 M 2024-04-07T20:32:39.838 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:40.246 INFO:teuthology.orchestra.run.smithi191.stdout:(1/2): ceph-fuse-19.0.0-2578.ge5c885fe.el9.x86_ 3.0 MB/s | 890 kB 00:00 2024-04-07T20:32:40.305 INFO:teuthology.orchestra.run.smithi191.stdout:(2/2): fuse-2.9.9-15.el9.x86_64.rpm 228 kB/s | 80 kB 00:00 2024-04-07T20:32:40.305 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:40.305 INFO:teuthology.orchestra.run.smithi191.stdout:Total 2.0 MB/s | 971 kB 00:00 2024-04-07T20:32:40.316 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:40.338 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:40.339 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:40.416 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:40.417 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:40.602 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:40.756 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-07T20:32:40.829 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T20:32:41.484 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T20:32:41.484 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/2 2024-04-07T20:32:41.831 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-07T20:32:41.832 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:41.832 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:41.832 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-07T20:32:41.832 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:41.832 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:42.113 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install ceph-volume 2024-04-07T20:32:42.722 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:45 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:43.012 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:43.012 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:43.012 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:43.012 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:43.013 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.014 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.015 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.016 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:43.017 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.018 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.019 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.020 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.021 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.022 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:43.022 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.022 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.022 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.022 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:43.083 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:43.083 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:43.083 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-volume noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 264 k 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout:Install 2 Packages 2024-04-07T20:32:43.084 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:43.085 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 341 k 2024-04-07T20:32:43.085 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 1.5 M 2024-04-07T20:32:43.085 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:43.326 INFO:teuthology.orchestra.run.smithi191.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 450 kB/s | 77 kB 00:00 2024-04-07T20:32:43.526 INFO:teuthology.orchestra.run.smithi191.stdout:(2/2): ceph-volume-19.0.0-2578.ge5c885fe.el9.no 709 kB/s | 264 kB 00:00 2024-04-07T20:32:43.526 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:43.527 INFO:teuthology.orchestra.run.smithi191.stdout:Total 770 kB/s | 341 kB 00:00 2024-04-07T20:32:43.538 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:43.548 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:43.548 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:43.591 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:43.591 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:43.760 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:43.942 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-07T20:32:43.970 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T20:32:43.985 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T20:32:43.985 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:32:43.985 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-07T20:32:43.985 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:44.666 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 1/2 2024-04-07T20:32:45.022 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-07T20:32:45.023 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:45.023 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:45.023 INFO:teuthology.orchestra.run.smithi191.stdout: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T20:32:45.023 INFO:teuthology.orchestra.run.smithi191.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-07T20:32:45.023 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:45.023 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:45.370 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librados-devel 2024-04-07T20:32:45.977 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:48 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:46.266 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:46.266 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:46.266 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:46.266 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.267 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.268 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.269 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.270 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:46.271 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.272 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.273 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:46.274 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.274 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.274 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.274 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.274 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:46.274 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.274 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.274 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.275 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:46.337 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout: librados-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 127 k 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-04-07T20:32:46.338 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:46.339 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 127 k 2024-04-07T20:32:46.339 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 456 k 2024-04-07T20:32:46.339 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:46.573 INFO:teuthology.orchestra.run.smithi191.stdout:librados-devel-19.0.0-2578.ge5c885fe.el9.x86_64 542 kB/s | 127 kB 00:00 2024-04-07T20:32:46.574 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:46.574 INFO:teuthology.orchestra.run.smithi191.stdout:Total 538 kB/s | 127 kB 00:00 2024-04-07T20:32:46.574 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:46.579 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:46.579 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:46.640 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:46.640 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:46.783 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:46.897 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:47.324 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:47.642 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:47.643 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:47.643 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:47.643 INFO:teuthology.orchestra.run.smithi191.stdout: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:47.643 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:47.643 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:47.879 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install libcephfs2 2024-04-07T20:32:48.484 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:51 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:48.774 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:48.774 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:48.774 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:48.774 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:48.775 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.776 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:48.777 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:48.778 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.779 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.780 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.781 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.782 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.783 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:48.783 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.783 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.783 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.783 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:48.783 INFO:teuthology.orchestra.run.smithi191.stdout:Package libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:48.843 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:48.844 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:48.844 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:48.917 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install libcephfs-devel 2024-04-07T20:32:49.513 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:52 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.802 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:49.803 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.804 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:49.805 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.806 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:49.807 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.808 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.809 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.810 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.811 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:49.871 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 32 k 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:49.872 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 32 k 2024-04-07T20:32:49.873 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 142 k 2024-04-07T20:32:49.873 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:50.034 INFO:teuthology.orchestra.run.smithi191.stdout:libcephfs-devel-19.0.0-2578.ge5c885fe.el9.x86_6 197 kB/s | 32 kB 00:00 2024-04-07T20:32:50.035 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:50.035 INFO:teuthology.orchestra.run.smithi191.stdout:Total 195 kB/s | 32 kB 00:00 2024-04-07T20:32:50.035 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:50.038 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:50.038 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:50.066 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:50.066 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:50.154 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:50.282 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:50.660 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:50.946 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:50.946 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:50.946 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:50.946 INFO:teuthology.orchestra.run.smithi191.stdout: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:50.946 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:50.946 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:51.113 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librados2 2024-04-07T20:32:51.706 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:54 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:51.993 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:51.993 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:51.993 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:51.993 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.993 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:51.994 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:51.995 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:51.996 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:51.997 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.998 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:51.999 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:52.000 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.001 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:52.002 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.002 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.002 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.002 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:52.002 INFO:teuthology.orchestra.run.smithi191.stdout:Package librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:52.062 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:52.063 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:52.064 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:52.145 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install librbd1 2024-04-07T20:32:52.736 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:55 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.027 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.028 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.029 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.030 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.031 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.032 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.033 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.034 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.035 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:53.036 INFO:teuthology.orchestra.run.smithi191.stdout:Package librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:53.096 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:53.097 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:53.097 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:53.173 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rados 2024-04-07T20:32:53.776 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:56 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:54.067 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:54.067 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:54.067 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:54.067 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.067 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:54.068 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:54.069 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:54.070 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:54.071 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.072 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:54.073 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:54.074 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.075 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:54.076 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:54.137 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:54.138 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:54.138 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:54.212 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rgw 2024-04-07T20:32:54.817 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:57 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:55.104 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:55.104 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:55.104 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:55.105 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:55.106 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.107 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.108 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:55.109 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.110 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.111 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:55.112 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.113 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.113 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.113 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.113 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:55.113 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.113 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.113 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.113 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:55.114 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:55.173 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:55.174 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:55.174 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:55.254 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-cephfs 2024-04-07T20:32:55.847 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:58 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:56.137 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.138 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.139 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.140 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.141 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:56.142 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.143 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.144 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.145 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:56.146 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.146 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.146 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.146 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:56.146 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:56.206 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:56.207 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:56.208 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:56.282 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install python3-rbd 2024-04-07T20:32:56.888 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:01:59 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.178 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.179 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.180 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:57.181 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.182 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.183 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.184 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.185 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.186 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.187 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:57.187 INFO:teuthology.orchestra.run.smithi191.stdout:Package python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T20:32:57.248 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:57.249 INFO:teuthology.orchestra.run.smithi191.stdout:Nothing to do. 2024-04-07T20:32:57.249 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:57.324 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-fuse 2024-04-07T20:32:57.915 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:00 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:32:58.209 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:32:58.209 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:32:58.209 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:32:58.209 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.209 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:32:58.209 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.209 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:32:58.210 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.210 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:32:58.210 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.210 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:32:58.210 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.210 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:32:58.211 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.211 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:32:58.211 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.211 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:32:58.211 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.211 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:32:58.212 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.212 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:32:58.212 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.212 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:32:58.212 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.212 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:32:58.212 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.212 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:32:58.213 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.213 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:32:58.213 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.213 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:32:58.213 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.213 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:32:58.213 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.214 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:32:58.214 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.214 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:32:58.214 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.214 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:32:58.214 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.214 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.215 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.216 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.217 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.218 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.219 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.220 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:32:58.278 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:32:58.278 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:58.278 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-04-07T20:32:58.278 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:58.278 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 85 k 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 85 k 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 231 k 2024-04-07T20:32:58.279 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:32:58.487 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-fuse-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 412 kB/s | 85 kB 00:00 2024-04-07T20:32:58.488 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:32:58.488 INFO:teuthology.orchestra.run.smithi191.stdout:Total 409 kB/s | 85 kB 00:00 2024-04-07T20:32:58.488 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:32:58.494 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:32:58.495 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:32:58.553 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:32:58.553 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:32:58.742 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:32:58.851 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:59.261 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:59.565 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:32:59.566 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:59.566 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:32:59.566 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:32:59.566 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:32:59.566 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:32:59.791 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-mirror 2024-04-07T20:33:00.428 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:03 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:33:00.723 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.724 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:33:00.725 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:33:00.726 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.727 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.728 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:33:00.729 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.730 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.731 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.732 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.733 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.734 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:33:00.734 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.734 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.734 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.734 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:33:00.793 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repo Size 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-mirror x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 3.1 M 2024-04-07T20:33:00.794 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 13 M 2024-04-07T20:33:00.795 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:33:01.382 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-mirror-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 5.3 MB/s | 3.1 MB 00:00 2024-04-07T20:33:01.382 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:33:01.382 INFO:teuthology.orchestra.run.smithi191.stdout:Total 5.2 MB/s | 3.1 MB 00:00 2024-04-07T20:33:01.383 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:33:01.391 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:33:01.392 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:33:01.469 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:33:01.469 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:33:01.897 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:33:01.949 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:33:01.975 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:33:01.975 INFO:teuthology.orchestra.run.smithi191.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T20:33:01.975 INFO:teuthology.orchestra.run.smithi191.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-07T20:33:01.975 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T20:33:01.975 INFO:teuthology.orchestra.run.smithi191.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T20:33:01.976 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:03.119 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:33:03.120 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:03.120 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:33:03.120 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:33:03.120 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:03.120 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:33:03.385 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum -y install rbd-nbd 2024-04-07T20:33:03.994 INFO:teuthology.orchestra.run.smithi191.stdout:Last metadata expiration check: 0:02:06 ago on Sun 07 Apr 2024 08:30:57 PM UTC. 2024-04-07T20:33:04.282 INFO:teuthology.orchestra.run.smithi191.stderr:Modular dependency problems: 2024-04-07T20:33:04.282 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:33:04.282 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 1: conflicting requests 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 2: conflicting requests 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 3: conflicting requests 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 4: conflicting requests 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 5: conflicting requests 2024-04-07T20:33:04.283 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.284 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 6: conflicting requests 2024-04-07T20:33:04.284 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.284 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 7: conflicting requests 2024-04-07T20:33:04.284 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.284 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 8: conflicting requests 2024-04-07T20:33:04.284 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.284 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 9: conflicting requests 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 10: conflicting requests 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 11: conflicting requests 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 12: conflicting requests 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 13: conflicting requests 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 14: conflicting requests 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 15: conflicting requests 2024-04-07T20:33:04.285 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 16: conflicting requests 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 17: conflicting requests 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 18: conflicting requests 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 19: conflicting requests 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 20: conflicting requests 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 21: conflicting requests 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.286 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 22: conflicting requests 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 23: conflicting requests 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 24: conflicting requests 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 25: conflicting requests 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 26: conflicting requests 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 27: conflicting requests 2024-04-07T20:33:04.287 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 28: conflicting requests 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 29: conflicting requests 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 30: conflicting requests 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 31: conflicting requests 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.288 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 32: conflicting requests 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 33: conflicting requests 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 34: conflicting requests 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 35: conflicting requests 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 36: conflicting requests 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 37: conflicting requests 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.289 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 39: conflicting requests 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T20:33:04.290 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T20:33:04.291 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.292 INFO:teuthology.orchestra.run.smithi191.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T20:33:04.293 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.293 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.293 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.293 INFO:teuthology.orchestra.run.smithi191.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T20:33:04.352 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-07T20:33:04.353 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:33:04.353 INFO:teuthology.orchestra.run.smithi191.stdout: Package Architecture Version Repository Size 2024-04-07T20:33:04.353 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:33:04.353 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-07T20:33:04.353 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-nbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 171 k 2024-04-07T20:33:04.353 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:04.353 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-07T20:33:04.354 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-07T20:33:04.354 INFO:teuthology.orchestra.run.smithi191.stdout:Install 1 Package 2024-04-07T20:33:04.354 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:04.354 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 171 k 2024-04-07T20:33:04.354 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 494 k 2024-04-07T20:33:04.354 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-07T20:33:04.701 INFO:teuthology.orchestra.run.smithi191.stdout:rbd-nbd-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 491 kB/s | 171 kB 00:00 2024-04-07T20:33:04.702 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:33:04.702 INFO:teuthology.orchestra.run.smithi191.stdout:Total 489 kB/s | 171 kB 00:00 2024-04-07T20:33:04.703 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-07T20:33:04.710 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-07T20:33:04.710 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-07T20:33:04.770 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-07T20:33:04.771 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-07T20:33:04.940 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-07T20:33:05.033 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:33:05.433 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:33:05.770 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T20:33:05.771 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:05.771 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-07T20:33:05.771 INFO:teuthology.orchestra.run.smithi191.stdout: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T20:33:05.771 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-07T20:33:05.771 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-07T20:33:06.007 DEBUG:teuthology.parallel:result is None 2024-04-07T20:33:06.008 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-07T20:33:06.226 DEBUG:teuthology.orchestra.run.smithi044:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-07T20:33:06.251 INFO:teuthology.orchestra.run.smithi044.stdout:19.0.0-2578.ge5c885fe.el9 2024-04-07T20:33:06.251 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2578.ge5c885fe.el9 2024-04-07T20:33:06.252 INFO:teuthology.task.install:The correct ceph version 19.0.0-2578.ge5c885fe is installed. 2024-04-07T20:33:06.253 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-07T20:33:06.477 DEBUG:teuthology.orchestra.run.smithi112:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-07T20:33:06.502 INFO:teuthology.orchestra.run.smithi112.stdout:19.0.0-2578.ge5c885fe.el9 2024-04-07T20:33:06.503 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2578.ge5c885fe.el9 2024-04-07T20:33:06.503 INFO:teuthology.task.install:The correct ceph version 19.0.0-2578.ge5c885fe is installed. 2024-04-07T20:33:06.505 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-07T20:33:06.653 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-07T20:33:06.675 INFO:teuthology.orchestra.run.smithi191.stdout:19.0.0-2578.ge5c885fe.el9 2024-04-07T20:33:06.675 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2578.ge5c885fe.el9 2024-04-07T20:33:06.675 INFO:teuthology.task.install:The correct ceph version 19.0.0-2578.ge5c885fe is installed. 2024-04-07T20:33:06.677 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-07T20:33:06.677 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-07T20:33:06.677 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-07T20:33:06.709 DEBUG:teuthology.orchestra.run.smithi112:> set -ex 2024-04-07T20:33:06.709 DEBUG:teuthology.orchestra.run.smithi112:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-07T20:33:06.743 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-04-07T20:33:06.743 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-07T20:33:06.772 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-07T20:33:06.772 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-07T20:33:06.772 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/usr/bin/daemon-helper 2024-04-07T20:33:06.803 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-07T20:33:06.873 DEBUG:teuthology.orchestra.run.smithi112:> set -ex 2024-04-07T20:33:06.873 DEBUG:teuthology.orchestra.run.smithi112:> sudo dd of=/usr/bin/daemon-helper 2024-04-07T20:33:06.904 DEBUG:teuthology.orchestra.run.smithi112:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-07T20:33:06.975 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-04-07T20:33:06.975 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/daemon-helper 2024-04-07T20:33:07.005 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-07T20:33:07.074 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-07T20:33:07.074 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-07T20:33:07.074 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-07T20:33:07.102 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-07T20:33:07.169 DEBUG:teuthology.orchestra.run.smithi112:> set -ex 2024-04-07T20:33:07.169 DEBUG:teuthology.orchestra.run.smithi112:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-07T20:33:07.196 DEBUG:teuthology.orchestra.run.smithi112:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-07T20:33:07.263 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-04-07T20:33:07.263 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-07T20:33:07.293 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-07T20:33:07.361 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-07T20:33:07.361 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-07T20:33:07.362 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/usr/bin/stdin-killer 2024-04-07T20:33:07.389 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-07T20:33:07.455 DEBUG:teuthology.orchestra.run.smithi112:> set -ex 2024-04-07T20:33:07.455 DEBUG:teuthology.orchestra.run.smithi112:> sudo dd of=/usr/bin/stdin-killer 2024-04-07T20:33:07.482 DEBUG:teuthology.orchestra.run.smithi112:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-07T20:33:07.550 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-04-07T20:33:07.550 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/usr/bin/stdin-killer 2024-04-07T20:33:07.580 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-07T20:33:07.648 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-07T20:33:07.753 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN'], 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d'} 2024-04-07T20:33:07.753 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T20:33:07.754 INFO:tasks.cephadm:Cluster fsid is 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:33:07.754 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-07T20:33:07.754 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.44', 'mon.b': '172.21.15.112', 'mon.c': '172.21.15.191'} 2024-04-07T20:33:07.754 INFO:tasks.cephadm:First mon is mon.a on smithi044 2024-04-07T20:33:07.754 INFO:tasks.cephadm:First mgr is a 2024-04-07T20:33:07.755 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-07T20:33:07.755 DEBUG:teuthology.orchestra.run.smithi044:> sudo hostname $(hostname -s) 2024-04-07T20:33:07.782 DEBUG:teuthology.orchestra.run.smithi112:> sudo hostname $(hostname -s) 2024-04-07T20:33:07.810 DEBUG:teuthology.orchestra.run.smithi191:> sudo hostname $(hostname -s) 2024-04-07T20:33:07.840 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-07T20:33:07.840 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-07T20:33:07.987 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-07T20:33:08.279 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-07T20:33:08.281 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/x86_64/flavors/default/cephadm 2024-04-07T20:33:08.281 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:33:08.903 INFO:teuthology.orchestra.run.smithi044.stdout:-rw-r--r--. 1 ubuntu ubuntu 781283 Apr 7 20:33 /home/ubuntu/cephtest/cephadm 2024-04-07T20:33:08.903 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:33:09.556 INFO:teuthology.orchestra.run.smithi112.stdout:-rw-r--r--. 1 ubuntu ubuntu 781283 Apr 7 20:33 /home/ubuntu/cephtest/cephadm 2024-04-07T20:33:09.556 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:33:10.035 INFO:teuthology.orchestra.run.smithi191.stdout:-rw-r--r--. 1 ubuntu ubuntu 781283 Apr 7 20:33 /home/ubuntu/cephtest/cephadm 2024-04-07T20:33:10.035 DEBUG:teuthology.orchestra.run.smithi044:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-07T20:33:10.054 DEBUG:teuthology.orchestra.run.smithi112:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-07T20:33:10.073 DEBUG:teuthology.orchestra.run.smithi191:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-07T20:33:10.100 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d on all hosts... 2024-04-07T20:33:10.101 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d pull 2024-04-07T20:33:10.103 DEBUG:teuthology.orchestra.run.smithi112:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d pull 2024-04-07T20:33:10.116 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d pull 2024-04-07T20:33:10.916 INFO:teuthology.orchestra.run.smithi044.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T20:33:10.958 INFO:teuthology.orchestra.run.smithi112.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T20:33:11.103 INFO:teuthology.orchestra.run.smithi191.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T20:33:44.280 INFO:teuthology.orchestra.run.smithi112.stdout:{ 2024-04-07T20:33:44.281 INFO:teuthology.orchestra.run.smithi112.stdout: "ceph_version": "ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev)", 2024-04-07T20:33:44.281 INFO:teuthology.orchestra.run.smithi112.stdout: "image_id": "fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce", 2024-04-07T20:33:44.281 INFO:teuthology.orchestra.run.smithi112.stdout: "repo_digests": [ 2024-04-07T20:33:44.281 INFO:teuthology.orchestra.run.smithi112.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:72637ed65c3eacb208a01eb8fcf572a65857060627154597bacdb87f092e5fe1" 2024-04-07T20:33:44.281 INFO:teuthology.orchestra.run.smithi112.stdout: ] 2024-04-07T20:33:44.281 INFO:teuthology.orchestra.run.smithi112.stdout:} 2024-04-07T20:33:51.856 INFO:teuthology.orchestra.run.smithi191.stdout:{ 2024-04-07T20:33:51.857 INFO:teuthology.orchestra.run.smithi191.stdout: "ceph_version": "ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev)", 2024-04-07T20:33:51.857 INFO:teuthology.orchestra.run.smithi191.stdout: "image_id": "fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce", 2024-04-07T20:33:51.857 INFO:teuthology.orchestra.run.smithi191.stdout: "repo_digests": [ 2024-04-07T20:33:51.857 INFO:teuthology.orchestra.run.smithi191.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:72637ed65c3eacb208a01eb8fcf572a65857060627154597bacdb87f092e5fe1" 2024-04-07T20:33:51.857 INFO:teuthology.orchestra.run.smithi191.stdout: ] 2024-04-07T20:33:51.857 INFO:teuthology.orchestra.run.smithi191.stdout:} 2024-04-07T20:33:58.428 INFO:teuthology.orchestra.run.smithi044.stdout:{ 2024-04-07T20:33:58.428 INFO:teuthology.orchestra.run.smithi044.stdout: "ceph_version": "ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev)", 2024-04-07T20:33:58.428 INFO:teuthology.orchestra.run.smithi044.stdout: "image_id": "fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce", 2024-04-07T20:33:58.428 INFO:teuthology.orchestra.run.smithi044.stdout: "repo_digests": [ 2024-04-07T20:33:58.428 INFO:teuthology.orchestra.run.smithi044.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:72637ed65c3eacb208a01eb8fcf572a65857060627154597bacdb87f092e5fe1" 2024-04-07T20:33:58.428 INFO:teuthology.orchestra.run.smithi044.stdout: ] 2024-04-07T20:33:58.428 INFO:teuthology.orchestra.run.smithi044.stdout:} 2024-04-07T20:33:58.453 DEBUG:teuthology.orchestra.run.smithi044:> sudo mkdir -p /etc/ceph 2024-04-07T20:33:58.501 DEBUG:teuthology.orchestra.run.smithi112:> sudo mkdir -p /etc/ceph 2024-04-07T20:33:58.536 DEBUG:teuthology.orchestra.run.smithi191:> sudo mkdir -p /etc/ceph 2024-04-07T20:33:58.572 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 777 /etc/ceph 2024-04-07T20:33:58.599 DEBUG:teuthology.orchestra.run.smithi112:> sudo chmod 777 /etc/ceph 2024-04-07T20:33:58.628 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod 777 /etc/ceph 2024-04-07T20:33:58.659 INFO:tasks.cephadm:Writing seed config... 2024-04-07T20:33:58.660 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-04-07T20:33:58.661 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-07T20:33:58.661 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-07T20:33:58.661 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-04-07T20:33:58.661 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-07T20:33:58.661 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-07T20:33:58.661 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-07T20:33:58.661 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-07T20:33:58.661 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-07T20:33:58.662 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-07T20:33:58.662 DEBUG:teuthology.orchestra.run.smithi044:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-07T20:33:58.677 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 = 0b019dde-f51e-11ee-b649-cb9ed24678a4 mon election default strategy = 3 [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 = False [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-07T20:33:58.677 DEBUG:teuthology.orchestra.run.smithi044:mon.a> sudo journalctl -f -n 0 -u ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service 2024-04-07T20:33:58.719 DEBUG:teuthology.orchestra.run.smithi044:mgr.a> sudo journalctl -f -n 0 -u ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mgr.a.service 2024-04-07T20:33:58.761 INFO:tasks.cephadm:Bootstrapping... 2024-04-07T20:33:58.762 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 0b019dde-f51e-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.44 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-07T20:33:58.958 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-07T20:33:58.959 INFO:teuthology.orchestra.run.smithi044.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d', '-v', 'bootstrap', '--fsid', '0b019dde-f51e-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.44', '--skip-admin-label'] 2024-04-07T20:33:58.959 INFO:teuthology.orchestra.run.smithi044.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-07T20:33:58.959 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying podman|docker is present... 2024-04-07T20:33:58.984 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-07T20:33:58.985 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying lvm2 is present... 2024-04-07T20:33:58.985 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying time synchronization is in place... 2024-04-07T20:33:58.992 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-07T20:33:58.992 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-07T20:33:58.997 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-07T20:33:58.998 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-04-07T20:33:59.004 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout enabled 2024-04-07T20:33:59.009 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout active 2024-04-07T20:33:59.009 INFO:teuthology.orchestra.run.smithi044.stdout:Unit chronyd.service is enabled and running 2024-04-07T20:33:59.010 INFO:teuthology.orchestra.run.smithi044.stdout:Repeating the final host check... 2024-04-07T20:33:59.032 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-07T20:33:59.033 INFO:teuthology.orchestra.run.smithi044.stdout:podman (/bin/podman) version 4.9.4 is present 2024-04-07T20:33:59.033 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl is present 2024-04-07T20:33:59.033 INFO:teuthology.orchestra.run.smithi044.stdout:lvcreate is present 2024-04-07T20:33:59.039 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-07T20:33:59.039 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-07T20:33:59.044 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-07T20:33:59.044 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-04-07T20:33:59.051 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout enabled 2024-04-07T20:33:59.057 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout active 2024-04-07T20:33:59.057 INFO:teuthology.orchestra.run.smithi044.stdout:Unit chronyd.service is enabled and running 2024-04-07T20:33:59.057 INFO:teuthology.orchestra.run.smithi044.stdout:Host looks OK 2024-04-07T20:33:59.057 INFO:teuthology.orchestra.run.smithi044.stdout:Cluster fsid: 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:33:59.057 INFO:teuthology.orchestra.run.smithi044.stdout:Acquiring lock 139637051904688 on /run/cephadm/0b019dde-f51e-11ee-b649-cb9ed24678a4.lock 2024-04-07T20:33:59.057 INFO:teuthology.orchestra.run.smithi044.stdout:Lock 139637051904688 acquired on /run/cephadm/0b019dde-f51e-11ee-b649-cb9ed24678a4.lock 2024-04-07T20:33:59.057 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying IP 172.21.15.44 port 3300 ... 2024-04-07T20:33:59.058 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying IP 172.21.15.44 port 6789 ... 2024-04-07T20:33:59.058 INFO:teuthology.orchestra.run.smithi044.stdout:Base mon IP(s) is [172.21.15.44:3300, 172.21.15.44:6789], mon addrv is [v2:172.21.15.44:3300,v1:172.21.15.44:6789] 2024-04-07T20:33:59.061 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.44 metric 100 2024-04-07T20:33:59.061 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.44 metric 100 2024-04-07T20:33:59.063 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-07T20:33:59.064 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 1024 pref medium 2024-04-07T20:33:59.064 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 100 pref medium 2024-04-07T20:33:59.066 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-07T20:33:59.066 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-07T20:33:59.066 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-07T20:33:59.066 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-07T20:33:59.066 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1572/64 scope link noprefixroute 2024-04-07T20:33:59.066 INFO:teuthology.orchestra.run.smithi044.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-07T20:33:59.067 INFO:teuthology.orchestra.run.smithi044.stdout:Mon IP `172.21.15.44` is in CIDR network `172.21.0.0/20` 2024-04-07T20:33:59.067 INFO:teuthology.orchestra.run.smithi044.stdout:Mon IP `172.21.15.44` is in CIDR network `172.21.0.0/20` 2024-04-07T20:33:59.067 INFO:teuthology.orchestra.run.smithi044.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-07T20:33:59.067 INFO:teuthology.orchestra.run.smithi044.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-07T20:33:59.068 INFO:teuthology.orchestra.run.smithi044.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T20:33:59.514 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce 2024-04-07T20:33:59.514 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T20:33:59.514 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Getting image source signatures 2024-04-07T20:33:59.514 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Copying blob sha256:782e6bcadc93519e2d08c343133a0b5af6209f666ea103bfa10c8730b0492c89 2024-04-07T20:33:59.515 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Copying blob sha256:11da15500eca1f826c328eb3265caa30b0a3730510e2a32023084d6fe9cee20c 2024-04-07T20:33:59.515 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Copying config sha256:fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce 2024-04-07T20:33:59.515 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stderr Writing manifest to image destination 2024-04-07T20:34:00.478 INFO:teuthology.orchestra.run.smithi044.stdout:ceph: stdout ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev) 2024-04-07T20:34:00.478 INFO:teuthology.orchestra.run.smithi044.stdout:Ceph version: ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev) 2024-04-07T20:34:00.478 INFO:teuthology.orchestra.run.smithi044.stdout:Extracting ceph user uid/gid from container image... 2024-04-07T20:34:01.484 INFO:teuthology.orchestra.run.smithi044.stdout:stat: stdout 167 167 2024-04-07T20:34:01.484 INFO:teuthology.orchestra.run.smithi044.stdout:Creating initial keys... 2024-04-07T20:34:02.472 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph-authtool: stdout AQA5AxNmCn76LxAAd8HR0w7tSJnTopKrCHmRCQ== 2024-04-07T20:34:03.397 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph-authtool: stdout AQA6AxNm/SNALRAAIpvmMX/HGNtV3zUiJbHEMQ== 2024-04-07T20:34:04.311 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph-authtool: stdout AQA7AxNmWeYoLRAA+bm06lPRaXJ6E9Lt+QvxmQ== 2024-04-07T20:34:04.312 INFO:teuthology.orchestra.run.smithi044.stdout:Creating initial monmap... 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout:monmaptool for a [v2:172.21.15.44:3300,v1:172.21.15.44:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout:setting min_mon_release = quincy 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: set fsid to 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-07T20:34:05.176 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:34:05.177 INFO:teuthology.orchestra.run.smithi044.stdout:Creating mon... 2024-04-07T20:34:06.065 INFO:teuthology.orchestra.run.smithi044.stdout:create mon.a on 2024-04-07T20:34:06.265 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-04-07T20:34:06.422 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-04-07T20:34:06.602 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target → /etc/systemd/system/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target. 2024-04-07T20:34:06.602 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target → /etc/systemd/system/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target. 2024-04-07T20:34:06.855 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a 2024-04-07T20:34:06.855 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service: Unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service not loaded. 2024-04-07T20:34:07.018 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target.wants/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service → /etc/systemd/system/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@.service. 2024-04-07T20:34:07.555 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T20:34:07.555 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout disabled 2024-04-07T20:34:07.562 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T20:34:07.562 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-04-07T20:34:07.562 INFO:teuthology.orchestra.run.smithi044.stdout:firewalld.service is not enabled 2024-04-07T20:34:07.562 INFO:teuthology.orchestra.run.smithi044.stdout:Not possible to enable service . firewalld.service is not available 2024-04-07T20:34:07.563 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mon to start... 2024-04-07T20:34:07.563 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mon... 2024-04-07T20:34:08.587 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout cluster: 2024-04-07T20:34:08.587 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout id: 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:08.587 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-07T20:34:08.587 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:08.587 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout services: 2024-04-07T20:34:08.587 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.544442s) 2024-04-07T20:34:08.587 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout data: 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout pgs: 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:mon is available 2024-04-07T20:34:08.588 INFO:teuthology.orchestra.run.smithi044.stdout:Assimilating anything we can from ceph.conf... 2024-04-07T20:34:09.501 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:09.501 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [global] 2024-04-07T20:34:09.501 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout fsid = 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:09.501 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.44:3300,v1:172.21.15.44:6789] 2024-04-07T20:34:09.501 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-07T20:34:09.501 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-07T20:34:09.501 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [osd] 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-07T20:34:09.502 INFO:teuthology.orchestra.run.smithi044.stdout:Generating new minimal ceph.conf... 2024-04-07T20:34:10.508 INFO:teuthology.orchestra.run.smithi044.stdout:Restarting the monitor... 2024-04-07T20:34:10.783 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:10 smithi044 ceph-mon[29609]: from='client.? 172.21.15.44:0/418222703' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-07T20:34:10.784 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:10 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a[29605]: 2024-04-07T20:34:10.783+0000 7f341da36700 -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-07T20:34:10.784 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:10 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a[29605]: 2024-04-07T20:34:10.783+0000 7f341da36700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-07T20:34:11.212 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 podman[29855]: 2024-04-07 20:34:11.029410313 +0000 UTC m=+0.351990730 container died 641d25c3063920c9a1a93744e8dc898e11ed3f7878f423e09ead85898ece63c9 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, GIT_CLEAN=True, RELEASE=main-e5c885f, org.label-schema.build-date=20240326, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2) 2024-04-07T20:34:11.541 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 podman[29855]: 2024-04-07 20:34:11.341853517 +0000 UTC m=+0.664433933 container cleanup 641d25c3063920c9a1a93744e8dc898e11ed3f7878f423e09ead85898ece63c9 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, 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_CLEAN=True, ceph=True, io.buildah.version=1.33.5) 2024-04-07T20:34:11.541 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 bash[29855]: ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a 2024-04-07T20:34:11.962 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 podman[29870]: 2024-04-07 20:34:11.542887087 +0000 UTC m=+0.516820905 container remove 641d25c3063920c9a1a93744e8dc898e11ed3f7878f423e09ead85898ece63c9 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, org.label-schema.vendor=CentOS, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-e5c885f, ceph=True, org.label-schema.build-date=20240326) 2024-04-07T20:34:11.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 systemd[1]: ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service: Deactivated successfully. 2024-04-07T20:34:11.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 systemd[1]: Stopped Ceph mon.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4. 2024-04-07T20:34:11.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 systemd[1]: Starting Ceph mon.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4... 2024-04-07T20:34:12.462 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 podman[29961]: 2024-04-07 20:34:11.978412243 +0000 UTC m=+0.103575973 container create bc844cc1b0bff336016a276b6f019f317024ff4d3d50bb4e4bf75143609d85d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, RELEASE=main-e5c885f, org.label-schema.license=GPLv2, org.label-schema.build-date=20240326, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-07T20:34:12.463 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:11 smithi044 podman[29961]: 2024-04-07 20:34:11.892486553 +0000 UTC m=+0.017650264 image pull fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T20:34:14.464 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 podman[29961]: 2024-04-07 20:34:14.035837271 +0000 UTC m=+2.161001000 container init bc844cc1b0bff336016a276b6f019f317024ff4d3d50bb4e4bf75143609d85d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_CLEAN=True, RELEASE=main-e5c885f, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240326) 2024-04-07T20:34:14.464 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 podman[29961]: 2024-04-07 20:34:14.040113437 +0000 UTC m=+2.165277135 container start bc844cc1b0bff336016a276b6f019f317024ff4d3d50bb4e4bf75143609d85d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-e5c885f, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240326, GIT_CLEAN=True, ceph=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux ) 2024-04-07T20:34:14.464 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: set uid:gid to 167:167 (ceph:ceph) 2024-04-07T20:34:14.464 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev), process ceph-mon, pid 2 2024-04-07T20:34:14.464 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: pidfile_write: ignore empty --pid-file 2024-04-07T20:34:14.464 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: load: jerasure load: lrc 2024-04-07T20:34:14.464 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: RocksDB version: 7.9.2 2024-04-07T20:34:14.464 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Git sha 0 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Compile date 2024-04-01 20:25:56 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: DB SUMMARY 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: DB Session ID: NE8K1HSCHAFDBAURVGGC 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: CURRENT file: CURRENT 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: IDENTITY file: IDENTITY 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 89099 ; 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.error_if_exists: 0 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.create_if_missing: 0 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.paranoid_checks: 1 2024-04-07T20:34:14.465 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.flush_verify_memtable_count: 1 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.env: 0x55f5287d2c60 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.fs: PosixFileSystem 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.info_log: 0x55f52abdfae0 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_file_opening_threads: 16 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.statistics: (nil) 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.use_fsync: 0 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_log_file_size: 0 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-07T20:34:14.466 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.log_file_time_to_roll: 0 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.keep_log_file_num: 1000 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.recycle_log_file_num: 0 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.allow_fallocate: 1 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.allow_mmap_reads: 0 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.allow_mmap_writes: 0 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.use_direct_reads: 0 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.create_missing_column_families: 0 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.db_log_dir: 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.wal_dir: 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.table_cache_numshardbits: 6 2024-04-07T20:34:14.467 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.WAL_ttl_seconds: 0 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.WAL_size_limit_MB: 0 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.is_fd_close_on_exec: 1 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.advise_random_on_open: 1 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.db_write_buffer_size: 0 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.write_buffer_manager: 0x55f52abb01e0 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.use_adaptive_mutex: 0 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.rate_limiter: (nil) 2024-04-07T20:34:14.468 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.wal_recovery_mode: 2 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.enable_thread_tracking: 0 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.enable_pipelined_write: 0 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.unordered_write: 0 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.row_cache: None 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.wal_filter: None 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.allow_ingest_behind: 0 2024-04-07T20:34:14.469 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.two_write_queues: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.manual_wal_flush: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.wal_compression: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.atomic_flush: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.persist_stats_to_disk: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.write_dbid_to_manifest: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.log_readahead_size: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.best_efforts_recovery: 0 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-07T20:34:14.470 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.allow_data_in_errors: 0 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.db_host_id: __hostname__ 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.enforce_single_del_contracts: true 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_background_jobs: 2 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_background_compactions: -1 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_subcompactions: 1 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.delayed_write_rate : 16777216 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_total_wal_size: 0 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.stats_dump_period_sec: 600 2024-04-07T20:34:14.471 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.stats_persist_period_sec: 600 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_open_files: -1 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bytes_per_sync: 0 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_readahead_size: 0 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_background_flushes: -1 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Compression algorithms supported: 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: kZSTD supported: 0 2024-04-07T20:34:14.472 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: kXpressCompression supported: 0 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: kLZ4HCCompression supported: 1 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: kZlibCompression supported: 1 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: kSnappyCompression supported: 1 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: kLZ4Compression supported: 1 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: kBZip2Compression supported: 0 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.merge_operator: 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_filter: None 2024-04-07T20:34:14.473 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_filter_factory: None 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.sst_partitioner_factory: None 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55f52abdfcc0) 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout: cache_index_and_filter_blocks: 1 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout: pin_top_level_index_and_filter: 1 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout: index_type: 0 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout: data_block_index_type: 0 2024-04-07T20:34:14.474 INFO:journalctl@ceph.mon.a.smithi044.stdout: index_shortening: 1 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: checksum: 4 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: no_block_cache: 0 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_cache: 0x55f52abe3090 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_cache_name: BinnedLRUCache 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_cache_options: 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: capacity : 536870912 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: num_shard_bits : 4 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: strict_capacity_limit : 0 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: high_pri_pool_ratio: 0.000 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_cache_compressed: (nil) 2024-04-07T20:34:14.475 INFO:journalctl@ceph.mon.a.smithi044.stdout: persistent_cache: (nil) 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_size: 4096 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_size_deviation: 10 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_restart_interval: 16 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: index_block_restart_interval: 1 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: metadata_block_size: 4096 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: partition_filters: 0 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: use_delta_encoding: 1 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: filter_policy: bloomfilter 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: whole_key_filtering: 1 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: verify_compression: 0 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: read_amp_bytes_per_bit: 0 2024-04-07T20:34:14.476 INFO:journalctl@ceph.mon.a.smithi044.stdout: format_version: 5 2024-04-07T20:34:14.477 INFO:journalctl@ceph.mon.a.smithi044.stdout: enable_index_compression: 1 2024-04-07T20:34:14.477 INFO:journalctl@ceph.mon.a.smithi044.stdout: block_align: 0 2024-04-07T20:34:14.477 INFO:journalctl@ceph.mon.a.smithi044.stdout: max_auto_readahead_size: 262144 2024-04-07T20:34:14.477 INFO:journalctl@ceph.mon.a.smithi044.stdout: prepopulate_block_cache: 0 2024-04-07T20:34:14.477 INFO:journalctl@ceph.mon.a.smithi044.stdout: initial_auto_readahead_size: 8192 2024-04-07T20:34:14.477 INFO:journalctl@ceph.mon.a.smithi044.stdout: num_file_reads_for_auto_readahead: 2 2024-04-07T20:34:14.478 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.write_buffer_size: 33554432 2024-04-07T20:34:14.478 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_write_buffer_number: 2 2024-04-07T20:34:14.478 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression: NoCompression 2024-04-07T20:34:14.478 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression: Disabled 2024-04-07T20:34:14.482 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.prefix_extractor: nullptr 2024-04-07T20:34:14.482 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-07T20:34:14.482 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.num_levels: 7 2024-04-07T20:34:14.482 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-07T20:34:14.482 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-07T20:34:14.482 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-07T20:34:14.482 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-07T20:34:14.482 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.level: 32767 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.strategy: 0 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-07T20:34:14.483 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.enabled: false 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.target_file_size_base: 67108864 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-07T20:34:14.484 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.arena_block_size: 1048576 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-07T20:34:14.485 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.disable_auto_compactions: 0 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-07T20:34:14.486 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.inplace_update_support: 0 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.bloom_locality: 0 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.max_successive_merges: 0 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.paranoid_file_checks: 0 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.force_consistency_checks: 1 2024-04-07T20:34:14.487 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.report_bg_io_stats: 0 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.ttl: 2592000 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.enable_blob_files: false 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.min_blob_size: 0 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.blob_file_size: 268435456 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-07T20:34:14.488 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.blob_file_starting_level: 0 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: 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-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 2627e007-7335-4d3f-8e53-02e25cc35d42 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712522054072069, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712522054073039, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85716, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83863, "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": 78070, "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": 1712522054, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "2627e007-7335-4d3f-8e53-02e25cc35d42", "db_session_id": "NE8K1HSCHAFDBAURVGGC", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712522054073133, "job": 1, "event": "recovery_finished"} 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: 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-07T20:34:14.489 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55f52acd2000 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: DB pointer 0x55f52acbc000 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout: ** DB Stats ** 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.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-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.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-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-07T20:34:14.490 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-04-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.stdout: ** Compaction Stats [default] ** 2024-04-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.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-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.stdout: L0 2/0 85.57 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 126.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.stdout: Sum 2/0 85.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 126.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.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 126.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-04-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.stdout: ** Compaction Stats [default] ** 2024-04-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.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-07T20:34:14.491 INFO:journalctl@ceph.mon.a.smithi044.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.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 126.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-07T20:34:14.492 INFO:journalctl@ceph.mon.a.smithi044.stdout: Cumulative compaction: 0.00 GB write, 25.25 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout: Interval compaction: 0.00 GB write, 25.25 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.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-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout: Block cache BinnedLRUCache@0x55f52abe3090#2 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.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-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: starting mon.a rank 0 at public addrs [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] at bind addrs [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a@-1(???) e1 preinit fsid 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a@-1(???).mds e1 new map 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a@-1(???).mds e1 print_map 2024-04-07T20:34:14.493 INFO:journalctl@ceph.mon.a.smithi044.stdout: e1 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.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-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout: legacy client fscid: -1 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout: 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout: No filesystems configured 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-07T20:34:14.494 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: monmap epoch 1 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: fsid 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: last_changed 2024-04-07T20:34:04.628640+0000 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: created 2024-04-07T20:34:04.628640+0000 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: min_mon_release 19 (squid) 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: election_strategy: 1 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: 0: [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] mon.a 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: fsmap 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: osdmap e1: 0 total, 0 up, 0 in 2024-04-07T20:34:14.495 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 ceph-mon[29980]: mgrmap e1: no daemons active 2024-04-07T20:34:14.963 INFO:teuthology.orchestra.run.smithi044.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-07T20:34:15.212 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 bash[29961]: bc844cc1b0bff336016a276b6f019f317024ff4d3d50bb4e4bf75143609d85d2 2024-04-07T20:34:15.213 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:14 smithi044 systemd[1]: Started Ceph mon.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4. 2024-04-07T20:34:18.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:18 smithi044 ceph-mon[29980]: from='client.? 172.21.15.44:0/4035284357' entity='client.admin' 2024-04-07T20:34:21.973 INFO:teuthology.orchestra.run.smithi044.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-07T20:34:21.994 INFO:teuthology.orchestra.run.smithi044.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-07T20:34:21.995 INFO:teuthology.orchestra.run.smithi044.stdout:Creating mgr... 2024-04-07T20:34:21.995 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-07T20:34:21.995 INFO:teuthology.orchestra.run.smithi044.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-07T20:34:22.248 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mgr.a 2024-04-07T20:34:22.248 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mgr.a.service: Unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mgr.a.service not loaded. 2024-04-07T20:34:22.391 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target.wants/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mgr.a.service → /etc/systemd/system/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@.service. 2024-04-07T20:34:22.621 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 systemd[1]: Starting Ceph mgr.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4... 2024-04-07T20:34:22.882 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 podman[30198]: 2024-04-07 20:34:22.62289445 +0000 UTC m=+0.113099224 container create 8cd1e95c5dd50caa42e95b0774bd12f77cda937af0ac69c3c30b31d3f2fa4274 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a, ceph=True, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-e5c885f, GIT_BRANCH=HEAD, org.label-schema.build-date=20240326, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.license=GPLv2) 2024-04-07T20:34:22.883 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 podman[30198]: 2024-04-07 20:34:22.526332173 +0000 UTC m=+0.016536948 image pull fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T20:34:22.883 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 podman[30198]: 2024-04-07 20:34:22.825413859 +0000 UTC m=+0.315618636 container init 8cd1e95c5dd50caa42e95b0774bd12f77cda937af0ac69c3c30b31d3f2fa4274 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, ceph=True, maintainer=Guillaume Abrioux , GIT_CLEAN=True, RELEASE=main-e5c885f, org.label-schema.build-date=20240326) 2024-04-07T20:34:22.883 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 podman[30198]: 2024-04-07 20:34:22.827784261 +0000 UTC m=+0.317989036 container start 8cd1e95c5dd50caa42e95b0774bd12f77cda937af0ac69c3c30b31d3f2fa4274 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_CLEAN=True, ceph=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, RELEASE=main-e5c885f, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240326, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.schema-version=1.0) 2024-04-07T20:34:22.883 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 bash[30198]: 8cd1e95c5dd50caa42e95b0774bd12f77cda937af0ac69c3c30b31d3f2fa4274 2024-04-07T20:34:22.895 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T20:34:22.895 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout disabled 2024-04-07T20:34:22.903 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T20:34:22.904 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-04-07T20:34:22.904 INFO:teuthology.orchestra.run.smithi044.stdout:firewalld.service is not enabled 2024-04-07T20:34:22.904 INFO:teuthology.orchestra.run.smithi044.stdout:Not possible to enable service . firewalld.service is not available 2024-04-07T20:34:22.913 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T20:34:22.914 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout disabled 2024-04-07T20:34:22.922 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T20:34:22.922 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stdout inactive 2024-04-07T20:34:22.922 INFO:teuthology.orchestra.run.smithi044.stdout:firewalld.service is not enabled 2024-04-07T20:34:22.922 INFO:teuthology.orchestra.run.smithi044.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-04-07T20:34:22.922 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mgr to start... 2024-04-07T20:34:22.922 INFO:teuthology.orchestra.run.smithi044.stdout:Waiting for mgr... 2024-04-07T20:34:23.132 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 systemd[1]: Started Ceph mgr.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4. 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.886+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.886+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.891+0000 7fb657c65200 -1 mgr[py] Class not found in module 'restful' 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.891+0000 7fb657c65200 -1 mgr[py] Error loading module 'restful': (22) Invalid argument 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.908+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.908+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.914+0000 7fb657c65200 -1 mgr[py] Class not found in module 'mds_autoscaler' 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.914+0000 7fb657c65200 -1 mgr[py] Error loading module 'mds_autoscaler': (22) Invalid argument 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.932+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.932+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.133 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.936+0000 7fb657c65200 -1 mgr[py] Class not found in module 'osd_perf_query' 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.936+0000 7fb657c65200 -1 mgr[py] Error loading module 'osd_perf_query': (22) Invalid argument 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.953+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.953+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.957+0000 7fb657c65200 -1 mgr[py] Class not found in module 'snap_schedule' 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.957+0000 7fb657c65200 -1 mgr[py] Error loading module 'snap_schedule': (22) Invalid argument 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.972+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.972+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.134 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.976+0000 7fb657c65200 -1 mgr[py] Class not found in module 'dashboard' 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.976+0000 7fb657c65200 -1 mgr[py] Error loading module 'dashboard': (22) Invalid argument 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.990+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.990+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.995+0000 7fb657c65200 -1 mgr[py] Class not found in module 'zabbix' 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:22 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:22.995+0000 7fb657c65200 -1 mgr[py] Error loading module 'zabbix': (22) Invalid argument 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.009+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.009+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.013+0000 7fb657c65200 -1 mgr[py] Class not found in module 'balancer' 2024-04-07T20:34:23.135 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.013+0000 7fb657c65200 -1 mgr[py] Error loading module 'balancer': (22) Invalid argument 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.028+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.028+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.032+0000 7fb657c65200 -1 mgr[py] Class not found in module 'influx' 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.032+0000 7fb657c65200 -1 mgr[py] Error loading module 'influx': (22) Invalid argument 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.057+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.057+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.061+0000 7fb657c65200 -1 mgr[py] Class not found in module 'alerts' 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.061+0000 7fb657c65200 -1 mgr[py] Error loading module 'alerts': (22) Invalid argument 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.076+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.136 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.076+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.080+0000 7fb657c65200 -1 mgr[py] Class not found in module 'iostat' 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.080+0000 7fb657c65200 -1 mgr[py] Error loading module 'iostat': (22) Invalid argument 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.095+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.095+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.099+0000 7fb657c65200 -1 mgr[py] Class not found in module 'rgw' 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.099+0000 7fb657c65200 -1 mgr[py] Error loading module 'rgw': (22) Invalid argument 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.113+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.113+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.117+0000 7fb657c65200 -1 mgr[py] Class not found in module 'rbd_support' 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.117+0000 7fb657c65200 -1 mgr[py] Error loading module 'rbd_support': (22) Invalid argument 2024-04-07T20:34:23.137 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.132+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.387 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.132+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.387 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.387 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.136+0000 7fb657c65200 -1 mgr[py] Class not found in module 'progress' 2024-04-07T20:34:23.387 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.136+0000 7fb657c65200 -1 mgr[py] Error loading module 'progress': (22) Invalid argument 2024-04-07T20:34:23.387 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.151+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.387 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.151+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.155+0000 7fb657c65200 -1 mgr[py] Class not found in module 'pg_autoscaler' 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.155+0000 7fb657c65200 -1 mgr[py] Error loading module 'pg_autoscaler': (22) Invalid argument 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.172+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.172+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.177+0000 7fb657c65200 -1 mgr[py] Class not found in module 'devicehealth' 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.177+0000 7fb657c65200 -1 mgr[py] Error loading module 'devicehealth': (22) Invalid argument 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.194+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.194+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.198+0000 7fb657c65200 -1 mgr[py] Class not found in module 'k8sevents' 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.198+0000 7fb657c65200 -1 mgr[py] Error loading module 'k8sevents': (22) Invalid argument 2024-04-07T20:34:23.388 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.213+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.389 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.213+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.389 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.389 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.217+0000 7fb657c65200 -1 mgr[py] Class not found in module 'rook' 2024-04-07T20:34:23.389 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.217+0000 7fb657c65200 -1 mgr[py] Error loading module 'rook': (22) Invalid argument 2024-04-07T20:34:23.389 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.231+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.389 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.231+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.389 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.389 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.235+0000 7fb657c65200 -1 mgr[py] Class not found in module 'diskprediction_local' 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.235+0000 7fb657c65200 -1 mgr[py] Error loading module 'diskprediction_local': (22) Invalid argument 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.272+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.272+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.276+0000 7fb657c65200 -1 mgr[py] Class not found in module 'mirroring' 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.276+0000 7fb657c65200 -1 mgr[py] Error loading module 'mirroring': (22) Invalid argument 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.291+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.291+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.295+0000 7fb657c65200 -1 mgr[py] Class not found in module 'selftest' 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.295+0000 7fb657c65200 -1 mgr[py] Error loading module 'selftest': (22) Invalid argument 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.309+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.390 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.309+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.313+0000 7fb657c65200 -1 mgr[py] Class not found in module 'telegraf' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.313+0000 7fb657c65200 -1 mgr[py] Error loading module 'telegraf': (22) Invalid argument 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.328+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.328+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.333+0000 7fb657c65200 -1 mgr[py] Class not found in module 'test_orchestrator' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.333+0000 7fb657c65200 -1 mgr[py] Error loading module 'test_orchestrator': (22) Invalid argument 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.348+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.348+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.352+0000 7fb657c65200 -1 mgr[py] Class not found in module 'localpool' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.352+0000 7fb657c65200 -1 mgr[py] Error loading module 'localpool': (22) Invalid argument 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.366+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.366+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.391 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.392 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.371+0000 7fb657c65200 -1 mgr[py] Class not found in module 'crash' 2024-04-07T20:34:23.392 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.371+0000 7fb657c65200 -1 mgr[py] Error loading module 'crash': (22) Invalid argument 2024-04-07T20:34:23.392 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.386+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.712 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-mon[29980]: from='client.? 172.21.15.44:0/1705205332' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.386+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.390+0000 7fb657c65200 -1 mgr[py] Class not found in module 'insights' 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.390+0000 7fb657c65200 -1 mgr[py] Error loading module 'insights': (22) Invalid argument 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.406+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.406+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.410+0000 7fb657c65200 -1 mgr[py] Class not found in module 'orchestrator' 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.410+0000 7fb657c65200 -1 mgr[py] Error loading module 'orchestrator': (22) Invalid argument 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.426+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.426+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.713 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.430+0000 7fb657c65200 -1 mgr[py] Class not found in module 'osd_support' 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.430+0000 7fb657c65200 -1 mgr[py] Error loading module 'osd_support': (22) Invalid argument 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.445+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.445+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.449+0000 7fb657c65200 -1 mgr[py] Class not found in module 'volumes' 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.449+0000 7fb657c65200 -1 mgr[py] Error loading module 'volumes': (22) Invalid argument 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.499+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.499+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.504+0000 7fb657c65200 -1 mgr[py] Class not found in module 'stats' 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.504+0000 7fb657c65200 -1 mgr[py] Error loading module 'stats': (22) Invalid argument 2024-04-07T20:34:23.714 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.520+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.520+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.524+0000 7fb657c65200 -1 mgr[py] Class not found in module 'cephadm' 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.524+0000 7fb657c65200 -1 mgr[py] Error loading module 'cephadm': (22) Invalid argument 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.539+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.540+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.544+0000 7fb657c65200 -1 mgr[py] Class not found in module 'telemetry' 2024-04-07T20:34:23.715 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.544+0000 7fb657c65200 -1 mgr[py] Error loading module 'telemetry': (22) Invalid argument 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.559+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.559+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.563+0000 7fb657c65200 -1 mgr[py] Class not found in module 'prometheus' 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.563+0000 7fb657c65200 -1 mgr[py] Error loading module 'prometheus': (22) Invalid argument 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.577+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.577+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.582+0000 7fb657c65200 -1 mgr[py] Class not found in module 'status' 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.582+0000 7fb657c65200 -1 mgr[py] Error loading module 'status': (22) Invalid argument 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.596+0000 7fb657c65200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.596+0000 7fb657c65200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.716 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.600+0000 7fb657c65200 -1 mgr[py] Class not found in module 'nfs' 2024-04-07T20:34:23.717 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.600+0000 7fb657c65200 -1 mgr[py] Error loading module 'nfs': (22) Invalid argument 2024-04-07T20:34:23.717 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:23 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:23.600+0000 7fb657c65200 -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-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsid": "0b019dde-f51e-11ee-b649-cb9ed24678a4", 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "health": { 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 0 2024-04-07T20:34:24.020 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "a" 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-07T20:34:24.021 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-07T20:34:24.022 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-07T20:34:24.022 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-07T20:34:24.025 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-07T20:34:24.026 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "restful" 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modified": "2024-04-07T20:34:07.532332+0000", 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:24.027 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-07T20:34:24.028 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-04-07T20:34:24.028 INFO:teuthology.orchestra.run.smithi044.stdout:mgr not available, waiting (1/15)... 2024-04-07T20:34:24.962 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:24 smithi044 ceph-mon[29980]: Activating manager daemon a 2024-04-07T20:34:24.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:24 smithi044 ceph-mon[29980]: mgrmap e2: a(active, starting, since 0.00168953s) 2024-04-07T20:34:24.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:24 smithi044 ceph-mon[29980]: from='mgr.14100 172.21.15.44:0/3615059448' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-07T20:34:24.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:24 smithi044 ceph-mon[29980]: from='mgr.14100 172.21.15.44:0/3615059448' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-07T20:34:24.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:24 smithi044 ceph-mon[29980]: from='mgr.14100 172.21.15.44:0/3615059448' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-07T20:34:24.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:24 smithi044 ceph-mon[29980]: from='mgr.14100 172.21.15.44:0/3615059448' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-07T20:34:24.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:24 smithi044 ceph-mon[29980]: from='mgr.14100 172.21.15.44:0/3615059448' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-07T20:34:24.963 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:24 smithi044 ceph-mon[29980]: Manager daemon a is now available 2024-04-07T20:34:25.962 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:25 smithi044 ceph-mon[29980]: mgrmap e3: a(active, since 1.00332s) 2024-04-07T20:34:26.962 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:26 smithi044 ceph-mon[29980]: from='client.? 172.21.15.44:0/1580315147' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-07T20:34:29.798 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:29.798 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout { 2024-04-07T20:34:29.798 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsid": "0b019dde-f51e-11ee-b649-cb9ed24678a4", 2024-04-07T20:34:29.798 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "health": { 2024-04-07T20:34:29.798 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-07T20:34:29.798 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-07T20:34:29.798 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 0 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "a" 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "quorum_age": 12, 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:29.799 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-07T20:34:29.800 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "restful" 2024-04-07T20:34:29.801 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout ], 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "modified": "2024-04-07T20:34:07.532332+0000", 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout }, 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout } 2024-04-07T20:34:29.802 INFO:teuthology.orchestra.run.smithi044.stdout:mgr is available 2024-04-07T20:34:30.462 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:30 smithi044 ceph-mon[29980]: from='client.? 172.21.15.44:0/1015038717' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-07T20:34:30.848 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [global] 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout fsid = 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout [osd] 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-07T20:34:30.849 INFO:teuthology.orchestra.run.smithi044.stdout:Enabling cephadm module... 2024-04-07T20:34:31.712 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:31 smithi044 ceph-mon[29980]: from='client.? 172.21.15.44:0/4115557259' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-07T20:34:31.929 INFO:teuthology.orchestra.run.smithi044.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=smithi044 -v /var/log/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmp68gprm5_:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmp6z726sy2:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d mgr module enable cephadm 2024-04-07T20:34:31.972 INFO:teuthology.orchestra.run.smithi044.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-07T20:34:31.973 INFO:teuthology.orchestra.run.smithi044.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=smithi044 -v /var/log/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmp68gprm5_:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmp6z726sy2:/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-07T20:34:31.973 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:34:31.973 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: *************** 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: Cephadm hit an issue during cluster installation. Current cluster files will be deleted automatically. 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: To disable this behaviour you can pass the --no-cleanup-on-failure flag. In case of any previous 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: broken installation, users must use the following command to completely delete the broken cluster: 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: > cephadm rm-cluster --force --zap-osds --fsid 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:34:31.974 INFO:teuthology.orchestra.run.smithi044.stdout: for more information please refer to https://docs.ceph.com/en/latest/cephadm/operations/#purging-a-cluster 2024-04-07T20:34:31.975 INFO:teuthology.orchestra.run.smithi044.stdout: *************** 2024-04-07T20:34:31.975 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:34:31.975 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-07T20:34:31.975 INFO:teuthology.orchestra.run.smithi044.stdout:Deleting cluster with fsid: 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:31.975 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout bc844cc1b0bf,19.48MB / 33.27GB 2024-04-07T20:34:31.975 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout 8cd1e95c5dd5,100MB / 33.27GB 2024-04-07T20:34:31.987 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout bc844cc1b0bf,0.62% 2024-04-07T20:34:31.987 INFO:teuthology.orchestra.run.smithi044.stdout:/bin/podman: stdout 8cd1e95c5dd5,8.72% 2024-04-07T20:34:32.212 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:32 smithi044 systemd[1]: Stopping Ceph mon.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4... 2024-04-07T20:34:32.580 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:32 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a[29976]: 2024-04-07T20:34:32.264+0000 7effa39a2700 -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-07T20:34:32.580 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:32 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a[29976]: 2024-04-07T20:34:32.264+0000 7effa39a2700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-07T20:34:32.580 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:32 smithi044 podman[30560]: 2024-04-07 20:34:32.295740638 +0000 UTC m=+0.141778242 container died bc844cc1b0bff336016a276b6f019f317024ff4d3d50bb4e4bf75143609d85d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-e5c885f, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240326, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-07T20:34:32.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:32 smithi044 podman[30560]: 2024-04-07 20:34:32.672759585 +0000 UTC m=+0.518797184 container cleanup bc844cc1b0bff336016a276b6f019f317024ff4d3d50bb4e4bf75143609d85d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, RELEASE=main-e5c885f, maintainer=Guillaume Abrioux , GIT_CLEAN=True, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240326) 2024-04-07T20:34:32.914 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:32 smithi044 bash[30560]: ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a 2024-04-07T20:34:33.210 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target.wants/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service". 2024-04-07T20:34:33.212 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:32 smithi044 podman[30574]: 2024-04-07 20:34:32.915764275 +0000 UTC m=+0.618932406 container remove bc844cc1b0bff336016a276b6f019f317024ff4d3d50bb4e4bf75143609d85d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mon-a, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240326, ceph=True, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, RELEASE=main-e5c885f) 2024-04-07T20:34:33.212 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:33 smithi044 systemd[1]: ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service: Deactivated successfully. 2024-04-07T20:34:33.212 INFO:journalctl@ceph.mon.a.smithi044.stdout:Apr 07 20:34:33 smithi044 systemd[1]: Stopped Ceph mon.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4. 2024-04-07T20:34:33.218 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 5 from systemctl stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mon.a.service 2024-04-07T20:34:33.218 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mon.a.service: Unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mon.a.service not loaded. 2024-04-07T20:34:33.224 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mon.a.service 2024-04-07T20:34:33.224 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mon.a.service: Unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mon.a.service not loaded. 2024-04-07T20:34:33.229 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl disable ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mon.a.service 2024-04-07T20:34:33.229 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mon.a.service does not exist. 2024-04-07T20:34:33.502 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:33 smithi044 systemd[1]: Stopping Ceph mgr.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4... 2024-04-07T20:34:33.502 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:33 smithi044 ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a[30213]: 2024-04-07T20:34:33.493+0000 7fb64c253700 -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-07T20:34:33.792 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:33 smithi044 podman[30686]: 2024-04-07 20:34:33.504351201 +0000 UTC m=+0.113627067 container died 8cd1e95c5dd50caa42e95b0774bd12f77cda937af0ac69c3c30b31d3f2fa4274 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240326, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , RELEASE=main-e5c885f, GIT_CLEAN=True, ceph=True, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5) 2024-04-07T20:34:33.792 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:33 smithi044 podman[30686]: 2024-04-07 20:34:33.793868759 +0000 UTC m=+0.403144624 container cleanup 8cd1e95c5dd50caa42e95b0774bd12f77cda937af0ac69c3c30b31d3f2fa4274 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , RELEASE=main-e5c885f, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240326, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-07T20:34:34.138 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:33 smithi044 bash[30686]: ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a 2024-04-07T20:34:34.138 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:34 smithi044 podman[30700]: 2024-04-07 20:34:34.028179707 +0000 UTC m=+0.523139979 container remove 8cd1e95c5dd50caa42e95b0774bd12f77cda937af0ac69c3c30b31d3f2fa4274 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-mgr-a, org.label-schema.license=GPLv2, RELEASE=main-e5c885f, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.build-date=20240326, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, ceph=True) 2024-04-07T20:34:34.305 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target.wants/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mgr.a.service". 2024-04-07T20:34:34.311 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 5 from systemctl stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mgr.a.service 2024-04-07T20:34:34.311 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mgr.a.service: Unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mgr.a.service not loaded. 2024-04-07T20:34:34.317 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mgr.a.service 2024-04-07T20:34:34.317 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mgr.a.service: Unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mgr.a.service not loaded. 2024-04-07T20:34:34.323 INFO:teuthology.orchestra.run.smithi044.stdout:Non-zero exit code 1 from systemctl disable ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mgr.a.service 2024-04-07T20:34:34.323 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4-init@mgr.a.service does not exist. 2024-04-07T20:34:34.462 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:34 smithi044 systemd[1]: ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mgr.a.service: Deactivated successfully. 2024-04-07T20:34:34.462 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:34 smithi044 systemd[1]: Stopped Ceph mgr.a for 0b019dde-f51e-11ee-b649-cb9ed24678a4. 2024-04-07T20:34:34.463 INFO:journalctl@ceph.mgr.a.smithi044.stdout:Apr 07 20:34:34 smithi044 systemd[1]: ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mgr.a.service: Consumed 1.531s CPU time. 2024-04-07T20:34:34.573 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target". 2024-04-07T20:34:34.573 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph.target.wants/ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4.target". 2024-04-07T20:34:34.745 INFO:teuthology.orchestra.run.smithi044.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-04-07T20:34:34.746 INFO:teuthology.orchestra.run.smithi044.stderr:Traceback (most recent call last): 2024-04-07T20:34:34.746 INFO:teuthology.orchestra.run.smithi044.stderr: File "/usr/lib64/python3.9/runpy.py", line 197, in _run_module_as_main 2024-04-07T20:34:34.759 INFO:teuthology.orchestra.run.smithi044.stderr: return _run_code(code, main_globals, None, 2024-04-07T20:34:34.759 INFO:teuthology.orchestra.run.smithi044.stderr: File "/usr/lib64/python3.9/runpy.py", line 87, in _run_code 2024-04-07T20:34:34.759 INFO:teuthology.orchestra.run.smithi044.stderr: exec(code, run_globals) 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 5608, in 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 5596, in main 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2693, in _rollback 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 445, in _default_image 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2925, in command_bootstrap 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2387, in enable_cephadm_mgr_module 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2854, in cli 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/cephadmlib/container_types.py", line 429, in run 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.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=smithi044 -v /var/log/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmp68gprm5_:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmp6z726sy2:/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-07T20:34:34.760 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:34:34.783 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:34:34.784 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-07T20:34:34.784 DEBUG:teuthology.orchestra.run.smithi044:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-07T20:34:34.798 DEBUG:teuthology.orchestra.run.smithi112:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-07T20:34:34.817 DEBUG:teuthology.orchestra.run.smithi191:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-07T20:34:34.835 INFO:tasks.cephadm:Stopping all daemons... 2024-04-07T20:34:34.835 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-04-07T20:34:34.835 DEBUG:teuthology.orchestra.run.smithi044:> sudo systemctl stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a 2024-04-07T20:34:34.871 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service: Unit ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a.service not loaded. 2024-04-07T20:34:34.873 DEBUG:teuthology.orchestra.run:got remote process result: 5 2024-04-07T20:34:34.873 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 smithi044 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 0b019dde-f51e-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.44 --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 smithi044 with status 5: 'sudo systemctl stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a' 2024-04-07T20:34:34.875 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 smithi044 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 0b019dde-f51e-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.44 --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 smithi044 with status 5: 'sudo systemctl stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a' 2024-04-07T20:34:34.876 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-07T20:34:34.878 DEBUG:teuthology.misc:Transferring archived files from smithi044:/var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi044/crash 2024-04-07T20:34:34.879 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash -- . 2024-04-07T20:34:34.951 INFO:teuthology.orchestra.run.smithi044.stderr:tar: /var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-07T20:34:34.951 INFO:teuthology.orchestra.run.smithi044.stderr:tar: Error is not recoverable: exiting now 2024-04-07T20:34:34.953 DEBUG:teuthology.misc:Transferring archived files from smithi112:/var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi112/crash 2024-04-07T20:34:34.954 DEBUG:teuthology.orchestra.run.smithi112:> sudo tar c -f - -C /var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash -- . 2024-04-07T20:34:35.047 INFO:teuthology.orchestra.run.smithi112.stderr:tar: /var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-07T20:34:35.047 INFO:teuthology.orchestra.run.smithi112.stderr:tar: Error is not recoverable: exiting now 2024-04-07T20:34:35.049 DEBUG:teuthology.misc:Transferring archived files from smithi191:/var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi191/crash 2024-04-07T20:34:35.050 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash -- . 2024-04-07T20:34:35.097 INFO:teuthology.orchestra.run.smithi191.stderr:tar: /var/lib/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-07T20:34:35.097 INFO:teuthology.orchestra.run.smithi191.stderr:tar: Error is not recoverable: exiting now 2024-04-07T20:34:35.098 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-07T20:34:35.099 DEBUG:teuthology.orchestra.run.smithi044:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/0b019dde-f51e-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-07T20:34:35.125 INFO:teuthology.orchestra.run.smithi044.stderr:grep: /var/log/ceph/0b019dde-f51e-11ee-b649-cb9ed24678a4/ceph.log: No such file or directory 2024-04-07T20:34:35.127 INFO:tasks.cephadm:Compressing logs... 2024-04-07T20:34:35.127 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:34:35.169 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:34:35.172 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:34:35.192 INFO:teuthology.orchestra.run.smithi044.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-04-07T20:34:35.194 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-07T20:34:35.195 INFO:teuthology.orchestra.run.smithi044.stderr:real 0m0.014s 2024-04-07T20:34:35.195 INFO:teuthology.orchestra.run.smithi044.stderr:user 0m0.013s 2024-04-07T20:34:35.195 INFO:teuthology.orchestra.run.smithi044.stderr:sys 0m0.012s 2024-04-07T20:34:35.196 INFO:teuthology.orchestra.run.smithi112.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-07T20:34:35.196 INFO:teuthology.orchestra.run.smithi112.stderr:: No such file or directory 2024-04-07T20:34:35.197 INFO:teuthology.orchestra.run.smithi112.stderr:/var/log/ceph/cephadm.log: 56.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-07T20:34:35.199 INFO:teuthology.orchestra.run.smithi112.stderr: 2024-04-07T20:34:35.199 INFO:teuthology.orchestra.run.smithi112.stderr:real 0m0.015s 2024-04-07T20:34:35.199 INFO:teuthology.orchestra.run.smithi112.stderr:user 0m0.011s 2024-04-07T20:34:35.199 INFO:teuthology.orchestra.run.smithi112.stderr:sys 0m0.016s 2024-04-07T20:34:35.200 INFO:teuthology.orchestra.run.smithi191.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-07T20:34:35.200 INFO:teuthology.orchestra.run.smithi191.stderr:: No such file or directory 2024-04-07T20:34:35.200 INFO:teuthology.orchestra.run.smithi191.stderr:/var/log/ceph/cephadm.log: 56.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-07T20:34:35.202 INFO:teuthology.orchestra.run.smithi191.stderr: 2024-04-07T20:34:35.202 INFO:teuthology.orchestra.run.smithi191.stderr:real 0m0.016s 2024-04-07T20:34:35.202 INFO:teuthology.orchestra.run.smithi191.stderr:user 0m0.012s 2024-04-07T20:34:35.202 INFO:teuthology.orchestra.run.smithi191.stderr:sys 0m0.017s 2024-04-07T20:34:35.203 INFO:tasks.cephadm:Archiving logs... 2024-04-07T20:34:35.203 DEBUG:teuthology.misc:Transferring archived files from smithi044:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi044/log 2024-04-07T20:34:35.204 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-07T20:34:35.261 DEBUG:teuthology.misc:Transferring archived files from smithi112:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi112/log 2024-04-07T20:34:35.262 DEBUG:teuthology.orchestra.run.smithi112:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-07T20:34:35.289 DEBUG:teuthology.misc:Transferring archived files from smithi191:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi191/log 2024-04-07T20:34:35.290 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-07T20:34:35.318 INFO:tasks.cephadm:Removing cluster... 2024-04-07T20:34:35.318 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0b019dde-f51e-11ee-b649-cb9ed24678a4 --force 2024-04-07T20:34:35.502 INFO:teuthology.orchestra.run.smithi044.stdout:Deleting cluster with fsid: 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:35.747 DEBUG:teuthology.orchestra.run.smithi112:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0b019dde-f51e-11ee-b649-cb9ed24678a4 --force 2024-04-07T20:34:35.928 INFO:teuthology.orchestra.run.smithi112.stdout:Deleting cluster with fsid: 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:36.189 DEBUG:teuthology.orchestra.run.smithi191:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0b019dde-f51e-11ee-b649-cb9ed24678a4 --force 2024-04-07T20:34:36.369 INFO:teuthology.orchestra.run.smithi191.stdout:Deleting cluster with fsid: 0b019dde-f51e-11ee-b649-cb9ed24678a4 2024-04-07T20:34:36.625 INFO:tasks.cephadm:Removing cephadm ... 2024-04-07T20:34:36.625 DEBUG:teuthology.orchestra.run.smithi044:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-07T20:34:36.643 DEBUG:teuthology.orchestra.run.smithi112:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-07T20:34:36.659 DEBUG:teuthology.orchestra.run.smithi191:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-07T20:34:36.675 INFO:tasks.cephadm:Teardown complete 2024-04-07T20:34:36.675 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 smithi044 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 0b019dde-f51e-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.44 --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 smithi044 with status 5: 'sudo systemctl stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a' 2024-04-07T20:34:36.895 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=beb09aac5f7e46a59dec4f2df6062a47 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 smithi044 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid 0b019dde-f51e-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.44 --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 smithi044 with status 5: 'sudo systemctl stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a' 2024-04-07T20:34:36.900 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-07T20:34:36.909 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-07T20:34:36.927 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-07T20:34:36.928 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-07T20:34:36.942 DEBUG:teuthology.orchestra.run.smithi112:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-07T20:34:36.945 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-07T20:34:37.047 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-07T20:34:37.055 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-07T20:34:37.056 DEBUG:teuthology.orchestra.run.smithi044:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T20:34:37.058 DEBUG:teuthology.orchestra.run.smithi112:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T20:34:37.060 DEBUG:teuthology.orchestra.run.smithi191:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T20:34:37.071 INFO:teuthology.orchestra.run.smithi044.stderr:bash: line 1: ntpq: command not found 2024-04-07T20:34:37.072 INFO:teuthology.orchestra.run.smithi112.stderr:bash: line 1: ntpq: command not found 2024-04-07T20:34:37.074 INFO:teuthology.orchestra.run.smithi191.stderr:bash: line 1: ntpq: command not found 2024-04-07T20:34:37.076 INFO:teuthology.orchestra.run.smithi112.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T20:34:37.077 INFO:teuthology.orchestra.run.smithi112.stdout:=============================================================================== 2024-04-07T20:34:37.077 INFO:teuthology.orchestra.run.smithi112.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 18 -317us[ -317us] +/- 76ms 2024-04-07T20:34:37.077 INFO:teuthology.orchestra.run.smithi112.stdout:^* hv02.front.sepia.ceph.com 3 6 377 18 -746us[ -745us] +/- 74ms 2024-04-07T20:34:37.077 INFO:teuthology.orchestra.run.smithi112.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 19 +1007us[+1008us] +/- 68ms 2024-04-07T20:34:37.077 INFO:teuthology.orchestra.run.smithi112.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:34:37.077 INFO:teuthology.orchestra.run.smithi044.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T20:34:37.078 INFO:teuthology.orchestra.run.smithi044.stdout:=============================================================================== 2024-04-07T20:34:37.078 INFO:teuthology.orchestra.run.smithi044.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 18 -321us[ -321us] +/- 76ms 2024-04-07T20:34:37.078 INFO:teuthology.orchestra.run.smithi044.stdout:^* hv02.front.sepia.ceph.com 3 6 377 20 -753us[ -765us] +/- 74ms 2024-04-07T20:34:37.078 INFO:teuthology.orchestra.run.smithi044.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 18 +1019us[+1019us] +/- 68ms 2024-04-07T20:34:37.078 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:34:37.079 INFO:teuthology.orchestra.run.smithi191.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T20:34:37.079 INFO:teuthology.orchestra.run.smithi191.stdout:=============================================================================== 2024-04-07T20:34:37.079 INFO:teuthology.orchestra.run.smithi191.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 17 -324us[ -324us] +/- 76ms 2024-04-07T20:34:37.080 INFO:teuthology.orchestra.run.smithi191.stdout:^* hv02.front.sepia.ceph.com 3 6 377 19 -746us[ -747us] +/- 74ms 2024-04-07T20:34:37.080 INFO:teuthology.orchestra.run.smithi191.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 18 +1019us[+1019us] +/- 68ms 2024-04-07T20:34:37.080 INFO:teuthology.orchestra.run.smithi191.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T20:34:37.080 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-07T20:34:37.089 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-07T20:34:37.090 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-07T20:34:37.097 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:34:37.185 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:34:37.247 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:34:37.310 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:34:37.340 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:34:37.341 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:34:37.370 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:34:37.370 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:34:37.401 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:34:37.401 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-07T20:34:37.411 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-07T20:34:37.418 INFO:teuthology.task.internal:Duration was 553.824821 seconds 2024-04-07T20:34:37.419 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-07T20:34:37.427 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-07T20:34:37.427 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-07T20:34:37.430 DEBUG:teuthology.orchestra.run.smithi112:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-07T20:34:37.432 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-07T20:34:37.472 INFO:teuthology.orchestra.run.smithi112.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T20:34:37.473 INFO:teuthology.orchestra.run.smithi044.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T20:34:37.485 INFO:teuthology.orchestra.run.smithi191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T20:34:37.745 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-07T20:34:37.745 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi044.front.sepia.ceph.com 2024-04-07T20:34:37.745 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:34:37.766 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi112.front.sepia.ceph.com 2024-04-07T20:34:37.766 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:34:37.794 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi191.front.sepia.ceph.com 2024-04-07T20:34:37.794 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:34:37.818 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-07T20:34:37.819 DEBUG:teuthology.orchestra.run.smithi044:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-07T20:34:37.821 DEBUG:teuthology.orchestra.run.smithi112:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-07T20:34:37.837 DEBUG:teuthology.orchestra.run.smithi191:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-07T20:34:37.888 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-07T20:34:37.889 DEBUG:teuthology.orchestra.run.smithi044:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-07T20:34:37.891 DEBUG:teuthology.orchestra.run.smithi112:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-07T20:34:37.905 DEBUG:teuthology.orchestra.run.smithi191:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-07T20:34:38.022 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-07T20:34:38.033 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-07T20:34:38.033 DEBUG:teuthology.orchestra.run.smithi044:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-07T20:34:38.059 DEBUG:teuthology.orchestra.run.smithi112:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-07T20:34:38.086 DEBUG:teuthology.orchestra.run.smithi191:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-07T20:34:38.113 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-07T20:34:38.123 DEBUG:teuthology.orchestra.run.smithi044:> 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-07T20:34:38.125 DEBUG:teuthology.orchestra.run.smithi112:> 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-07T20:34:38.128 DEBUG:teuthology.orchestra.run.smithi191:> 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-07T20:34:38.148 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern = core 2024-04-07T20:34:38.151 INFO:teuthology.orchestra.run.smithi112.stdout:kernel.core_pattern = core 2024-04-07T20:34:38.177 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern = core 2024-04-07T20:34:38.200 DEBUG:teuthology.orchestra.run.smithi044:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-07T20:34:38.226 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:34:38.226 DEBUG:teuthology.orchestra.run.smithi112:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-07T20:34:38.240 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:34:38.241 DEBUG:teuthology.orchestra.run.smithi191:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-07T20:34:38.254 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T20:34:38.255 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-07T20:34:38.266 INFO:teuthology.task.internal:Transferring archived files... 2024-04-07T20:34:38.268 DEBUG:teuthology.misc:Transferring archived files from smithi044:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi044 2024-04-07T20:34:38.268 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-07T20:34:38.303 DEBUG:teuthology.misc:Transferring archived files from smithi112:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi112 2024-04-07T20:34:38.304 DEBUG:teuthology.orchestra.run.smithi112:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-07T20:34:38.339 DEBUG:teuthology.misc:Transferring archived files from smithi191:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257/remote/smithi191 2024-04-07T20:34:38.339 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-07T20:34:38.374 INFO:teuthology.task.internal:Removing archive directory... 2024-04-07T20:34:38.374 DEBUG:teuthology.orchestra.run.smithi044:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-07T20:34:38.377 DEBUG:teuthology.orchestra.run.smithi112:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-07T20:34:38.379 DEBUG:teuthology.orchestra.run.smithi191:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-07T20:34:38.424 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-07T20:34:38.438 INFO:teuthology.task.internal:Not uploading archives. 2024-04-07T20:34:38.438 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-07T20:34:38.448 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-07T20:34:38.448 DEBUG:teuthology.orchestra.run.smithi044:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-07T20:34:38.451 DEBUG:teuthology.orchestra.run.smithi112:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-07T20:34:38.453 DEBUG:teuthology.orchestra.run.smithi191:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-07T20:34:38.462 INFO:teuthology.orchestra.run.smithi044.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 7 20:34 /home/ubuntu/cephtest 2024-04-07T20:34:38.465 INFO:teuthology.orchestra.run.smithi112.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 7 20:34 /home/ubuntu/cephtest 2024-04-07T20:34:38.479 INFO:teuthology.orchestra.run.smithi191.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 7 20:34 /home/ubuntu/cephtest 2024-04-07T20:34:38.480 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-07T20:34:38.490 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-07T20:34:38.511 INFO:teuthology.nuke:Checking targets against current locks 2024-04-07T20:34:38.533 DEBUG:teuthology.nuke:shortname: smithi044 2024-04-07T20:34:38.533 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T20:34:38.553 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi044.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257', '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 20:15:23.843314', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMkUGLKsQn3nOWC+M3T/IR2CtXGrOyks3mppccQvYAJJS/S7ZdLOKBafe5gkm3rKdxgnAzfb1ZdQ6t9mn8aTtWQ='} 2024-04-07T20:34:38.557 DEBUG:teuthology.nuke:shortname: smithi112 2024-04-07T20:34:38.557 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T20:34:38.582 DEBUG:teuthology.nuke:shortname: smithi191 2024-04-07T20:34:38.582 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T20:34:38.588 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi112.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257', '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 20:15:23.845494', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGyyUEwqzrQDLYZu0QOISEQ97GlnlrBKebS9V2nHl+MB3k9l/BI4ELRoefgRJnthHWlAs5SV53PCA5irtD2Ha/8='} 2024-04-07T20:34:38.611 INFO:teuthology.orchestra.console.smithi044:Power off 2024-04-07T20:34:38.611 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-07T20:34:38.623 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi191.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634257', '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 20:15:23.844505', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAVbumiujUWYqK/58CJ6f4Bc/3nsbugoQT7F00mEmwI40EqhH4NivKABDS1W9M6+quY+EEgzNstbiDMeP18e+Fk='} 2024-04-07T20:34:38.640 DEBUG:teuthology.orchestra.console.smithi044:power off output: Chassis Power Control: Down/Off 2024-04-07T20:34:38.640 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:38.660 INFO:teuthology.orchestra.console.smithi112:Power off 2024-04-07T20:34:38.660 DEBUG:teuthology.orchestra.console.smithi112:pexpect command: ipmitool -H smithi112.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-07T20:34:38.671 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is on 2024-04-07T20:34:38.684 DEBUG:teuthology.orchestra.console.smithi112:power off output: Chassis Power Control: Down/Off 2024-04-07T20:34:38.684 DEBUG:teuthology.orchestra.console.smithi112:pexpect command: ipmitool -H smithi112.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:38.698 INFO:teuthology.orchestra.console.smithi191:Power off 2024-04-07T20:34:38.699 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-07T20:34:38.709 DEBUG:teuthology.orchestra.console.smithi112:check power output: Chassis Power is on 2024-04-07T20:34:38.723 DEBUG:teuthology.orchestra.console.smithi191:power off output: Chassis Power Control: Down/Off 2024-04-07T20:34:38.723 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:38.746 DEBUG:teuthology.orchestra.console.smithi191:check power output: Chassis Power is on 2024-04-07T20:34:42.672 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:42.709 DEBUG:teuthology.orchestra.console.smithi112:pexpect command: ipmitool -H smithi112.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:42.747 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:42.783 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is on 2024-04-07T20:34:42.821 DEBUG:teuthology.orchestra.console.smithi112:check power output: Chassis Power is on 2024-04-07T20:34:42.858 DEBUG:teuthology.orchestra.console.smithi191:check power output: Chassis Power is on 2024-04-07T20:34:46.788 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:46.822 DEBUG:teuthology.orchestra.console.smithi112:pexpect command: ipmitool -H smithi112.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:46.859 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:46.899 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is on 2024-04-07T20:34:46.932 DEBUG:teuthology.orchestra.console.smithi112:check power output: Chassis Power is off 2024-04-07T20:34:46.970 DEBUG:teuthology.orchestra.console.smithi191:check power output: Chassis Power is off 2024-04-07T20:34:47.032 INFO:teuthology.orchestra.console.smithi112:Power off completed 2024-04-07T20:34:47.071 INFO:teuthology.orchestra.console.smithi191:Power off completed 2024-04-07T20:34:50.905 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T20:34:51.014 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is off 2024-04-07T20:34:51.115 INFO:teuthology.orchestra.console.smithi044:Power off completed 2024-04-07T20:34:51.220 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/connectivity task/test_host_drain} duration: 553.8248212337494 failure_reason: 'Command failed on smithi044 with status 5: ''sudo systemctl stop ceph-0b019dde-f51e-11ee-b649-cb9ed24678a4@mon.a''' flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=beb09aac5f7e46a59dec4f2df6062a47 status: fail success: false 2024-04-07T20:34:51.220 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-07T20:34:51.306 INFO:teuthology.run:FAIL