2024-04-15T21:29:51.937 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T21:29:51.937 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi --description orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/connectivity task/test_host_drain} --archive /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466 --verbose --owner scheduled_teuthology@teuthology -- /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/orig.config.yaml 2024-04-15T21:29:51.967 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:29:52.048 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466 branch: squid description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7657466' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: squid 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: a9a752df26c63acad72e1b3569fd79a515ca0765 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 workunit: branch: squid sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 owner: scheduled_teuthology@teuthology priority: 100 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: 7775 sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 sleep_before_teardown: 0 subset: 18/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 targets: smithi059.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIX173lhKIWHpjl8IN2nYo15u7Xj6IJolG2HIu3gKfnBrTkDo+EeRNgMyaAkwpbl7cAy11Vugjm6VjQiRXH4+Q4= smithi069.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOZcl7L0C8DyYs6cfLHribD1pT4joN23ipGToJuAL/C59EsSn2QMMBpMkQfssAg4o4qoRMNK4uxxgDmEd0mPG/g= smithi094.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFLKAJm4tUK10SOanBXb7K0BDp+Ss6R+EH+b4S5X2NqWa6qUoCFKFZ09IzuDESmE0CyyBpu+CaXCxkxw9HwTE0c= 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: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-15_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T21:29:52.048 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa; will attempt to use it 2024-04-15T21:29:52.049 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks 2024-04-15T21:29:52.049 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T21:29:52.051 INFO:teuthology.task.internal:Checking packages... 2024-04-15T21:29:52.073 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'a9a752df26c63acad72e1b3569fd79a515ca0765' 2024-04-15T21:29:52.073 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T21:29:52.074 INFO:teuthology.packaging:ref: None 2024-04-15T21:29:52.074 INFO:teuthology.packaging:tag: None 2024-04-15T21:29:52.074 INFO:teuthology.packaging:branch: squid 2024-04-15T21:29:52.074 INFO:teuthology.packaging:sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:29:52.074 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=squid 2024-04-15T21:29:52.367 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:29:52.369 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T21:29:52.375 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T21:29:52.375 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T21:29:52.420 INFO:teuthology.task.internal:Saving configuration 2024-04-15T21:29:52.433 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T21:29:52.438 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:29:52.465 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi059.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:24:13.167149', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINwKL4LXge3YoM9pxwUhRKnKZ98SpHxMGPuWp1h9Hcm9'} 2024-04-15T21:29:52.490 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi069.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:24:13.165914', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAmlBKScZtgOIhWD2N0NOBegrDD2LNSdY4cxoH3h3H3Z'} 2024-04-15T21:29:52.512 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi094.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:24:13.164470', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINT4pZk8KOacUwaddawDmRiC9hxR/w6ejd3zIQ+rQ07L'} 2024-04-15T21:29:52.512 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T21:29:52.518 INFO:teuthology.task.internal:roles: ubuntu@smithi059.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-15T21:29:52.518 INFO:teuthology.task.internal:roles: ubuntu@smithi069.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-15T21:29:52.518 INFO:teuthology.task.internal:roles: ubuntu@smithi094.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-15T21:29:52.518 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T21:29:52.628 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f0a33d28280>, signals=[15]) 2024-04-15T21:29:52.628 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T21:29:52.636 INFO:teuthology.task.internal:Opening connections... 2024-04-15T21:29:52.636 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi059.front.sepia.ceph.com 2024-04-15T21:29:52.638 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi059.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:29:52.718 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi069.front.sepia.ceph.com 2024-04-15T21:29:52.719 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:29:52.795 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi094.front.sepia.ceph.com 2024-04-15T21:29:52.796 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:29:52.873 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T21:29:52.880 DEBUG:teuthology.orchestra.run.smithi059:> uname -m 2024-04-15T21:29:52.885 INFO:teuthology.orchestra.run.smithi059.stdout:x86_64 2024-04-15T21:29:52.886 DEBUG:teuthology.orchestra.run.smithi059:> cat /etc/os-release 2024-04-15T21:29:52.934 INFO:teuthology.orchestra.run.smithi059.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-15T21:29:52.934 INFO:teuthology.orchestra.run.smithi059.stdout:NAME="Ubuntu" 2024-04-15T21:29:52.934 INFO:teuthology.orchestra.run.smithi059.stdout:VERSION_ID="22.04" 2024-04-15T21:29:52.934 INFO:teuthology.orchestra.run.smithi059.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-15T21:29:52.934 INFO:teuthology.orchestra.run.smithi059.stdout:VERSION_CODENAME=jammy 2024-04-15T21:29:52.934 INFO:teuthology.orchestra.run.smithi059.stdout:ID=ubuntu 2024-04-15T21:29:52.934 INFO:teuthology.orchestra.run.smithi059.stdout:ID_LIKE=debian 2024-04-15T21:29:52.934 INFO:teuthology.orchestra.run.smithi059.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-15T21:29:52.935 INFO:teuthology.orchestra.run.smithi059.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-15T21:29:52.935 INFO:teuthology.orchestra.run.smithi059.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-15T21:29:52.935 INFO:teuthology.orchestra.run.smithi059.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-15T21:29:52.935 INFO:teuthology.orchestra.run.smithi059.stdout:UBUNTU_CODENAME=jammy 2024-04-15T21:29:52.935 INFO:teuthology.lock.ops:Updating smithi059.front.sepia.ceph.com on lock server 2024-04-15T21:29:52.959 DEBUG:teuthology.orchestra.run.smithi069:> uname -m 2024-04-15T21:29:52.965 INFO:teuthology.orchestra.run.smithi069.stdout:x86_64 2024-04-15T21:29:52.965 DEBUG:teuthology.orchestra.run.smithi069:> cat /etc/os-release 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:NAME="Ubuntu" 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:VERSION_ID="22.04" 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:VERSION_CODENAME=jammy 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:ID=ubuntu 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:ID_LIKE=debian 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-15T21:29:53.011 INFO:teuthology.orchestra.run.smithi069.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-15T21:29:53.012 INFO:teuthology.orchestra.run.smithi069.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-15T21:29:53.012 INFO:teuthology.orchestra.run.smithi069.stdout:UBUNTU_CODENAME=jammy 2024-04-15T21:29:53.012 INFO:teuthology.lock.ops:Updating smithi069.front.sepia.ceph.com on lock server 2024-04-15T21:29:53.034 DEBUG:teuthology.orchestra.run.smithi094:> uname -m 2024-04-15T21:29:53.040 INFO:teuthology.orchestra.run.smithi094.stdout:x86_64 2024-04-15T21:29:53.040 DEBUG:teuthology.orchestra.run.smithi094:> cat /etc/os-release 2024-04-15T21:29:53.086 INFO:teuthology.orchestra.run.smithi094.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-15T21:29:53.086 INFO:teuthology.orchestra.run.smithi094.stdout:NAME="Ubuntu" 2024-04-15T21:29:53.086 INFO:teuthology.orchestra.run.smithi094.stdout:VERSION_ID="22.04" 2024-04-15T21:29:53.086 INFO:teuthology.orchestra.run.smithi094.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-15T21:29:53.086 INFO:teuthology.orchestra.run.smithi094.stdout:VERSION_CODENAME=jammy 2024-04-15T21:29:53.087 INFO:teuthology.orchestra.run.smithi094.stdout:ID=ubuntu 2024-04-15T21:29:53.087 INFO:teuthology.orchestra.run.smithi094.stdout:ID_LIKE=debian 2024-04-15T21:29:53.087 INFO:teuthology.orchestra.run.smithi094.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-15T21:29:53.087 INFO:teuthology.orchestra.run.smithi094.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-15T21:29:53.087 INFO:teuthology.orchestra.run.smithi094.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-15T21:29:53.087 INFO:teuthology.orchestra.run.smithi094.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-15T21:29:53.087 INFO:teuthology.orchestra.run.smithi094.stdout:UBUNTU_CODENAME=jammy 2024-04-15T21:29:53.087 INFO:teuthology.lock.ops:Updating smithi094.front.sepia.ceph.com on lock server 2024-04-15T21:29:53.109 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T21:29:53.117 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T21:29:53.123 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T21:29:53.123 DEBUG:teuthology.orchestra.run.smithi059:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:29:53.125 DEBUG:teuthology.orchestra.run.smithi069:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:29:53.127 DEBUG:teuthology.orchestra.run.smithi094:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:29:53.137 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T21:29:53.143 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T21:29:53.144 DEBUG:teuthology.orchestra.run.smithi059:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:29:53.171 DEBUG:teuthology.orchestra.run.smithi069:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:29:53.173 DEBUG:teuthology.orchestra.run.smithi094:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:29:53.198 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T21:29:53.271 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T21:29:53.285 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T21:29:53.285 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-15T21:29:53.285 DEBUG:teuthology.orchestra.run.smithi059:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:29:53.286 DEBUG:teuthology.orchestra.run.smithi069:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:29:53.286 DEBUG:teuthology.orchestra.run.smithi094:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:29:53.291 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:29:53.291 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:29:53.292 DEBUG:teuthology.orchestra.run.smithi059:> uname -r 2024-04-15T21:29:53.292 DEBUG:teuthology.orchestra.run.smithi069:> uname -r 2024-04-15T21:29:53.293 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:29:53.293 DEBUG:teuthology.orchestra.run.smithi094:> uname -r 2024-04-15T21:29:53.338 INFO:teuthology.orchestra.run.smithi059.stdout:5.15.0-56-generic 2024-04-15T21:29:53.338 INFO:teuthology.task.kernel:Running kernel on smithi059: 5.15.0-56-generic 2024-04-15T21:29:53.338 DEBUG:teuthology.orchestra.run.smithi059:> sudo apt-get clean 2024-04-15T21:29:53.340 INFO:teuthology.orchestra.run.smithi069.stdout:5.15.0-56-generic 2024-04-15T21:29:53.340 INFO:teuthology.task.kernel:Running kernel on smithi069: 5.15.0-56-generic 2024-04-15T21:29:53.340 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get clean 2024-04-15T21:29:53.342 INFO:teuthology.orchestra.run.smithi094.stdout:5.15.0-56-generic 2024-04-15T21:29:53.342 INFO:teuthology.task.kernel:Running kernel on smithi094: 5.15.0-56-generic 2024-04-15T21:29:53.342 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get clean 2024-04-15T21:29:53.462 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get update 2024-04-15T21:29:53.468 DEBUG:teuthology.orchestra.run.smithi059:> sudo apt-get update 2024-04-15T21:29:53.503 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get update 2024-04-15T21:29:53.670 INFO:teuthology.orchestra.run.smithi094.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-15T21:29:53.704 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:29:53.704 INFO:teuthology.orchestra.run.smithi059.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-15T21:29:53.711 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:29:53.717 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:29:53.729 INFO:teuthology.orchestra.run.smithi069.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-15T21:29:53.749 INFO:teuthology.orchestra.run.smithi069.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-15T21:29:53.787 INFO:teuthology.orchestra.run.smithi094.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-15T21:29:53.854 INFO:teuthology.orchestra.run.smithi069.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-15T21:29:53.958 INFO:teuthology.orchestra.run.smithi069.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-15T21:29:53.974 INFO:teuthology.orchestra.run.smithi094.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-15T21:29:54.143 INFO:teuthology.orchestra.run.smithi094.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-15T21:29:54.159 INFO:teuthology.orchestra.run.smithi069.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-15T21:29:54.175 INFO:teuthology.orchestra.run.smithi069.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-15T21:29:54.192 INFO:teuthology.orchestra.run.smithi094.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-15T21:29:54.233 INFO:teuthology.orchestra.run.smithi069.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-15T21:29:54.239 INFO:teuthology.orchestra.run.smithi069.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-15T21:29:54.239 INFO:teuthology.orchestra.run.smithi069.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-15T21:29:54.271 INFO:teuthology.orchestra.run.smithi069.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-15T21:29:54.272 INFO:teuthology.orchestra.run.smithi069.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-15T21:29:54.277 INFO:teuthology.orchestra.run.smithi069.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:29:54.277 INFO:teuthology.orchestra.run.smithi069.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,075 kB] 2024-04-15T21:29:54.278 INFO:teuthology.orchestra.run.smithi094.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-15T21:29:54.284 INFO:teuthology.orchestra.run.smithi094.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-15T21:29:54.292 INFO:teuthology.orchestra.run.smithi069.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-15T21:29:54.300 INFO:teuthology.orchestra.run.smithi094.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-15T21:29:54.301 INFO:teuthology.orchestra.run.smithi094.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-15T21:29:54.301 INFO:teuthology.orchestra.run.smithi094.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-15T21:29:54.303 INFO:teuthology.orchestra.run.smithi069.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-15T21:29:54.307 INFO:teuthology.orchestra.run.smithi069.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-15T21:29:54.330 INFO:teuthology.orchestra.run.smithi069.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-15T21:29:54.330 INFO:teuthology.orchestra.run.smithi069.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-15T21:29:54.332 INFO:teuthology.orchestra.run.smithi069.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-15T21:29:54.333 INFO:teuthology.orchestra.run.smithi069.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-15T21:29:54.333 INFO:teuthology.orchestra.run.smithi069.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-15T21:29:54.333 INFO:teuthology.orchestra.run.smithi069.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-15T21:29:54.335 INFO:teuthology.orchestra.run.smithi069.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-15T21:29:54.340 INFO:teuthology.orchestra.run.smithi094.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-15T21:29:54.343 INFO:teuthology.orchestra.run.smithi069.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-15T21:29:54.344 INFO:teuthology.orchestra.run.smithi069.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-15T21:29:54.344 INFO:teuthology.orchestra.run.smithi069.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-15T21:29:54.356 INFO:teuthology.orchestra.run.smithi094.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:29:54.359 INFO:teuthology.orchestra.run.smithi094.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-15T21:29:54.374 INFO:teuthology.orchestra.run.smithi069.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-15T21:29:54.375 INFO:teuthology.orchestra.run.smithi069.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-15T21:29:54.381 INFO:teuthology.orchestra.run.smithi094.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-15T21:29:54.389 INFO:teuthology.orchestra.run.smithi094.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-15T21:29:54.392 INFO:teuthology.orchestra.run.smithi094.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-15T21:29:54.392 INFO:teuthology.orchestra.run.smithi094.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-15T21:29:54.400 INFO:teuthology.orchestra.run.smithi094.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-15T21:29:54.400 INFO:teuthology.orchestra.run.smithi094.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-15T21:29:54.401 INFO:teuthology.orchestra.run.smithi094.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-15T21:29:54.477 INFO:teuthology.orchestra.run.smithi094.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-15T21:29:54.582 INFO:teuthology.orchestra.run.smithi069.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-15T21:29:54.600 INFO:teuthology.orchestra.run.smithi069.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-15T21:29:54.610 INFO:teuthology.orchestra.run.smithi069.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-15T21:29:54.610 INFO:teuthology.orchestra.run.smithi069.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-15T21:29:54.611 INFO:teuthology.orchestra.run.smithi069.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-15T21:29:54.626 INFO:teuthology.orchestra.run.smithi094.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-15T21:29:54.640 INFO:teuthology.orchestra.run.smithi094.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-15T21:29:54.641 INFO:teuthology.orchestra.run.smithi094.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-15T21:29:54.700 INFO:teuthology.orchestra.run.smithi094.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-15T21:29:54.701 INFO:teuthology.orchestra.run.smithi094.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-15T21:29:54.704 INFO:teuthology.orchestra.run.smithi069.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-15T21:29:54.708 INFO:teuthology.orchestra.run.smithi094.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:29:54.715 INFO:teuthology.orchestra.run.smithi069.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:29:54.715 INFO:teuthology.orchestra.run.smithi069.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-15T21:29:54.736 INFO:teuthology.orchestra.run.smithi069.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-15T21:29:54.873 INFO:teuthology.orchestra.run.smithi094.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-15T21:29:54.921 INFO:teuthology.orchestra.run.smithi069.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-15T21:29:55.320 INFO:teuthology.orchestra.run.smithi069.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-15T21:29:55.326 INFO:teuthology.orchestra.run.smithi069.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-15T21:29:55.339 INFO:teuthology.orchestra.run.smithi069.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-15T21:29:55.340 INFO:teuthology.orchestra.run.smithi069.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-15T21:29:55.344 INFO:teuthology.orchestra.run.smithi069.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-15T21:29:55.452 INFO:teuthology.orchestra.run.smithi094.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,075 kB] 2024-04-15T21:29:55.506 INFO:teuthology.orchestra.run.smithi059.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-15T21:29:55.516 INFO:teuthology.orchestra.run.smithi059.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-15T21:29:55.564 INFO:teuthology.orchestra.run.smithi094.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-15T21:29:55.584 INFO:teuthology.orchestra.run.smithi094.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-15T21:29:55.585 INFO:teuthology.orchestra.run.smithi094.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-15T21:29:55.586 INFO:teuthology.orchestra.run.smithi094.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-15T21:29:55.590 INFO:teuthology.orchestra.run.smithi094.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-15T21:29:55.591 INFO:teuthology.orchestra.run.smithi094.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-15T21:29:55.591 INFO:teuthology.orchestra.run.smithi094.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-15T21:29:55.595 INFO:teuthology.orchestra.run.smithi094.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-15T21:29:55.600 INFO:teuthology.orchestra.run.smithi094.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-15T21:29:55.623 INFO:teuthology.orchestra.run.smithi059.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-15T21:29:55.631 INFO:teuthology.orchestra.run.smithi059.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-15T21:29:55.689 INFO:teuthology.orchestra.run.smithi059.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-15T21:29:55.693 INFO:teuthology.orchestra.run.smithi059.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-15T21:29:55.693 INFO:teuthology.orchestra.run.smithi059.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-15T21:29:55.694 INFO:teuthology.orchestra.run.smithi059.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-15T21:29:55.713 INFO:teuthology.orchestra.run.smithi059.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-15T21:29:55.742 INFO:teuthology.orchestra.run.smithi059.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-15T21:29:55.748 INFO:teuthology.orchestra.run.smithi059.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:29:55.748 INFO:teuthology.orchestra.run.smithi059.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-15T21:29:55.763 INFO:teuthology.orchestra.run.smithi094.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-15T21:29:55.773 INFO:teuthology.orchestra.run.smithi059.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-15T21:29:55.790 INFO:teuthology.orchestra.run.smithi059.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-15T21:29:55.792 INFO:teuthology.orchestra.run.smithi059.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-15T21:29:55.793 INFO:teuthology.orchestra.run.smithi059.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-15T21:29:55.793 INFO:teuthology.orchestra.run.smithi059.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-15T21:29:55.808 INFO:teuthology.orchestra.run.smithi059.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-15T21:29:55.841 INFO:teuthology.orchestra.run.smithi059.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-15T21:29:55.845 INFO:teuthology.orchestra.run.smithi094.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-15T21:29:55.873 INFO:teuthology.orchestra.run.smithi059.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-15T21:29:55.927 INFO:teuthology.orchestra.run.smithi094.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-15T21:29:55.951 INFO:teuthology.orchestra.run.smithi059.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-15T21:29:55.955 INFO:teuthology.orchestra.run.smithi059.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-15T21:29:55.956 INFO:teuthology.orchestra.run.smithi059.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-15T21:29:55.980 INFO:teuthology.orchestra.run.smithi059.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-15T21:29:55.980 INFO:teuthology.orchestra.run.smithi059.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-15T21:29:55.984 INFO:teuthology.orchestra.run.smithi059.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:29:55.985 INFO:teuthology.orchestra.run.smithi059.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-15T21:29:55.993 INFO:teuthology.orchestra.run.smithi059.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,075 kB] 2024-04-15T21:29:56.005 INFO:teuthology.orchestra.run.smithi059.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-15T21:29:56.008 INFO:teuthology.orchestra.run.smithi094.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-15T21:29:56.008 INFO:teuthology.orchestra.run.smithi059.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-15T21:29:56.008 INFO:teuthology.orchestra.run.smithi059.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-15T21:29:56.009 INFO:teuthology.orchestra.run.smithi059.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-15T21:29:56.027 INFO:teuthology.orchestra.run.smithi059.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-15T21:29:56.027 INFO:teuthology.orchestra.run.smithi059.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-15T21:29:56.027 INFO:teuthology.orchestra.run.smithi059.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-15T21:29:56.029 INFO:teuthology.orchestra.run.smithi059.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-15T21:29:56.029 INFO:teuthology.orchestra.run.smithi059.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-15T21:29:56.038 INFO:teuthology.orchestra.run.smithi094.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-15T21:29:56.048 INFO:teuthology.orchestra.run.smithi059.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-15T21:29:56.048 INFO:teuthology.orchestra.run.smithi059.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-15T21:29:56.048 INFO:teuthology.orchestra.run.smithi059.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-15T21:29:56.049 INFO:teuthology.orchestra.run.smithi059.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-15T21:29:56.049 INFO:teuthology.orchestra.run.smithi059.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-15T21:29:59.843 INFO:teuthology.orchestra.run.smithi069.stdout:Fetched 12.9 MB in 2s (6,469 kB/s) 2024-04-15T21:30:00.359 INFO:teuthology.orchestra.run.smithi094.stdout:Fetched 12.9 MB in 3s (5,120 kB/s) 2024-04-15T21:30:01.201 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-15T21:30:01.218 DEBUG:teuthology.orchestra.run.smithi069:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:30:01.269 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-15T21:30:01.443 INFO:teuthology.orchestra.run.smithi069.stdout:Building dependency tree... 2024-04-15T21:30:01.444 INFO:teuthology.orchestra.run.smithi069.stdout:Reading state information... 2024-04-15T21:30:01.598 INFO:teuthology.orchestra.run.smithi069.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:30:01.598 INFO:teuthology.orchestra.run.smithi069.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:30:01.598 INFO:teuthology.orchestra.run.smithi069.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:30:01.599 INFO:teuthology.orchestra.run.smithi069.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:30:01.599 INFO:teuthology.orchestra.run.smithi069.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-15T21:30:01.599 INFO:teuthology.orchestra.run.smithi069.stdout: python2.7-minimal 2024-04-15T21:30:01.599 INFO:teuthology.orchestra.run.smithi069.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:30:01.599 INFO:teuthology.orchestra.run.smithi069.stdout:The following additional packages will be installed: 2024-04-15T21:30:01.599 INFO:teuthology.orchestra.run.smithi069.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:30:01.600 INFO:teuthology.orchestra.run.smithi069.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-15T21:30:01.600 INFO:teuthology.orchestra.run.smithi069.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-15T21:30:01.601 INFO:teuthology.orchestra.run.smithi069.stdout:Suggested packages: 2024-04-15T21:30:01.601 INFO:teuthology.orchestra.run.smithi069.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-15T21:30:01.602 INFO:teuthology.orchestra.run.smithi069.stdout:Recommended packages: 2024-04-15T21:30:01.602 INFO:teuthology.orchestra.run.smithi069.stdout: thermald 2024-04-15T21:30:01.651 INFO:teuthology.orchestra.run.smithi069.stdout:The following NEW packages will be installed: 2024-04-15T21:30:01.651 INFO:teuthology.orchestra.run.smithi069.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:30:01.651 INFO:teuthology.orchestra.run.smithi069.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-15T21:30:01.651 INFO:teuthology.orchestra.run.smithi069.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-15T21:30:01.652 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-04-15T21:30:01.653 INFO:teuthology.orchestra.run.smithi069.stdout:The following packages will be upgraded: 2024-04-15T21:30:01.653 INFO:teuthology.orchestra.run.smithi069.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-15T21:30:01.668 DEBUG:teuthology.orchestra.run.smithi094:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:30:01.723 INFO:teuthology.orchestra.run.smithi069.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:30:01.723 INFO:teuthology.orchestra.run.smithi069.stdout:Need to get 113 MB of archives. 2024-04-15T21:30:01.723 INFO:teuthology.orchestra.run.smithi069.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-15T21:30:01.724 INFO:teuthology.orchestra.run.smithi069.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-102-generic amd64 5.15.0-102.112 [22.7 MB] 2024-04-15T21:30:01.731 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-04-15T21:30:01.925 INFO:teuthology.orchestra.run.smithi059.stdout:Fetched 12.9 MB in 4s (3,561 kB/s) 2024-04-15T21:30:01.929 INFO:teuthology.orchestra.run.smithi094.stdout:Building dependency tree... 2024-04-15T21:30:01.930 INFO:teuthology.orchestra.run.smithi094.stdout:Reading state information... 2024-04-15T21:30:02.104 INFO:teuthology.orchestra.run.smithi094.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:30:02.104 INFO:teuthology.orchestra.run.smithi094.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:30:02.104 INFO:teuthology.orchestra.run.smithi094.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:30:02.105 INFO:teuthology.orchestra.run.smithi094.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:30:02.105 INFO:teuthology.orchestra.run.smithi094.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-15T21:30:02.105 INFO:teuthology.orchestra.run.smithi094.stdout: python2.7-minimal 2024-04-15T21:30:02.105 INFO:teuthology.orchestra.run.smithi094.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:30:02.106 INFO:teuthology.orchestra.run.smithi094.stdout:The following additional packages will be installed: 2024-04-15T21:30:02.106 INFO:teuthology.orchestra.run.smithi094.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:30:02.106 INFO:teuthology.orchestra.run.smithi094.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-15T21:30:02.107 INFO:teuthology.orchestra.run.smithi094.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-15T21:30:02.108 INFO:teuthology.orchestra.run.smithi094.stdout:Suggested packages: 2024-04-15T21:30:02.108 INFO:teuthology.orchestra.run.smithi094.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-15T21:30:02.108 INFO:teuthology.orchestra.run.smithi094.stdout:Recommended packages: 2024-04-15T21:30:02.108 INFO:teuthology.orchestra.run.smithi094.stdout: thermald 2024-04-15T21:30:02.165 INFO:teuthology.orchestra.run.smithi094.stdout:The following NEW packages will be installed: 2024-04-15T21:30:02.165 INFO:teuthology.orchestra.run.smithi094.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:30:02.165 INFO:teuthology.orchestra.run.smithi094.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-15T21:30:02.165 INFO:teuthology.orchestra.run.smithi094.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-15T21:30:02.166 INFO:teuthology.orchestra.run.smithi094.stdout:The following packages will be upgraded: 2024-04-15T21:30:02.167 INFO:teuthology.orchestra.run.smithi094.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-15T21:30:02.352 INFO:teuthology.orchestra.run.smithi069.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-102-generic amd64 5.15.0-102.112 [11.5 MB] 2024-04-15T21:30:02.492 INFO:teuthology.orchestra.run.smithi069.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-102-generic amd64 5.15.0-102.112 [63.9 MB] 2024-04-15T21:30:03.233 INFO:teuthology.orchestra.run.smithi094.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:30:03.233 INFO:teuthology.orchestra.run.smithi094.stdout:Need to get 113 MB of archives. 2024-04-15T21:30:03.233 INFO:teuthology.orchestra.run.smithi094.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-15T21:30:03.233 INFO:teuthology.orchestra.run.smithi094.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-102-generic amd64 5.15.0-102.112 [22.7 MB] 2024-04-15T21:30:03.351 INFO:teuthology.orchestra.run.smithi059.stdout:Reading package lists... 2024-04-15T21:30:03.370 DEBUG:teuthology.orchestra.run.smithi059:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:30:03.431 INFO:teuthology.orchestra.run.smithi059.stdout:Reading package lists... 2024-04-15T21:30:03.616 INFO:teuthology.orchestra.run.smithi059.stdout:Building dependency tree... 2024-04-15T21:30:03.617 INFO:teuthology.orchestra.run.smithi059.stdout:Reading state information... 2024-04-15T21:30:03.661 INFO:teuthology.orchestra.run.smithi069.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.102.99 [1,700 B] 2024-04-15T21:30:03.661 INFO:teuthology.orchestra.run.smithi069.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.102.99 [2,512 B] 2024-04-15T21:30:03.661 INFO:teuthology.orchestra.run.smithi069.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102 all 5.15.0-102.112 [12.4 MB] 2024-04-15T21:30:03.776 INFO:teuthology.orchestra.run.smithi059.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:30:03.776 INFO:teuthology.orchestra.run.smithi059.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:30:03.776 INFO:teuthology.orchestra.run.smithi059.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:30:03.777 INFO:teuthology.orchestra.run.smithi059.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:30:03.777 INFO:teuthology.orchestra.run.smithi059.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-15T21:30:03.777 INFO:teuthology.orchestra.run.smithi059.stdout: python2.7-minimal 2024-04-15T21:30:03.777 INFO:teuthology.orchestra.run.smithi059.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:30:03.778 INFO:teuthology.orchestra.run.smithi059.stdout:The following additional packages will be installed: 2024-04-15T21:30:03.778 INFO:teuthology.orchestra.run.smithi059.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:30:03.778 INFO:teuthology.orchestra.run.smithi059.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-15T21:30:03.779 INFO:teuthology.orchestra.run.smithi059.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-15T21:30:03.780 INFO:teuthology.orchestra.run.smithi059.stdout:Suggested packages: 2024-04-15T21:30:03.780 INFO:teuthology.orchestra.run.smithi059.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-15T21:30:03.780 INFO:teuthology.orchestra.run.smithi059.stdout:Recommended packages: 2024-04-15T21:30:03.780 INFO:teuthology.orchestra.run.smithi059.stdout: thermald 2024-04-15T21:30:03.818 INFO:teuthology.orchestra.run.smithi069.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102-generic amd64 5.15.0-102.112 [2,877 kB] 2024-04-15T21:30:03.824 INFO:teuthology.orchestra.run.smithi059.stdout:The following NEW packages will be installed: 2024-04-15T21:30:03.824 INFO:teuthology.orchestra.run.smithi059.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:30:03.824 INFO:teuthology.orchestra.run.smithi059.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-15T21:30:03.825 INFO:teuthology.orchestra.run.smithi059.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-15T21:30:03.825 INFO:teuthology.orchestra.run.smithi059.stdout:The following packages will be upgraded: 2024-04-15T21:30:03.826 INFO:teuthology.orchestra.run.smithi059.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-15T21:30:03.852 INFO:teuthology.orchestra.run.smithi069.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.102.99 [2,360 B] 2024-04-15T21:30:04.337 INFO:teuthology.orchestra.run.smithi069.stdout:Fetched 113 MB in 2s (50.1 MB/s) 2024-04-15T21:30:04.506 INFO:teuthology.orchestra.run.smithi059.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:30:04.506 INFO:teuthology.orchestra.run.smithi059.stdout:Need to get 113 MB of archives. 2024-04-15T21:30:04.506 INFO:teuthology.orchestra.run.smithi059.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-15T21:30:04.506 INFO:teuthology.orchestra.run.smithi059.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-102-generic amd64 5.15.0-102.112 [22.7 MB] 2024-04-15T21:30:04.529 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-15T21:30:04.740 INFO:teuthology.orchestra.run.smithi094.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-102-generic amd64 5.15.0-102.112 [11.5 MB] 2024-04-15T21:30:05.096 INFO:teuthology.orchestra.run.smithi094.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-102-generic amd64 5.15.0-102.112 [63.9 MB] 2024-04-15T21:30:05.903 INFO:teuthology.orchestra.run.smithi059.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-102-generic amd64 5.15.0-102.112 [11.5 MB] 2024-04-15T21:30:06.257 INFO:teuthology.orchestra.run.smithi059.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-102-generic amd64 5.15.0-102.112 [63.9 MB] 2024-04-15T21:30:06.543 INFO:teuthology.orchestra.run.smithi069.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-15T21:30:06.544 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:06.610 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:07.339 INFO:teuthology.orchestra.run.smithi094.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.102.99 [1,700 B] 2024-04-15T21:30:07.339 INFO:teuthology.orchestra.run.smithi094.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.102.99 [2,512 B] 2024-04-15T21:30:07.340 INFO:teuthology.orchestra.run.smithi094.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102 all 5.15.0-102.112 [12.4 MB] 2024-04-15T21:30:08.486 INFO:teuthology.orchestra.run.smithi059.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.102.99 [1,700 B] 2024-04-15T21:30:08.486 INFO:teuthology.orchestra.run.smithi059.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.102.99 [2,512 B] 2024-04-15T21:30:08.486 INFO:teuthology.orchestra.run.smithi059.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102 all 5.15.0-102.112 [12.4 MB] 2024-04-15T21:30:08.716 INFO:teuthology.orchestra.run.smithi094.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102-generic amd64 5.15.0-102.112 [2,877 kB] 2024-04-15T21:30:08.825 INFO:teuthology.orchestra.run.smithi094.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.102.99 [2,360 B] 2024-04-15T21:30:08.961 INFO:teuthology.orchestra.run.smithi059.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102-generic amd64 5.15.0-102.112 [2,877 kB] 2024-04-15T21:30:09.051 INFO:teuthology.orchestra.run.smithi059.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.102.99 [2,360 B] 2024-04-15T21:30:09.177 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-15T21:30:09.198 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:09.237 INFO:teuthology.orchestra.run.smithi094.stdout:Fetched 113 MB in 7s (17.0 MB/s) 2024-04-15T21:30:09.292 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:09.422 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-15T21:30:09.464 INFO:teuthology.orchestra.run.smithi059.stdout:Fetched 113 MB in 5s (21.7 MB/s) 2024-04-15T21:30:09.665 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-15T21:30:09.763 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-15T21:30:09.783 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:09.821 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:11.666 INFO:teuthology.orchestra.run.smithi059.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-15T21:30:11.670 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:11.699 INFO:teuthology.orchestra.run.smithi094.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-15T21:30:11.703 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:11.779 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:12.002 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:14.104 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-15T21:30:14.125 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:14.163 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-15T21:30:14.185 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:14.202 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:14.269 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:14.633 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-15T21:30:14.653 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:14.690 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-15T21:30:14.691 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:14.701 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:14.749 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:16.093 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:16.196 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:16.554 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:16.683 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:16.994 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-15T21:30:17.016 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-15T21:30:17.060 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:30:21.431 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:21.535 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:21.558 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:21.637 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:21.932 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:21.962 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:22.078 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:22.083 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:22.370 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-15T21:30:22.381 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-15T21:30:22.389 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-15T21:30:22.411 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:30:22.412 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-15T21:30:22.456 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:30:22.743 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-15T21:30:22.779 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:22.817 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:25.436 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:25.570 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:25.912 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:30:26.033 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:26.159 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-15T21:30:26.288 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:27.615 INFO:teuthology.orchestra.run.smithi069.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:27.615 INFO:teuthology.orchestra.run.smithi069.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:27.615 INFO:teuthology.orchestra.run.smithi069.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:27.615 INFO:teuthology.orchestra.run.smithi069.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:27.733 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-15T21:30:27.747 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:27.769 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:27.808 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:28.455 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-15T21:30:28.492 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:30:28.529 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:29.533 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:31.309 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-15T21:30:31.401 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:31.435 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-15T21:30:31.561 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:31.628 INFO:teuthology.orchestra.run.smithi069.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-15T21:30:31.628 INFO:teuthology.orchestra.run.smithi069.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:31.860 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:32.105 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:30:32.193 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:30:32.239 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:30:32.315 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:32.441 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-15T21:30:32.545 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:32.623 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:30:32.777 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:32.911 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-15T21:30:33.056 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:33.847 INFO:teuthology.orchestra.run.smithi094.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:33.847 INFO:teuthology.orchestra.run.smithi094.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:33.847 INFO:teuthology.orchestra.run.smithi094.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:33.847 INFO:teuthology.orchestra.run.smithi094.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:34.025 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:34.378 INFO:teuthology.orchestra.run.smithi059.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:34.379 INFO:teuthology.orchestra.run.smithi059.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:34.379 INFO:teuthology.orchestra.run.smithi059.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:34.379 INFO:teuthology.orchestra.run.smithi059.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:34.541 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:35.785 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:36.484 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:37.162 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-15T21:30:37.287 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-15T21:30:37.389 INFO:teuthology.orchestra.run.smithi094.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:37.441 INFO:teuthology.orchestra.run.smithi094.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-15T21:30:37.441 INFO:teuthology.orchestra.run.smithi094.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:37.935 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-15T21:30:38.061 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-15T21:30:38.204 INFO:teuthology.orchestra.run.smithi059.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:30:38.269 INFO:teuthology.orchestra.run.smithi059.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-15T21:30:38.269 INFO:teuthology.orchestra.run.smithi059.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:46.156 INFO:teuthology.orchestra.run.smithi069.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-15T21:30:46.157 INFO:teuthology.orchestra.run.smithi069.stdout:Sourcing file `/etc/default/grub' 2024-04-15T21:30:46.162 INFO:teuthology.orchestra.run.smithi069.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:30:46.184 INFO:teuthology.orchestra.run.smithi069.stdout:Generating grub configuration file ... 2024-04-15T21:30:46.451 INFO:teuthology.orchestra.run.smithi069.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:46.470 INFO:teuthology.orchestra.run.smithi069.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:46.755 INFO:teuthology.orchestra.run.smithi069.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:46.761 INFO:teuthology.orchestra.run.smithi069.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:46.834 INFO:teuthology.orchestra.run.smithi069.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:30:46.840 INFO:teuthology.orchestra.run.smithi069.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:30:46.987 INFO:teuthology.orchestra.run.smithi069.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:30:46.987 INFO:teuthology.orchestra.run.smithi069.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:30:46.987 INFO:teuthology.orchestra.run.smithi069.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:30:47.025 INFO:teuthology.orchestra.run.smithi069.stdout:done 2024-04-15T21:30:47.522 DEBUG:teuthology.orchestra.run.smithi069:> dpkg -s linux-image-generic 2024-04-15T21:30:47.537 INFO:teuthology.orchestra.run.smithi069.stdout:Package: linux-image-generic 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Status: install ok installed 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Priority: optional 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Section: kernel 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Installed-Size: 21 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Architecture: amd64 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Source: linux-meta 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Version: 5.15.0.102.99 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Recommends: thermald 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout:Description: Generic Linux kernel image 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:30:47.538 INFO:teuthology.orchestra.run.smithi069.stdout: available. 2024-04-15T21:30:47.539 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-15T21:30:47.539 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:30:47.539 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:30:47.539 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T21:30:47.539 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi069.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:30:47.539 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get clean 2024-04-15T21:30:47.757 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get update 2024-04-15T21:30:47.905 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:30:47.996 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:30:48.078 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:30:48.159 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:30:49.235 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-15T21:30:49.252 DEBUG:teuthology.orchestra.run.smithi069:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:30:49.304 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-15T21:30:49.479 INFO:teuthology.orchestra.run.smithi069.stdout:Building dependency tree... 2024-04-15T21:30:49.480 INFO:teuthology.orchestra.run.smithi069.stdout:Reading state information... 2024-04-15T21:30:49.633 INFO:teuthology.orchestra.run.smithi069.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-15T21:30:49.633 INFO:teuthology.orchestra.run.smithi069.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:30:49.633 INFO:teuthology.orchestra.run.smithi069.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:30:49.633 INFO:teuthology.orchestra.run.smithi069.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:30:49.633 INFO:teuthology.orchestra.run.smithi069.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:30:49.633 INFO:teuthology.orchestra.run.smithi069.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:30:49.633 INFO:teuthology.orchestra.run.smithi069.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:30:49.634 INFO:teuthology.orchestra.run.smithi069.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:30:49.673 INFO:teuthology.orchestra.run.smithi069.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:30:49.675 DEBUG:teuthology.orchestra.run.smithi069:> dpkg -s linux-image-generic 2024-04-15T21:30:49.732 INFO:teuthology.orchestra.run.smithi069.stdout:Package: linux-image-generic 2024-04-15T21:30:49.732 INFO:teuthology.orchestra.run.smithi069.stdout:Status: install ok installed 2024-04-15T21:30:49.732 INFO:teuthology.orchestra.run.smithi069.stdout:Priority: optional 2024-04-15T21:30:49.732 INFO:teuthology.orchestra.run.smithi069.stdout:Section: kernel 2024-04-15T21:30:49.732 INFO:teuthology.orchestra.run.smithi069.stdout:Installed-Size: 21 2024-04-15T21:30:49.732 INFO:teuthology.orchestra.run.smithi069.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout:Architecture: amd64 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout:Source: linux-meta 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout:Version: 5.15.0.102.99 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout:Recommends: thermald 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout:Description: Generic Linux kernel image 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:30:49.733 INFO:teuthology.orchestra.run.smithi069.stdout: available. 2024-04-15T21:30:49.733 DEBUG:teuthology.orchestra.run.smithi069:> mktemp 2024-04-15T21:30:49.777 INFO:teuthology.orchestra.run.smithi069.stdout:/tmp/tmp.HhcMQJGKRP 2024-04-15T21:30:49.778 DEBUG:teuthology.orchestra.run.smithi069:> sudo cp /boot/grub/grub.cfg /tmp/tmp.HhcMQJGKRP 2024-04-15T21:30:49.834 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod 0666 /tmp/tmp.HhcMQJGKRP 2024-04-15T21:30:49.954 DEBUG:teuthology.orchestra.remote:smithi069:/tmp/tmp.HhcMQJGKRP is 10KB 2024-04-15T21:30:49.967 DEBUG:teuthology.orchestra.run.smithi069:> rm -fr /tmp/tmp.HhcMQJGKRP 2024-04-15T21:30:49.972 DEBUG:teuthology.orchestra.run.smithi069:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-15T21:30:50.026 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-15T21:30:50.026 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-15T21:30:50.026 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-15T21:30:50.093 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-15T21:30:50.093 DEBUG:teuthology.orchestra.run.smithi069:> sudo update-grub 2024-04-15T21:30:51.270 INFO:teuthology.orchestra.run.smithi069.stderr:Sourcing file `/etc/default/grub' 2024-04-15T21:30:51.271 INFO:teuthology.orchestra.run.smithi069.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:30:51.274 INFO:teuthology.orchestra.run.smithi069.stderr:Generating grub configuration file ... 2024-04-15T21:30:51.450 INFO:teuthology.orchestra.run.smithi069.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:51.456 INFO:teuthology.orchestra.run.smithi069.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:51.671 INFO:teuthology.orchestra.run.smithi069.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:51.676 INFO:teuthology.orchestra.run.smithi069.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:51.714 INFO:teuthology.orchestra.run.smithi094.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-15T21:30:51.715 INFO:teuthology.orchestra.run.smithi094.stdout:Sourcing file `/etc/default/grub' 2024-04-15T21:30:51.717 INFO:teuthology.orchestra.run.smithi069.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:30:51.722 INFO:teuthology.orchestra.run.smithi069.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:30:51.726 INFO:teuthology.orchestra.run.smithi094.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:30:51.746 INFO:teuthology.orchestra.run.smithi094.stdout:Generating grub configuration file ... 2024-04-15T21:30:51.849 INFO:teuthology.orchestra.run.smithi069.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:30:51.849 INFO:teuthology.orchestra.run.smithi069.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:30:51.849 INFO:teuthology.orchestra.run.smithi069.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:30:51.860 INFO:teuthology.orchestra.run.smithi069.stderr:done 2024-04-15T21:30:51.872 DEBUG:teuthology.orchestra.run.smithi069:> sudo shutdown -r now 2024-04-15T21:30:52.018 INFO:teuthology.orchestra.run.smithi094.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:52.035 INFO:teuthology.orchestra.run.smithi094.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:52.347 INFO:teuthology.orchestra.run.smithi094.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:52.352 INFO:teuthology.orchestra.run.smithi094.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:52.420 INFO:teuthology.orchestra.run.smithi094.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:30:52.425 INFO:teuthology.orchestra.run.smithi094.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:30:52.574 INFO:teuthology.orchestra.run.smithi094.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:30:52.574 INFO:teuthology.orchestra.run.smithi094.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:30:52.574 INFO:teuthology.orchestra.run.smithi094.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:30:52.618 INFO:teuthology.orchestra.run.smithi094.stdout:done 2024-04-15T21:30:52.854 INFO:teuthology.orchestra.run.smithi059.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-15T21:30:52.854 INFO:teuthology.orchestra.run.smithi059.stdout:Sourcing file `/etc/default/grub' 2024-04-15T21:30:52.887 INFO:teuthology.orchestra.run.smithi059.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:30:52.909 INFO:teuthology.orchestra.run.smithi059.stdout:Generating grub configuration file ... 2024-04-15T21:30:53.108 DEBUG:teuthology.orchestra.run.smithi094:> dpkg -s linux-image-generic 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Package: linux-image-generic 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Status: install ok installed 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Priority: optional 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Section: kernel 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Installed-Size: 21 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Architecture: amd64 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Source: linux-meta 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Version: 5.15.0.102.99 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:30:53.129 INFO:teuthology.orchestra.run.smithi094.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:30:53.130 INFO:teuthology.orchestra.run.smithi094.stdout:Recommends: thermald 2024-04-15T21:30:53.130 INFO:teuthology.orchestra.run.smithi094.stdout:Description: Generic Linux kernel image 2024-04-15T21:30:53.130 INFO:teuthology.orchestra.run.smithi094.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:30:53.130 INFO:teuthology.orchestra.run.smithi094.stdout: available. 2024-04-15T21:30:53.130 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-15T21:30:53.130 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:30:53.130 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:30:53.130 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-15T21:30:53.130 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi094.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:30:53.130 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get clean 2024-04-15T21:30:53.175 INFO:teuthology.orchestra.run.smithi059.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:53.205 INFO:teuthology.orchestra.run.smithi059.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:53.291 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get update 2024-04-15T21:30:53.461 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:30:53.501 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:30:53.522 INFO:teuthology.orchestra.run.smithi059.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:53.523 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:30:53.527 INFO:teuthology.orchestra.run.smithi059.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:53.545 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:30:53.599 INFO:teuthology.orchestra.run.smithi059.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:30:53.606 INFO:teuthology.orchestra.run.smithi059.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:30:53.757 INFO:teuthology.orchestra.run.smithi059.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:30:53.758 INFO:teuthology.orchestra.run.smithi059.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:30:53.758 INFO:teuthology.orchestra.run.smithi059.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:30:53.804 INFO:teuthology.orchestra.run.smithi059.stdout:done 2024-04-15T21:30:54.321 DEBUG:teuthology.orchestra.run.smithi059:> dpkg -s linux-image-generic 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Package: linux-image-generic 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Status: install ok installed 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Priority: optional 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Section: kernel 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Installed-Size: 21 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Architecture: amd64 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Source: linux-meta 2024-04-15T21:30:54.341 INFO:teuthology.orchestra.run.smithi059.stdout:Version: 5.15.0.102.99 2024-04-15T21:30:54.342 INFO:teuthology.orchestra.run.smithi059.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:30:54.342 INFO:teuthology.orchestra.run.smithi059.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:30:54.342 INFO:teuthology.orchestra.run.smithi059.stdout:Recommends: thermald 2024-04-15T21:30:54.342 INFO:teuthology.orchestra.run.smithi059.stdout:Description: Generic Linux kernel image 2024-04-15T21:30:54.342 INFO:teuthology.orchestra.run.smithi059.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:30:54.342 INFO:teuthology.orchestra.run.smithi059.stdout: available. 2024-04-15T21:30:54.342 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-15T21:30:54.342 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:30:54.342 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:30:54.342 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T21:30:54.342 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi059.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:30:54.343 DEBUG:teuthology.orchestra.run.smithi059:> sudo apt-get clean 2024-04-15T21:30:54.549 DEBUG:teuthology.orchestra.run.smithi059:> sudo apt-get update 2024-04-15T21:30:54.809 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:30:54.810 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:30:54.841 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:30:54.855 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-04-15T21:30:54.872 DEBUG:teuthology.orchestra.run.smithi094:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:30:54.883 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:30:54.923 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-04-15T21:30:55.099 INFO:teuthology.orchestra.run.smithi094.stdout:Building dependency tree... 2024-04-15T21:30:55.099 INFO:teuthology.orchestra.run.smithi094.stdout:Reading state information... 2024-04-15T21:30:55.256 INFO:teuthology.orchestra.run.smithi094.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-15T21:30:55.256 INFO:teuthology.orchestra.run.smithi094.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:30:55.257 INFO:teuthology.orchestra.run.smithi094.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:30:55.257 INFO:teuthology.orchestra.run.smithi094.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:30:55.257 INFO:teuthology.orchestra.run.smithi094.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:30:55.257 INFO:teuthology.orchestra.run.smithi094.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:30:55.257 INFO:teuthology.orchestra.run.smithi094.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:30:55.257 INFO:teuthology.orchestra.run.smithi094.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:30:55.294 INFO:teuthology.orchestra.run.smithi094.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:30:55.296 DEBUG:teuthology.orchestra.run.smithi094:> dpkg -s linux-image-generic 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Package: linux-image-generic 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Status: install ok installed 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Priority: optional 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Section: kernel 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Installed-Size: 21 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Architecture: amd64 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Source: linux-meta 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Version: 5.15.0.102.99 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:30:55.352 INFO:teuthology.orchestra.run.smithi094.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:30:55.353 INFO:teuthology.orchestra.run.smithi094.stdout:Recommends: thermald 2024-04-15T21:30:55.353 INFO:teuthology.orchestra.run.smithi094.stdout:Description: Generic Linux kernel image 2024-04-15T21:30:55.353 INFO:teuthology.orchestra.run.smithi094.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:30:55.353 INFO:teuthology.orchestra.run.smithi094.stdout: available. 2024-04-15T21:30:55.353 DEBUG:teuthology.orchestra.run.smithi094:> mktemp 2024-04-15T21:30:55.397 INFO:teuthology.orchestra.run.smithi094.stdout:/tmp/tmp.3RqtCq3MMr 2024-04-15T21:30:55.397 DEBUG:teuthology.orchestra.run.smithi094:> sudo cp /boot/grub/grub.cfg /tmp/tmp.3RqtCq3MMr 2024-04-15T21:30:55.453 DEBUG:teuthology.orchestra.run.smithi094:> sudo chmod 0666 /tmp/tmp.3RqtCq3MMr 2024-04-15T21:30:55.577 DEBUG:teuthology.orchestra.remote:smithi094:/tmp/tmp.3RqtCq3MMr is 10KB 2024-04-15T21:30:55.589 DEBUG:teuthology.orchestra.run.smithi094:> rm -fr /tmp/tmp.3RqtCq3MMr 2024-04-15T21:30:55.594 DEBUG:teuthology.orchestra.run.smithi094:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-15T21:30:55.648 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-04-15T21:30:55.648 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-15T21:30:55.648 DEBUG:teuthology.orchestra.run.smithi094:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-15T21:30:55.729 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-15T21:30:55.729 DEBUG:teuthology.orchestra.run.smithi094:> sudo update-grub 2024-04-15T21:30:56.212 INFO:teuthology.orchestra.run.smithi059.stdout:Reading package lists... 2024-04-15T21:30:56.230 DEBUG:teuthology.orchestra.run.smithi059:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:30:56.292 INFO:teuthology.orchestra.run.smithi059.stdout:Reading package lists... 2024-04-15T21:30:56.484 INFO:teuthology.orchestra.run.smithi059.stdout:Building dependency tree... 2024-04-15T21:30:56.485 INFO:teuthology.orchestra.run.smithi059.stdout:Reading state information... 2024-04-15T21:30:56.647 INFO:teuthology.orchestra.run.smithi059.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-15T21:30:56.647 INFO:teuthology.orchestra.run.smithi059.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:30:56.647 INFO:teuthology.orchestra.run.smithi059.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:30:56.647 INFO:teuthology.orchestra.run.smithi059.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:30:56.648 INFO:teuthology.orchestra.run.smithi059.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:30:56.648 INFO:teuthology.orchestra.run.smithi059.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:30:56.649 INFO:teuthology.orchestra.run.smithi059.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:30:56.649 INFO:teuthology.orchestra.run.smithi059.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:30:56.687 INFO:teuthology.orchestra.run.smithi059.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:30:56.689 DEBUG:teuthology.orchestra.run.smithi059:> dpkg -s linux-image-generic 2024-04-15T21:30:56.704 INFO:teuthology.orchestra.run.smithi059.stdout:Package: linux-image-generic 2024-04-15T21:30:56.704 INFO:teuthology.orchestra.run.smithi059.stdout:Status: install ok installed 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Priority: optional 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Section: kernel 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Installed-Size: 21 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Architecture: amd64 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Source: linux-meta 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Version: 5.15.0.102.99 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Recommends: thermald 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout:Description: Generic Linux kernel image 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:30:56.705 INFO:teuthology.orchestra.run.smithi059.stdout: available. 2024-04-15T21:30:56.706 DEBUG:teuthology.orchestra.run.smithi059:> mktemp 2024-04-15T21:30:56.754 INFO:teuthology.orchestra.run.smithi059.stdout:/tmp/tmp.qPxW7YSbEN 2024-04-15T21:30:56.754 DEBUG:teuthology.orchestra.run.smithi059:> sudo cp /boot/grub/grub.cfg /tmp/tmp.qPxW7YSbEN 2024-04-15T21:30:56.816 DEBUG:teuthology.orchestra.run.smithi059:> sudo chmod 0666 /tmp/tmp.qPxW7YSbEN 2024-04-15T21:30:56.925 DEBUG:teuthology.orchestra.remote:smithi059:/tmp/tmp.qPxW7YSbEN is 10KB 2024-04-15T21:30:56.939 DEBUG:teuthology.orchestra.run.smithi059:> rm -fr /tmp/tmp.qPxW7YSbEN 2024-04-15T21:30:56.941 INFO:teuthology.orchestra.run.smithi094.stderr:Sourcing file `/etc/default/grub' 2024-04-15T21:30:56.942 INFO:teuthology.orchestra.run.smithi094.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:30:56.944 DEBUG:teuthology.orchestra.run.smithi059:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-15T21:30:56.945 INFO:teuthology.orchestra.run.smithi094.stderr:Generating grub configuration file ... 2024-04-15T21:30:56.996 DEBUG:teuthology.orchestra.run.smithi059:> set -ex 2024-04-15T21:30:56.996 DEBUG:teuthology.orchestra.run.smithi059:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-15T21:30:56.997 DEBUG:teuthology.orchestra.run.smithi059:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-15T21:30:57.066 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-15T21:30:57.066 DEBUG:teuthology.orchestra.run.smithi059:> sudo update-grub 2024-04-15T21:30:57.175 INFO:teuthology.orchestra.run.smithi094.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:57.181 INFO:teuthology.orchestra.run.smithi094.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:57.414 INFO:teuthology.orchestra.run.smithi094.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:57.420 INFO:teuthology.orchestra.run.smithi094.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:57.463 INFO:teuthology.orchestra.run.smithi094.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:30:57.468 INFO:teuthology.orchestra.run.smithi094.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:30:57.599 INFO:teuthology.orchestra.run.smithi094.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:30:57.600 INFO:teuthology.orchestra.run.smithi094.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:30:57.600 INFO:teuthology.orchestra.run.smithi094.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:30:57.618 INFO:teuthology.orchestra.run.smithi094.stderr:done 2024-04-15T21:30:57.620 DEBUG:teuthology.orchestra.run.smithi094:> sudo shutdown -r now 2024-04-15T21:30:58.345 INFO:teuthology.orchestra.run.smithi059.stderr:Sourcing file `/etc/default/grub' 2024-04-15T21:30:58.346 INFO:teuthology.orchestra.run.smithi059.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:30:58.353 INFO:teuthology.orchestra.run.smithi059.stderr:Generating grub configuration file ... 2024-04-15T21:30:58.570 INFO:teuthology.orchestra.run.smithi059.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:30:58.576 INFO:teuthology.orchestra.run.smithi059.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:30:58.846 INFO:teuthology.orchestra.run.smithi059.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:30:58.851 INFO:teuthology.orchestra.run.smithi059.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:30:58.894 INFO:teuthology.orchestra.run.smithi059.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:30:58.899 INFO:teuthology.orchestra.run.smithi059.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:30:59.022 INFO:teuthology.orchestra.run.smithi059.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:30:59.023 INFO:teuthology.orchestra.run.smithi059.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:30:59.023 INFO:teuthology.orchestra.run.smithi059.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:30:59.033 INFO:teuthology.orchestra.run.smithi059.stderr:done 2024-04-15T21:30:59.035 DEBUG:teuthology.orchestra.run.smithi059:> sudo shutdown -r now 2024-04-15T21:31:21.894 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T21:31:21.895 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-15T21:31:21.896 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:31:27.626 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-15T21:31:27.626 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-04-15T21:31:27.627 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:31:29.038 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T21:31:29.038 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi059.front.sepia.ceph.com' 2024-04-15T21:31:29.039 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi059.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:31:40.447 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.69 2024-04-15T21:31:46.078 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.94 2024-04-15T21:31:47.358 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.59 2024-04-15T21:31:49.450 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-15T21:31:49.451 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:31:52.514 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.69 2024-04-15T21:31:55.082 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-04-15T21:31:55.083 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:31:56.360 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi059.front.sepia.ceph.com' 2024-04-15T21:31:56.361 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi059.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:31:58.142 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.94 2024-04-15T21:31:59.422 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.59 2024-04-15T21:32:04.521 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-15T21:32:04.522 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:32:10.146 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-04-15T21:32:10.147 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:32:11.424 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi059.front.sepia.ceph.com' 2024-04-15T21:32:11.425 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi059.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:32:28.574 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.94 2024-04-15T21:32:36.323 DEBUG:teuthology.orchestra.run.smithi069:> true 2024-04-15T21:32:36.952 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-15T21:32:36.953 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-102-generic"... 2024-04-15T21:32:36.953 DEBUG:teuthology.orchestra.run.smithi069:> uname -r 2024-04-15T21:32:36.998 INFO:teuthology.orchestra.run.smithi069.stdout:5.15.0-102-generic 2024-04-15T21:32:36.999 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-15T21:32:36.999 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T21:32:36.999 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-15T21:32:37.999 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T21:32:38.000 DEBUG:teuthology.orchestra.run.smithi069:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T21:32:38.062 INFO:teuthology.orchestra.run.smithi069.stdout:ttyS1 2024-04-15T21:32:38.084 DEBUG:teuthology.parallel:result is None 2024-04-15T21:32:43.576 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-04-15T21:32:43.577 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:32:44.148 DEBUG:teuthology.orchestra.run.smithi094:> true 2024-04-15T21:32:45.356 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-04-15T21:32:45.357 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-102-generic"... 2024-04-15T21:32:45.357 DEBUG:teuthology.orchestra.run.smithi094:> uname -r 2024-04-15T21:32:45.406 INFO:teuthology.orchestra.run.smithi094.stdout:5.15.0-102-generic 2024-04-15T21:32:45.406 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-15T21:32:45.406 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T21:32:45.406 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-15T21:32:46.407 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-15T21:32:46.407 DEBUG:teuthology.orchestra.run.smithi094:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T21:32:46.820 INFO:teuthology.orchestra.run.smithi094.stdout:ttyS1 2024-04-15T21:32:46.858 DEBUG:teuthology.parallel:result is None 2024-04-15T21:33:11.427 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T21:33:26.428 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi059.front.sepia.ceph.com' 2024-04-15T21:33:26.429 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi059.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:33:26.711 DEBUG:teuthology.orchestra.run.smithi059:> true 2024-04-15T21:33:27.369 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi059.front.sepia.ceph.com' 2024-04-15T21:33:27.369 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-102-generic"... 2024-04-15T21:33:27.370 DEBUG:teuthology.orchestra.run.smithi059:> uname -r 2024-04-15T21:33:27.418 INFO:teuthology.orchestra.run.smithi059.stdout:5.15.0-102-generic 2024-04-15T21:33:27.419 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-15T21:33:27.419 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T21:33:27.419 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-15T21:33:28.420 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T21:33:28.420 DEBUG:teuthology.orchestra.run.smithi059:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T21:33:28.494 INFO:teuthology.orchestra.run.smithi059.stdout:ttyS1 2024-04-15T21:33:28.536 DEBUG:teuthology.parallel:result is None 2024-04-15T21:33:28.536 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T21:33:28.545 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T21:33:28.546 DEBUG:teuthology.orchestra.run.smithi059:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T21:33:28.548 DEBUG:teuthology.orchestra.run.smithi069:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T21:33:28.550 DEBUG:teuthology.orchestra.run.smithi094:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T21:33:28.557 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T21:33:28.567 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T21:33:28.580 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T21:33:28.580 DEBUG:teuthology.orchestra.run.smithi059:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T21:33:28.595 DEBUG:teuthology.orchestra.run.smithi069:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T21:33:28.599 DEBUG:teuthology.orchestra.run.smithi094:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T21:33:28.687 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T21:33:28.694 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T21:33:28.694 DEBUG:teuthology.orchestra.run.smithi059:> 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-15T21:33:28.697 DEBUG:teuthology.orchestra.run.smithi069:> 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-15T21:33:28.699 DEBUG:teuthology.orchestra.run.smithi094:> 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-15T21:33:28.713 INFO:teuthology.orchestra.run.smithi059.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:33:28.718 INFO:teuthology.orchestra.run.smithi069.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:33:28.722 INFO:teuthology.orchestra.run.smithi059.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:33:28.724 INFO:teuthology.orchestra.run.smithi094.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:33:28.726 INFO:teuthology.orchestra.run.smithi069.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:33:28.732 INFO:teuthology.orchestra.run.smithi094.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:33:28.733 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T21:33:28.740 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T21:33:28.741 DEBUG:teuthology.orchestra.run.smithi059:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T21:33:28.769 DEBUG:teuthology.orchestra.run.smithi069:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T21:33:28.772 DEBUG:teuthology.orchestra.run.smithi094:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T21:33:28.788 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T21:33:28.798 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T21:33:28.798 DEBUG:teuthology.orchestra.run.smithi059:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T21:33:28.823 DEBUG:teuthology.orchestra.run.smithi069:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T21:33:28.827 DEBUG:teuthology.orchestra.run.smithi094:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T21:33:28.837 DEBUG:teuthology.orchestra.run.smithi059:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:33:28.875 DEBUG:teuthology.orchestra.run.smithi059:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:33:28.922 DEBUG:teuthology.orchestra.run.smithi059:> set -ex 2024-04-15T21:33:28.922 DEBUG:teuthology.orchestra.run.smithi059:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T21:33:28.984 DEBUG:teuthology.orchestra.run.smithi069:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:33:28.990 DEBUG:teuthology.orchestra.run.smithi069:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:33:29.038 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-15T21:33:29.038 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T21:33:29.110 DEBUG:teuthology.orchestra.run.smithi094:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:33:29.116 DEBUG:teuthology.orchestra.run.smithi094:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:33:29.165 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-04-15T21:33:29.165 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T21:33:29.228 DEBUG:teuthology.orchestra.run.smithi059:> sudo service rsyslog restart 2024-04-15T21:33:29.230 DEBUG:teuthology.orchestra.run.smithi069:> sudo service rsyslog restart 2024-04-15T21:33:29.233 DEBUG:teuthology.orchestra.run.smithi094:> sudo service rsyslog restart 2024-04-15T21:33:29.307 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T21:33:29.316 INFO:teuthology.task.internal:Starting timer... 2024-04-15T21:33:29.316 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T21:33:29.329 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T21:33:29.339 DEBUG:teuthology.task.selinux:Excluding smithi059: OS 'ubuntu' does not support SELinux 2024-04-15T21:33:29.339 DEBUG:teuthology.task.selinux:Excluding smithi069: OS 'ubuntu' does not support SELinux 2024-04-15T21:33:29.340 DEBUG:teuthology.task.selinux:Excluding smithi094: OS 'ubuntu' does not support SELinux 2024-04-15T21:33:29.340 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T21:33:29.340 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-04-15T21:33:29.340 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T21:33:29.340 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T21:33:29.351 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-15T21:33:29.357 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-15T21:33:29.481 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T21:33:29.494 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-15T21:33:29.496 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi059.front.sepia.ceph.com,smithi069.front.sepia.ceph.com,smithi094.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T21:40:33.416 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi059.front.sepia.ceph.com'), Remote(name='ubuntu@smithi069.front.sepia.ceph.com'), Remote(name='ubuntu@smithi094.front.sepia.ceph.com')] 2024-04-15T21:40:33.417 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi059.front.sepia.ceph.com' 2024-04-15T21:40:33.418 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi059.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:40:33.506 DEBUG:teuthology.orchestra.run.smithi059:> true 2024-04-15T21:40:33.589 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi059.front.sepia.ceph.com' 2024-04-15T21:40:33.590 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-15T21:40:33.590 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi069.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:40:33.674 DEBUG:teuthology.orchestra.run.smithi069:> true 2024-04-15T21:40:33.754 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi069.front.sepia.ceph.com' 2024-04-15T21:40:33.755 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-04-15T21:40:33.756 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi094.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:40:33.840 DEBUG:teuthology.orchestra.run.smithi094:> true 2024-04-15T21:40:33.918 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi094.front.sepia.ceph.com' 2024-04-15T21:40:33.918 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T21:40:33.929 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T21:40:33.929 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T21:40:33.930 DEBUG:teuthology.orchestra.run.smithi059:> 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-15T21:40:33.932 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T21:40:33.932 DEBUG:teuthology.orchestra.run.smithi069:> 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-15T21:40:33.935 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T21:40:33.935 DEBUG:teuthology.orchestra.run.smithi094:> 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-15T21:40:33.961 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-15T21:40:33.961 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Command line: ntpd -gq 2024-04-15T21:40:33.961 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: ---------------------------------------------------- 2024-04-15T21:40:33.961 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: ntp-4 is maintained by Network Time Foundation, 2024-04-15T21:40:33.961 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-15T21:40:33.961 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: corporation. Support and training for ntp-4 are 2024-04-15T21:40:33.961 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: available at https://www.nwtime.org/support 2024-04-15T21:40:33.961 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: ---------------------------------------------------- 2024-04-15T21:40:33.963 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: proto: precision = 0.047 usec (-24) 2024-04-15T21:40:33.964 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: basedate set to 2022-02-04 2024-04-15T21:40:33.964 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: gps base set to 2022-02-06 (week 2196) 2024-04-15T21:40:33.964 INFO:teuthology.orchestra.run.smithi069.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:40:33.965 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-15T21:40:33.965 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Command line: ntpd -gq 2024-04-15T21:40:33.965 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: ---------------------------------------------------- 2024-04-15T21:40:33.965 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: ntp-4 is maintained by Network Time Foundation, 2024-04-15T21:40:33.965 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-15T21:40:33.965 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: corporation. Support and training for ntp-4 are 2024-04-15T21:40:33.965 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: available at https://www.nwtime.org/support 2024-04-15T21:40:33.965 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: ---------------------------------------------------- 2024-04-15T21:40:33.966 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: proto: precision = 0.068 usec (-24) 2024-04-15T21:40:33.966 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: basedate set to 2022-02-04 2024-04-15T21:40:33.966 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: gps base set to 2022-02-06 (week 2196) 2024-04-15T21:40:33.966 INFO:teuthology.orchestra.run.smithi059.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:40:33.966 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:40:33.966 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:40:33.967 INFO:teuthology.orchestra.run.smithi069.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:40:33.967 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:40:33.967 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:40:33.968 INFO:teuthology.orchestra.run.smithi059.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:40:33.969 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Listen and drop on 0 v6wildcard [::]:123 2024-04-15T21:40:33.969 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-15T21:40:33.969 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Listen normally on 2 lo 127.0.0.1:123 2024-04-15T21:40:33.969 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Listen normally on 3 enp3s0f1 172.21.15.69:123 2024-04-15T21:40:33.969 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Listen normally on 4 lo [::1]:123 2024-04-15T21:40:33.970 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d737%5]:123 2024-04-15T21:40:33.970 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:33 ntpd[17219]: Listening on routing socket on fd #22 for interface updates 2024-04-15T21:40:33.970 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Listen and drop on 0 v6wildcard [::]:123 2024-04-15T21:40:33.970 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-15T21:40:33.971 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Listen normally on 2 lo 127.0.0.1:123 2024-04-15T21:40:33.971 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Listen normally on 3 ens1f0 172.21.15.59:123 2024-04-15T21:40:33.971 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Listen normally on 4 lo [::1]:123 2024-04-15T21:40:33.971 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:192a%4]:123 2024-04-15T21:40:33.971 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:33 ntpd[17096]: Listening on routing socket on fd #22 for interface updates 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Command line: ntpd -gq 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: ---------------------------------------------------- 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: ntp-4 is maintained by Network Time Foundation, 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: corporation. Support and training for ntp-4 are 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: available at https://www.nwtime.org/support 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: ---------------------------------------------------- 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: proto: precision = 0.047 usec (-24) 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: basedate set to 2022-02-04 2024-04-15T21:40:33.991 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: gps base set to 2022-02-06 (week 2196) 2024-04-15T21:40:33.992 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:40:33.992 INFO:teuthology.orchestra.run.smithi094.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:40:33.992 INFO:teuthology.orchestra.run.smithi094.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:40:33.993 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:40:33.993 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Listen and drop on 0 v6wildcard [::]:123 2024-04-15T21:40:33.993 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-15T21:40:33.993 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Listen normally on 2 lo 127.0.0.1:123 2024-04-15T21:40:33.993 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Listen normally on 3 enp3s0f1 172.21.15.94:123 2024-04-15T21:40:33.993 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Listen normally on 4 lo [::1]:123 2024-04-15T21:40:33.993 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d763%5]:123 2024-04-15T21:40:33.994 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:33 ntpd[17196]: Listening on routing socket on fd #22 for interface updates 2024-04-15T21:40:34.961 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:34 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:34 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:34 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:34 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:34 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:34 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:34 ntpd[17219]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:34.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:34 ntpd[17219]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:34.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:34 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:34 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:34 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:34 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:34 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.964 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:34 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.964 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:34 ntpd[17096]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:34.964 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:34 ntpd[17096]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:34.991 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:34 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.991 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:34 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:34 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:34 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:34 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:34.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:34 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:34.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:34 ntpd[17196]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:34.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:34 ntpd[17196]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:35.961 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:35 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:35.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:35 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:35.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:35 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:35.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:35 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:35.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:35 ntpd[17219]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:35.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:35 ntpd[17219]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:36.961 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:36 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:36 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:36 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:36 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:36 ntpd[17219]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:36.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:36 ntpd[17219]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:36.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:36 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:36 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:36 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:36 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:36 ntpd[17096]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:36.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:36 ntpd[17096]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:36.994 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:36.994 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:36.994 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:36.994 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:36.994 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:36 ntpd[17196]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:37.961 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:37 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:37.961 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:37 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:37.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:37 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:37.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:37 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:37.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:37 ntpd[17219]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:37.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:37 ntpd[17219]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:37.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:37 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:37.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:37 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:37.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:37 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:37.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:37 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:37.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:37 ntpd[17096]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:37.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:37 ntpd[17096]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:38.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:38.963 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:38.963 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.963 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.963 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:38.963 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:38 ntpd[17219]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:38.964 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:38.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:38 ntpd[17096]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:38.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:38.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:38 ntpd[17196]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:39.961 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:39 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:39.961 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:39 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:39.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:39 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:39.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:39 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:39.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:39 ntpd[17219]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:39.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:39 ntpd[17219]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:39.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:39 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:39.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:39 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:39.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:39 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:39.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:39 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:39.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:39 ntpd[17096]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:39.963 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:39 ntpd[17096]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:40.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:40.962 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:40.963 INFO:teuthology.orchestra.run.smithi069.stdout:15 Apr 21:40:40 ntpd[17219]: ntpd: time slew +0.000197 s 2024-04-15T21:40:40.963 INFO:teuthology.orchestra.run.smithi069.stdout:ntpd: time slew +0.000197s 2024-04-15T21:40:40.963 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-15T21:40:40.963 INFO:teuthology.orchestra.run.smithi069.stderr:15 Apr 21:40:40 ntpd[17219]: can't open /var/log/ntpstats/loopstats.20240415: Permission denied 2024-04-15T21:40:40.964 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:40.965 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:40.966 INFO:teuthology.orchestra.run.smithi059.stdout:15 Apr 21:40:40 ntpd[17096]: ntpd: time slew -0.001044 s 2024-04-15T21:40:40.966 INFO:teuthology.orchestra.run.smithi059.stdout:ntpd: time slew -0.001044s 2024-04-15T21:40:40.966 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-15T21:40:40.966 INFO:teuthology.orchestra.run.smithi059.stderr:15 Apr 21:40:40 ntpd[17096]: can't open /var/log/ntpstats/loopstats.20240415: Permission denied 2024-04-15T21:40:40.991 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.991 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stdout:15 Apr 21:40:40 ntpd[17196]: ntpd: time slew -0.000114 s 2024-04-15T21:40:40.992 INFO:teuthology.orchestra.run.smithi094.stdout:ntpd: time slew -0.000114s 2024-04-15T21:40:40.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-15T21:40:40.993 INFO:teuthology.orchestra.run.smithi094.stderr:15 Apr 21:40:40 ntpd[17196]: can't open /var/log/ntpstats/loopstats.20240415: Permission denied 2024-04-15T21:40:41.007 INFO:teuthology.orchestra.run.smithi069.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:40:41.007 INFO:teuthology.orchestra.run.smithi069.stdout:============================================================================== 2024-04-15T21:40:41.007 INFO:teuthology.orchestra.run.smithi069.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.007 INFO:teuthology.orchestra.run.smithi069.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.007 INFO:teuthology.orchestra.run.smithi069.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.007 INFO:teuthology.orchestra.run.smithi069.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.014 INFO:teuthology.orchestra.run.smithi059.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:40:41.014 INFO:teuthology.orchestra.run.smithi059.stdout:============================================================================== 2024-04-15T21:40:41.015 INFO:teuthology.orchestra.run.smithi059.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.015 INFO:teuthology.orchestra.run.smithi059.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.015 INFO:teuthology.orchestra.run.smithi059.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.015 INFO:teuthology.orchestra.run.smithi059.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.046 INFO:teuthology.orchestra.run.smithi094.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:40:41.046 INFO:teuthology.orchestra.run.smithi094.stdout:============================================================================== 2024-04-15T21:40:41.046 INFO:teuthology.orchestra.run.smithi094.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.046 INFO:teuthology.orchestra.run.smithi094.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.046 INFO:teuthology.orchestra.run.smithi094.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.046 INFO:teuthology.orchestra.run.smithi094.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:40:41.047 INFO:teuthology.run_tasks:Running task install... 2024-04-15T21:40:41.059 DEBUG:teuthology.task.install:project ceph 2024-04-15T21:40:41.060 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'}} 2024-04-15T21:40:41.060 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T21:40:41.060 INFO:teuthology.task.install:Using flavor: default 2024-04-15T21:40:41.066 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-15T21:40:41.066 INFO:teuthology.task.install:extra packages: [] 2024-04-15T21:40:41.066 DEBUG:teuthology.orchestra.run.smithi059:> sudo apt-key list | grep Ceph 2024-04-15T21:40:41.067 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-key list | grep Ceph 2024-04-15T21:40:41.067 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-key list | grep Ceph 2024-04-15T21:40:41.128 INFO:teuthology.orchestra.run.smithi069.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-15T21:40:41.132 INFO:teuthology.orchestra.run.smithi059.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-15T21:40:41.148 INFO:teuthology.orchestra.run.smithi094.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-15T21:40:41.156 INFO:teuthology.orchestra.run.smithi069.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-15T21:40:41.157 INFO:teuthology.orchestra.run.smithi069.stdout:uid [ unknown] Ceph.com (release key) 2024-04-15T21:40:41.157 INFO:teuthology.task.install.deb:Installing packages: 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 on remote deb x86_64 2024-04-15T21:40:41.157 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:40:41.163 INFO:teuthology.orchestra.run.smithi059.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-15T21:40:41.163 INFO:teuthology.orchestra.run.smithi059.stdout:uid [ unknown] Ceph.com (release key) 2024-04-15T21:40:41.163 INFO:teuthology.task.install.deb:Installing packages: 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 on remote deb x86_64 2024-04-15T21:40:41.164 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:40:41.177 INFO:teuthology.orchestra.run.smithi094.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-15T21:40:41.177 INFO:teuthology.orchestra.run.smithi094.stdout:uid [ unknown] Ceph.com (release key) 2024-04-15T21:40:41.178 INFO:teuthology.task.install.deb:Installing packages: 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 on remote deb x86_64 2024-04-15T21:40:41.178 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:40:41.333 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default/ 2024-04-15T21:40:41.333 INFO:teuthology.task.install.deb:Package version is 19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:40:41.382 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default/ 2024-04-15T21:40:41.382 INFO:teuthology.task.install.deb:Package version is 19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:40:41.389 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default/ 2024-04-15T21:40:41.389 INFO:teuthology.task.install.deb:Package version is 19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:40:41.455 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-04-15T21:40:41.455 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-15T21:40:41.468 DEBUG:teuthology.orchestra.run.smithi094:> sudo apt-get update 2024-04-15T21:40:41.492 DEBUG:teuthology.orchestra.run.smithi059:> set -ex 2024-04-15T21:40:41.492 DEBUG:teuthology.orchestra.run.smithi059:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-15T21:40:41.507 DEBUG:teuthology.orchestra.run.smithi059:> sudo apt-get update 2024-04-15T21:40:41.569 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-15T21:40:41.569 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-15T21:40:41.584 DEBUG:teuthology.orchestra.run.smithi069:> sudo apt-get update 2024-04-15T21:40:41.637 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:40:41.637 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:40:41.651 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:40:41.672 INFO:teuthology.orchestra.run.smithi094.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:40:41.681 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:40:41.685 INFO:teuthology.orchestra.run.smithi094.stdout:Ign:5 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy InRelease 2024-04-15T21:40:41.695 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:40:41.708 INFO:teuthology.orchestra.run.smithi094.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-15T21:40:41.715 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:40:41.729 INFO:teuthology.orchestra.run.smithi094.stdout:Ign:7 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-15T21:40:41.730 INFO:teuthology.orchestra.run.smithi059.stdout:Ign:4 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy InRelease 2024-04-15T21:40:41.751 INFO:teuthology.orchestra.run.smithi094.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,407 B] 2024-04-15T21:40:41.752 INFO:teuthology.orchestra.run.smithi059.stdout:Get:5 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-15T21:40:41.756 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:40:41.774 INFO:teuthology.orchestra.run.smithi059.stdout:Ign:6 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-15T21:40:41.783 INFO:teuthology.orchestra.run.smithi094.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-04-15T21:40:41.795 INFO:teuthology.orchestra.run.smithi059.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-04-15T21:40:41.801 INFO:teuthology.orchestra.run.smithi059.stdout:Hit:8 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:40:41.823 INFO:teuthology.orchestra.run.smithi059.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,407 B] 2024-04-15T21:40:41.862 INFO:teuthology.orchestra.run.smithi069.stdout:Ign:2 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy InRelease 2024-04-15T21:40:41.872 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:40:41.898 INFO:teuthology.orchestra.run.smithi069.stdout:Get:4 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-15T21:40:41.935 INFO:teuthology.orchestra.run.smithi069.stdout:Ign:5 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-15T21:40:41.956 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:40:41.971 INFO:teuthology.orchestra.run.smithi069.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,407 B] 2024-04-15T21:40:41.974 INFO:teuthology.orchestra.run.smithi094.stdout:Fetched 28.9 kB in 0s (87.2 kB/s) 2024-04-15T21:40:42.013 INFO:teuthology.orchestra.run.smithi069.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-04-15T21:40:42.036 INFO:teuthology.orchestra.run.smithi069.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:40:42.039 INFO:teuthology.orchestra.run.smithi059.stdout:Fetched 28.9 kB in 0s (82.9 kB/s) 2024-04-15T21:40:42.171 INFO:teuthology.orchestra.run.smithi069.stdout:Fetched 28.9 kB in 0s (70.0 kB/s) 2024-04-15T21:40:42.922 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-04-15T21:40:42.939 DEBUG:teuthology.orchestra.run.smithi094:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2114-ga9a752df-1jammy cephadm=19.0.0-2114-ga9a752df-1jammy ceph-mds=19.0.0-2114-ga9a752df-1jammy ceph-mgr=19.0.0-2114-ga9a752df-1jammy ceph-common=19.0.0-2114-ga9a752df-1jammy ceph-fuse=19.0.0-2114-ga9a752df-1jammy ceph-test=19.0.0-2114-ga9a752df-1jammy ceph-volume=19.0.0-2114-ga9a752df-1jammy radosgw=19.0.0-2114-ga9a752df-1jammy python3-rados=19.0.0-2114-ga9a752df-1jammy python3-rgw=19.0.0-2114-ga9a752df-1jammy python3-cephfs=19.0.0-2114-ga9a752df-1jammy python3-rbd=19.0.0-2114-ga9a752df-1jammy libcephfs2=19.0.0-2114-ga9a752df-1jammy libcephfs-dev=19.0.0-2114-ga9a752df-1jammy librados2=19.0.0-2114-ga9a752df-1jammy librbd1=19.0.0-2114-ga9a752df-1jammy rbd-fuse=19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:40:42.999 INFO:teuthology.orchestra.run.smithi059.stdout:Reading package lists... 2024-04-15T21:40:43.000 INFO:teuthology.orchestra.run.smithi094.stdout:Reading package lists... 2024-04-15T21:40:43.016 DEBUG:teuthology.orchestra.run.smithi059:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2114-ga9a752df-1jammy cephadm=19.0.0-2114-ga9a752df-1jammy ceph-mds=19.0.0-2114-ga9a752df-1jammy ceph-mgr=19.0.0-2114-ga9a752df-1jammy ceph-common=19.0.0-2114-ga9a752df-1jammy ceph-fuse=19.0.0-2114-ga9a752df-1jammy ceph-test=19.0.0-2114-ga9a752df-1jammy ceph-volume=19.0.0-2114-ga9a752df-1jammy radosgw=19.0.0-2114-ga9a752df-1jammy python3-rados=19.0.0-2114-ga9a752df-1jammy python3-rgw=19.0.0-2114-ga9a752df-1jammy python3-cephfs=19.0.0-2114-ga9a752df-1jammy python3-rbd=19.0.0-2114-ga9a752df-1jammy libcephfs2=19.0.0-2114-ga9a752df-1jammy libcephfs-dev=19.0.0-2114-ga9a752df-1jammy librados2=19.0.0-2114-ga9a752df-1jammy librbd1=19.0.0-2114-ga9a752df-1jammy rbd-fuse=19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:40:43.067 INFO:teuthology.orchestra.run.smithi059.stdout:Reading package lists... 2024-04-15T21:40:43.070 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-15T21:40:43.085 DEBUG:teuthology.orchestra.run.smithi069:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2114-ga9a752df-1jammy cephadm=19.0.0-2114-ga9a752df-1jammy ceph-mds=19.0.0-2114-ga9a752df-1jammy ceph-mgr=19.0.0-2114-ga9a752df-1jammy ceph-common=19.0.0-2114-ga9a752df-1jammy ceph-fuse=19.0.0-2114-ga9a752df-1jammy ceph-test=19.0.0-2114-ga9a752df-1jammy ceph-volume=19.0.0-2114-ga9a752df-1jammy radosgw=19.0.0-2114-ga9a752df-1jammy python3-rados=19.0.0-2114-ga9a752df-1jammy python3-rgw=19.0.0-2114-ga9a752df-1jammy python3-cephfs=19.0.0-2114-ga9a752df-1jammy python3-rbd=19.0.0-2114-ga9a752df-1jammy libcephfs2=19.0.0-2114-ga9a752df-1jammy libcephfs-dev=19.0.0-2114-ga9a752df-1jammy librados2=19.0.0-2114-ga9a752df-1jammy librbd1=19.0.0-2114-ga9a752df-1jammy rbd-fuse=19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:40:43.145 INFO:teuthology.orchestra.run.smithi069.stdout:Reading package lists... 2024-04-15T21:40:43.196 INFO:teuthology.orchestra.run.smithi094.stdout:Building dependency tree... 2024-04-15T21:40:43.196 INFO:teuthology.orchestra.run.smithi094.stdout:Reading state information... 2024-04-15T21:40:43.247 INFO:teuthology.orchestra.run.smithi059.stdout:Building dependency tree... 2024-04-15T21:40:43.247 INFO:teuthology.orchestra.run.smithi059.stdout:Reading state information... 2024-04-15T21:40:43.324 INFO:teuthology.orchestra.run.smithi069.stdout:Building dependency tree... 2024-04-15T21:40:43.324 INFO:teuthology.orchestra.run.smithi069.stdout:Reading state information... 2024-04-15T21:40:43.393 INFO:teuthology.orchestra.run.smithi094.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:40:43.393 INFO:teuthology.orchestra.run.smithi094.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:40:43.394 INFO:teuthology.orchestra.run.smithi094.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:40:43.394 INFO:teuthology.orchestra.run.smithi094.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:40:43.394 INFO:teuthology.orchestra.run.smithi094.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:40:43.394 INFO:teuthology.orchestra.run.smithi094.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:40:43.394 INFO:teuthology.orchestra.run.smithi094.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:40:43.395 INFO:teuthology.orchestra.run.smithi094.stdout:The following additional packages will be installed: 2024-04-15T21:40:43.395 INFO:teuthology.orchestra.run.smithi094.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-15T21:40:43.395 INFO:teuthology.orchestra.run.smithi094.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-15T21:40:43.395 INFO:teuthology.orchestra.run.smithi094.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-15T21:40:43.395 INFO:teuthology.orchestra.run.smithi094.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-15T21:40:43.396 INFO:teuthology.orchestra.run.smithi094.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-15T21:40:43.396 INFO:teuthology.orchestra.run.smithi094.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-15T21:40:43.396 INFO:teuthology.orchestra.run.smithi094.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-15T21:40:43.397 INFO:teuthology.orchestra.run.smithi094.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-15T21:40:43.398 INFO:teuthology.orchestra.run.smithi094.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-15T21:40:43.398 INFO:teuthology.orchestra.run.smithi094.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-15T21:40:43.398 INFO:teuthology.orchestra.run.smithi094.stdout: xmlstarlet zip 2024-04-15T21:40:43.398 INFO:teuthology.orchestra.run.smithi094.stdout:Suggested packages: 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout:Recommended packages: 2024-04-15T21:40:43.399 INFO:teuthology.orchestra.run.smithi094.stdout: btrfs-tools 2024-04-15T21:40:43.426 INFO:teuthology.orchestra.run.smithi059.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:40:43.427 INFO:teuthology.orchestra.run.smithi059.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:40:43.427 INFO:teuthology.orchestra.run.smithi059.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:40:43.427 INFO:teuthology.orchestra.run.smithi059.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:40:43.427 INFO:teuthology.orchestra.run.smithi059.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:40:43.427 INFO:teuthology.orchestra.run.smithi059.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:40:43.428 INFO:teuthology.orchestra.run.smithi059.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:40:43.428 INFO:teuthology.orchestra.run.smithi059.stdout:The following additional packages will be installed: 2024-04-15T21:40:43.428 INFO:teuthology.orchestra.run.smithi059.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-15T21:40:43.428 INFO:teuthology.orchestra.run.smithi059.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-15T21:40:43.429 INFO:teuthology.orchestra.run.smithi059.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-15T21:40:43.429 INFO:teuthology.orchestra.run.smithi059.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-15T21:40:43.429 INFO:teuthology.orchestra.run.smithi059.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-15T21:40:43.429 INFO:teuthology.orchestra.run.smithi059.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-15T21:40:43.429 INFO:teuthology.orchestra.run.smithi059.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-15T21:40:43.429 INFO:teuthology.orchestra.run.smithi059.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-15T21:40:43.430 INFO:teuthology.orchestra.run.smithi059.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-15T21:40:43.431 INFO:teuthology.orchestra.run.smithi059.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-15T21:40:43.431 INFO:teuthology.orchestra.run.smithi059.stdout: xmlstarlet zip 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout:Suggested packages: 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout:Recommended packages: 2024-04-15T21:40:43.434 INFO:teuthology.orchestra.run.smithi059.stdout: btrfs-tools 2024-04-15T21:40:43.495 INFO:teuthology.orchestra.run.smithi069.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:40:43.495 INFO:teuthology.orchestra.run.smithi069.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:40:43.496 INFO:teuthology.orchestra.run.smithi069.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:40:43.496 INFO:teuthology.orchestra.run.smithi069.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:40:43.496 INFO:teuthology.orchestra.run.smithi069.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:40:43.497 INFO:teuthology.orchestra.run.smithi069.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:40:43.497 INFO:teuthology.orchestra.run.smithi069.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:40:43.497 INFO:teuthology.orchestra.run.smithi069.stdout:The following additional packages will be installed: 2024-04-15T21:40:43.497 INFO:teuthology.orchestra.run.smithi069.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-15T21:40:43.497 INFO:teuthology.orchestra.run.smithi069.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-15T21:40:43.497 INFO:teuthology.orchestra.run.smithi069.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-15T21:40:43.497 INFO:teuthology.orchestra.run.smithi069.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-15T21:40:43.498 INFO:teuthology.orchestra.run.smithi069.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-15T21:40:43.498 INFO:teuthology.orchestra.run.smithi069.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-15T21:40:43.498 INFO:teuthology.orchestra.run.smithi069.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-15T21:40:43.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-15T21:40:43.498 INFO:teuthology.orchestra.run.smithi069.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-15T21:40:43.499 INFO:teuthology.orchestra.run.smithi069.stdout: xmlstarlet zip 2024-04-15T21:40:43.500 INFO:teuthology.orchestra.run.smithi069.stdout:Suggested packages: 2024-04-15T21:40:43.500 INFO:teuthology.orchestra.run.smithi069.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-15T21:40:43.500 INFO:teuthology.orchestra.run.smithi069.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-15T21:40:43.500 INFO:teuthology.orchestra.run.smithi069.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-15T21:40:43.500 INFO:teuthology.orchestra.run.smithi069.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-15T21:40:43.501 INFO:teuthology.orchestra.run.smithi069.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-15T21:40:43.501 INFO:teuthology.orchestra.run.smithi069.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-15T21:40:43.501 INFO:teuthology.orchestra.run.smithi069.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-15T21:40:43.501 INFO:teuthology.orchestra.run.smithi069.stdout:Recommended packages: 2024-04-15T21:40:43.501 INFO:teuthology.orchestra.run.smithi069.stdout: btrfs-tools 2024-04-15T21:40:43.502 INFO:teuthology.orchestra.run.smithi094.stdout:The following NEW packages will be installed: 2024-04-15T21:40:43.502 INFO:teuthology.orchestra.run.smithi094.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-15T21:40:43.502 INFO:teuthology.orchestra.run.smithi094.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-15T21:40:43.502 INFO:teuthology.orchestra.run.smithi094.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-15T21:40:43.502 INFO:teuthology.orchestra.run.smithi094.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-15T21:40:43.502 INFO:teuthology.orchestra.run.smithi094.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-15T21:40:43.502 INFO:teuthology.orchestra.run.smithi094.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:40:43.503 INFO:teuthology.orchestra.run.smithi094.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-15T21:40:43.504 INFO:teuthology.orchestra.run.smithi094.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-15T21:40:43.534 INFO:teuthology.orchestra.run.smithi059.stdout:The following NEW packages will be installed: 2024-04-15T21:40:43.534 INFO:teuthology.orchestra.run.smithi059.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-15T21:40:43.534 INFO:teuthology.orchestra.run.smithi059.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-15T21:40:43.534 INFO:teuthology.orchestra.run.smithi059.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-15T21:40:43.534 INFO:teuthology.orchestra.run.smithi059.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-15T21:40:43.534 INFO:teuthology.orchestra.run.smithi059.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-15T21:40:43.535 INFO:teuthology.orchestra.run.smithi059.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-15T21:40:43.536 INFO:teuthology.orchestra.run.smithi059.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-15T21:40:43.536 INFO:teuthology.orchestra.run.smithi059.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:40:43.537 INFO:teuthology.orchestra.run.smithi059.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-15T21:40:43.538 INFO:teuthology.orchestra.run.smithi059.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-15T21:40:43.538 INFO:teuthology.orchestra.run.smithi059.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-15T21:40:43.538 INFO:teuthology.orchestra.run.smithi059.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-15T21:40:43.538 INFO:teuthology.orchestra.run.smithi059.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-15T21:40:43.538 INFO:teuthology.orchestra.run.smithi059.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-15T21:40:43.538 INFO:teuthology.orchestra.run.smithi059.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-15T21:40:43.538 INFO:teuthology.orchestra.run.smithi059.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-15T21:40:43.592 INFO:teuthology.orchestra.run.smithi094.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-15T21:40:43.592 INFO:teuthology.orchestra.run.smithi094.stdout:Need to get 178 MB of archives. 2024-04-15T21:40:43.592 INFO:teuthology.orchestra.run.smithi094.stdout:After this operation, 816 MB of additional disk space will be used. 2024-04-15T21:40:43.592 INFO:teuthology.orchestra.run.smithi094.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-15T21:40:43.598 INFO:teuthology.orchestra.run.smithi069.stdout:The following NEW packages will be installed: 2024-04-15T21:40:43.598 INFO:teuthology.orchestra.run.smithi069.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-15T21:40:43.598 INFO:teuthology.orchestra.run.smithi069.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-15T21:40:43.598 INFO:teuthology.orchestra.run.smithi069.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-15T21:40:43.598 INFO:teuthology.orchestra.run.smithi069.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-15T21:40:43.598 INFO:teuthology.orchestra.run.smithi069.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-15T21:40:43.598 INFO:teuthology.orchestra.run.smithi069.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-15T21:40:43.599 INFO:teuthology.orchestra.run.smithi069.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-15T21:40:43.599 INFO:teuthology.orchestra.run.smithi069.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-15T21:40:43.599 INFO:teuthology.orchestra.run.smithi069.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-15T21:40:43.599 INFO:teuthology.orchestra.run.smithi069.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-15T21:40:43.599 INFO:teuthology.orchestra.run.smithi069.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-15T21:40:43.600 INFO:teuthology.orchestra.run.smithi069.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-15T21:40:43.632 INFO:teuthology.orchestra.run.smithi059.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-15T21:40:43.632 INFO:teuthology.orchestra.run.smithi059.stdout:Need to get 178 MB of archives. 2024-04-15T21:40:43.632 INFO:teuthology.orchestra.run.smithi059.stdout:After this operation, 816 MB of additional disk space will be used. 2024-04-15T21:40:43.632 INFO:teuthology.orchestra.run.smithi059.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-15T21:40:43.645 INFO:teuthology.orchestra.run.smithi094.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2114-ga9a752df-1jammy [3,543 kB] 2024-04-15T21:40:43.687 INFO:teuthology.orchestra.run.smithi059.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2114-ga9a752df-1jammy [3,543 kB] 2024-04-15T21:40:43.742 INFO:teuthology.orchestra.run.smithi069.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-15T21:40:43.743 INFO:teuthology.orchestra.run.smithi069.stdout:Need to get 178 MB of archives. 2024-04-15T21:40:43.743 INFO:teuthology.orchestra.run.smithi069.stdout:After this operation, 816 MB of additional disk space will be used. 2024-04-15T21:40:43.743 INFO:teuthology.orchestra.run.smithi069.stdout:Get:1 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2114-ga9a752df-1jammy [3,543 kB] 2024-04-15T21:40:43.770 INFO:teuthology.orchestra.run.smithi094.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-15T21:40:43.775 INFO:teuthology.orchestra.run.smithi094.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-15T21:40:43.789 INFO:teuthology.orchestra.run.smithi069.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-15T21:40:43.810 INFO:teuthology.orchestra.run.smithi094.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-15T21:40:43.812 INFO:teuthology.orchestra.run.smithi059.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-15T21:40:43.818 INFO:teuthology.orchestra.run.smithi059.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-15T21:40:43.856 INFO:teuthology.orchestra.run.smithi059.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-15T21:40:43.872 INFO:teuthology.orchestra.run.smithi094.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2114-ga9a752df-1jammy [3,218 kB] 2024-04-15T21:40:43.931 INFO:teuthology.orchestra.run.smithi094.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-15T21:40:43.936 INFO:teuthology.orchestra.run.smithi094.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-15T21:40:43.957 INFO:teuthology.orchestra.run.smithi094.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-15T21:40:43.963 INFO:teuthology.orchestra.run.smithi094.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-15T21:40:43.964 INFO:teuthology.orchestra.run.smithi094.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-15T21:40:43.965 INFO:teuthology.orchestra.run.smithi094.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-15T21:40:43.982 INFO:teuthology.orchestra.run.smithi094.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-15T21:40:43.986 INFO:teuthology.orchestra.run.smithi094.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-15T21:40:43.989 INFO:teuthology.orchestra.run.smithi094.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-15T21:40:43.991 INFO:teuthology.orchestra.run.smithi094.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-15T21:40:43.998 INFO:teuthology.orchestra.run.smithi059.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-15T21:40:44.003 INFO:teuthology.orchestra.run.smithi094.stdout:Get:17 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2114-ga9a752df-1jammy [712 kB] 2024-04-15T21:40:44.004 INFO:teuthology.orchestra.run.smithi059.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-15T21:40:44.011 INFO:teuthology.orchestra.run.smithi094.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-15T21:40:44.015 INFO:teuthology.orchestra.run.smithi094.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-15T21:40:44.019 INFO:teuthology.orchestra.run.smithi094.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-15T21:40:44.020 INFO:teuthology.orchestra.run.smithi059.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-15T21:40:44.021 INFO:teuthology.orchestra.run.smithi094.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-15T21:40:44.023 INFO:teuthology.orchestra.run.smithi094.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-15T21:40:44.023 INFO:teuthology.orchestra.run.smithi094.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-04-15T21:40:44.025 INFO:teuthology.orchestra.run.smithi094.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-15T21:40:44.026 INFO:teuthology.orchestra.run.smithi059.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-15T21:40:44.026 INFO:teuthology.orchestra.run.smithi059.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-15T21:40:44.028 INFO:teuthology.orchestra.run.smithi059.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-15T21:40:44.029 INFO:teuthology.orchestra.run.smithi094.stdout:Get:25 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2114-ga9a752df-1jammy [356 kB] 2024-04-15T21:40:44.032 INFO:teuthology.orchestra.run.smithi094.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-15T21:40:44.032 INFO:teuthology.orchestra.run.smithi094.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-15T21:40:44.033 INFO:teuthology.orchestra.run.smithi094.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-15T21:40:44.038 INFO:teuthology.orchestra.run.smithi059.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-15T21:40:44.041 INFO:teuthology.orchestra.run.smithi059.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-15T21:40:44.044 INFO:teuthology.orchestra.run.smithi059.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-15T21:40:44.045 INFO:teuthology.orchestra.run.smithi059.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-15T21:40:44.046 INFO:teuthology.orchestra.run.smithi059.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-15T21:40:44.050 INFO:teuthology.orchestra.run.smithi059.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-15T21:40:44.054 INFO:teuthology.orchestra.run.smithi094.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-15T21:40:44.054 INFO:teuthology.orchestra.run.smithi094.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-15T21:40:44.054 INFO:teuthology.orchestra.run.smithi094.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-15T21:40:44.058 INFO:teuthology.orchestra.run.smithi094.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-15T21:40:44.058 INFO:teuthology.orchestra.run.smithi094.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-15T21:40:44.059 INFO:teuthology.orchestra.run.smithi094.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-15T21:40:44.060 INFO:teuthology.orchestra.run.smithi094.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-04-15T21:40:44.067 INFO:teuthology.orchestra.run.smithi059.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-15T21:40:44.069 INFO:teuthology.orchestra.run.smithi059.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-15T21:40:44.070 INFO:teuthology.orchestra.run.smithi059.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-15T21:40:44.070 INFO:teuthology.orchestra.run.smithi059.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-04-15T21:40:44.072 INFO:teuthology.orchestra.run.smithi059.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-15T21:40:44.072 INFO:teuthology.orchestra.run.smithi059.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-15T21:40:44.072 INFO:teuthology.orchestra.run.smithi059.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-15T21:40:44.073 INFO:teuthology.orchestra.run.smithi059.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-15T21:40:44.073 INFO:teuthology.orchestra.run.smithi094.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-15T21:40:44.074 INFO:teuthology.orchestra.run.smithi094.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-15T21:40:44.074 INFO:teuthology.orchestra.run.smithi094.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-15T21:40:44.089 INFO:teuthology.orchestra.run.smithi059.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-15T21:40:44.089 INFO:teuthology.orchestra.run.smithi059.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-15T21:40:44.094 INFO:teuthology.orchestra.run.smithi094.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-15T21:40:44.095 INFO:teuthology.orchestra.run.smithi094.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-15T21:40:44.095 INFO:teuthology.orchestra.run.smithi094.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-15T21:40:44.104 INFO:teuthology.orchestra.run.smithi094.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-15T21:40:44.105 INFO:teuthology.orchestra.run.smithi094.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-15T21:40:44.105 INFO:teuthology.orchestra.run.smithi094.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-15T21:40:44.106 INFO:teuthology.orchestra.run.smithi094.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-15T21:40:44.109 INFO:teuthology.orchestra.run.smithi059.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-15T21:40:44.113 INFO:teuthology.orchestra.run.smithi059.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-15T21:40:44.113 INFO:teuthology.orchestra.run.smithi059.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-15T21:40:44.114 INFO:teuthology.orchestra.run.smithi059.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-15T21:40:44.114 INFO:teuthology.orchestra.run.smithi094.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-15T21:40:44.114 INFO:teuthology.orchestra.run.smithi059.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-04-15T21:40:44.115 INFO:teuthology.orchestra.run.smithi059.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-15T21:40:44.116 INFO:teuthology.orchestra.run.smithi059.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-15T21:40:44.116 INFO:teuthology.orchestra.run.smithi059.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-15T21:40:44.117 INFO:teuthology.orchestra.run.smithi094.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-15T21:40:44.119 INFO:teuthology.orchestra.run.smithi094.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-04-15T21:40:44.130 INFO:teuthology.orchestra.run.smithi059.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-15T21:40:44.131 INFO:teuthology.orchestra.run.smithi059.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-15T21:40:44.135 INFO:teuthology.orchestra.run.smithi094.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-04-15T21:40:44.136 INFO:teuthology.orchestra.run.smithi094.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-04-15T21:40:44.139 INFO:teuthology.orchestra.run.smithi094.stdout:Get:51 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2114-ga9a752df-1jammy [32.8 kB] 2024-04-15T21:40:44.139 INFO:teuthology.orchestra.run.smithi094.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-15T21:40:44.140 INFO:teuthology.orchestra.run.smithi094.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-15T21:40:44.142 INFO:teuthology.orchestra.run.smithi094.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-15T21:40:44.145 INFO:teuthology.orchestra.run.smithi094.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-04-15T21:40:44.150 INFO:teuthology.orchestra.run.smithi094.stdout:Get:56 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2114-ga9a752df-1jammy [180 kB] 2024-04-15T21:40:44.151 INFO:teuthology.orchestra.run.smithi059.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-15T21:40:44.156 INFO:teuthology.orchestra.run.smithi094.stdout:Get:57 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2114-ga9a752df-1jammy [64.6 kB] 2024-04-15T21:40:44.158 INFO:teuthology.orchestra.run.smithi059.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-15T21:40:44.159 INFO:teuthology.orchestra.run.smithi059.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-15T21:40:44.160 INFO:teuthology.orchestra.run.smithi059.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-15T21:40:44.161 INFO:teuthology.orchestra.run.smithi059.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-15T21:40:44.162 INFO:teuthology.orchestra.run.smithi059.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-15T21:40:44.165 INFO:teuthology.orchestra.run.smithi059.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-15T21:40:44.166 INFO:teuthology.orchestra.run.smithi059.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-04-15T21:40:44.173 INFO:teuthology.orchestra.run.smithi094.stdout:Get:58 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2114-ga9a752df-1jammy [330 kB] 2024-04-15T21:40:44.181 INFO:teuthology.orchestra.run.smithi059.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-04-15T21:40:44.182 INFO:teuthology.orchestra.run.smithi059.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-04-15T21:40:44.182 INFO:teuthology.orchestra.run.smithi094.stdout:Get:59 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2114-ga9a752df-1jammy [6,621 kB] 2024-04-15T21:40:44.202 INFO:teuthology.orchestra.run.smithi059.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-15T21:40:44.203 INFO:teuthology.orchestra.run.smithi059.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-15T21:40:44.204 INFO:teuthology.orchestra.run.smithi059.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-15T21:40:44.207 INFO:teuthology.orchestra.run.smithi059.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-04-15T21:40:44.212 INFO:teuthology.orchestra.run.smithi094.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-15T21:40:44.213 INFO:teuthology.orchestra.run.smithi094.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-15T21:40:44.214 INFO:teuthology.orchestra.run.smithi094.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-15T21:40:44.214 INFO:teuthology.orchestra.run.smithi094.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-15T21:40:44.216 INFO:teuthology.orchestra.run.smithi094.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-15T21:40:44.220 INFO:teuthology.orchestra.run.smithi069.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-15T21:40:44.232 INFO:teuthology.orchestra.run.smithi069.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-15T21:40:44.242 INFO:teuthology.orchestra.run.smithi094.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-15T21:40:44.245 INFO:teuthology.orchestra.run.smithi094.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-15T21:40:44.247 INFO:teuthology.orchestra.run.smithi094.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-15T21:40:44.276 INFO:teuthology.orchestra.run.smithi094.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-15T21:40:44.277 INFO:teuthology.orchestra.run.smithi094.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-15T21:40:44.286 INFO:teuthology.orchestra.run.smithi059.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-15T21:40:44.288 INFO:teuthology.orchestra.run.smithi059.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-15T21:40:44.289 INFO:teuthology.orchestra.run.smithi059.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-15T21:40:44.289 INFO:teuthology.orchestra.run.smithi059.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-15T21:40:44.291 INFO:teuthology.orchestra.run.smithi059.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-15T21:40:44.299 INFO:teuthology.orchestra.run.smithi094.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-15T21:40:44.300 INFO:teuthology.orchestra.run.smithi094.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-15T21:40:44.300 INFO:teuthology.orchestra.run.smithi094.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-15T21:40:44.301 INFO:teuthology.orchestra.run.smithi094.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-15T21:40:44.301 INFO:teuthology.orchestra.run.smithi094.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-15T21:40:44.303 INFO:teuthology.orchestra.run.smithi094.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-15T21:40:44.307 INFO:teuthology.orchestra.run.smithi094.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-15T21:40:44.314 INFO:teuthology.orchestra.run.smithi069.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-15T21:40:44.315 INFO:teuthology.orchestra.run.smithi059.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-15T21:40:44.317 INFO:teuthology.orchestra.run.smithi059.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-15T21:40:44.318 INFO:teuthology.orchestra.run.smithi059.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-15T21:40:44.328 INFO:teuthology.orchestra.run.smithi094.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-15T21:40:44.330 INFO:teuthology.orchestra.run.smithi094.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-15T21:40:44.331 INFO:teuthology.orchestra.run.smithi094.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-15T21:40:44.334 INFO:teuthology.orchestra.run.smithi059.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-15T21:40:44.335 INFO:teuthology.orchestra.run.smithi059.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-15T21:40:44.335 INFO:teuthology.orchestra.run.smithi059.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-15T21:40:44.336 INFO:teuthology.orchestra.run.smithi059.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-15T21:40:44.342 INFO:teuthology.orchestra.run.smithi059.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-15T21:40:44.343 INFO:teuthology.orchestra.run.smithi059.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-15T21:40:44.343 INFO:teuthology.orchestra.run.smithi059.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-15T21:40:44.344 INFO:teuthology.orchestra.run.smithi059.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-15T21:40:44.347 INFO:teuthology.orchestra.run.smithi059.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-15T21:40:44.348 INFO:teuthology.orchestra.run.smithi094.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-15T21:40:44.352 INFO:teuthology.orchestra.run.smithi094.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-15T21:40:44.353 INFO:teuthology.orchestra.run.smithi094.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-15T21:40:44.354 INFO:teuthology.orchestra.run.smithi094.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-15T21:40:44.361 INFO:teuthology.orchestra.run.smithi094.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-15T21:40:44.362 INFO:teuthology.orchestra.run.smithi094.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-15T21:40:44.363 INFO:teuthology.orchestra.run.smithi059.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-15T21:40:44.365 INFO:teuthology.orchestra.run.smithi059.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-15T21:40:44.365 INFO:teuthology.orchestra.run.smithi059.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-15T21:40:44.367 INFO:teuthology.orchestra.run.smithi094.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-15T21:40:44.369 INFO:teuthology.orchestra.run.smithi059.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-15T21:40:44.371 INFO:teuthology.orchestra.run.smithi059.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-15T21:40:44.372 INFO:teuthology.orchestra.run.smithi094.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-15T21:40:44.373 INFO:teuthology.orchestra.run.smithi094.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-15T21:40:44.373 INFO:teuthology.orchestra.run.smithi094.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-15T21:40:44.393 INFO:teuthology.orchestra.run.smithi059.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-15T21:40:44.393 INFO:teuthology.orchestra.run.smithi059.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-15T21:40:44.395 INFO:teuthology.orchestra.run.smithi094.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-15T21:40:44.397 INFO:teuthology.orchestra.run.smithi094.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-15T21:40:44.398 INFO:teuthology.orchestra.run.smithi059.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-15T21:40:44.399 INFO:teuthology.orchestra.run.smithi059.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-15T21:40:44.402 INFO:teuthology.orchestra.run.smithi059.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-15T21:40:44.410 INFO:teuthology.orchestra.run.smithi094.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-15T21:40:44.411 INFO:teuthology.orchestra.run.smithi094.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-15T21:40:44.411 INFO:teuthology.orchestra.run.smithi094.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-15T21:40:44.414 INFO:teuthology.orchestra.run.smithi094.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-15T21:40:44.415 INFO:teuthology.orchestra.run.smithi094.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-15T21:40:44.416 INFO:teuthology.orchestra.run.smithi059.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-15T21:40:44.417 INFO:teuthology.orchestra.run.smithi059.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-15T21:40:44.417 INFO:teuthology.orchestra.run.smithi059.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-15T21:40:44.419 INFO:teuthology.orchestra.run.smithi059.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-15T21:40:44.419 INFO:teuthology.orchestra.run.smithi059.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-15T21:40:44.437 INFO:teuthology.orchestra.run.smithi059.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-15T21:40:44.438 INFO:teuthology.orchestra.run.smithi059.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-15T21:40:44.438 INFO:teuthology.orchestra.run.smithi059.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-15T21:40:44.440 INFO:teuthology.orchestra.run.smithi059.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-15T21:40:44.441 INFO:teuthology.orchestra.run.smithi059.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-15T21:40:44.494 INFO:teuthology.orchestra.run.smithi094.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2114-ga9a752df-1jammy [112 kB] 2024-04-15T21:40:44.497 INFO:teuthology.orchestra.run.smithi094.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2114-ga9a752df-1jammy [466 kB] 2024-04-15T21:40:44.506 INFO:teuthology.orchestra.run.smithi094.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2114-ga9a752df-1jammy [25.3 MB] 2024-04-15T21:40:44.543 INFO:teuthology.orchestra.run.smithi069.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-15T21:40:44.556 INFO:teuthology.orchestra.run.smithi069.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-15T21:40:44.585 INFO:teuthology.orchestra.run.smithi069.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-15T21:40:44.595 INFO:teuthology.orchestra.run.smithi069.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-15T21:40:44.596 INFO:teuthology.orchestra.run.smithi069.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-15T21:40:44.597 INFO:teuthology.orchestra.run.smithi069.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-15T21:40:44.616 INFO:teuthology.orchestra.run.smithi069.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-15T21:40:44.714 INFO:teuthology.orchestra.run.smithi069.stdout:Get:13 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2114-ga9a752df-1jammy [3,218 kB] 2024-04-15T21:40:44.766 INFO:teuthology.orchestra.run.smithi059.stdout:Get:89 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2114-ga9a752df-1jammy [3,218 kB] 2024-04-15T21:40:44.784 INFO:teuthology.orchestra.run.smithi069.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-15T21:40:45.196 INFO:teuthology.orchestra.run.smithi069.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-15T21:40:45.230 INFO:teuthology.orchestra.run.smithi069.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-15T21:40:45.232 INFO:teuthology.orchestra.run.smithi069.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-15T21:40:45.257 INFO:teuthology.orchestra.run.smithi069.stdout:Get:18 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2114-ga9a752df-1jammy [712 kB] 2024-04-15T21:40:45.312 INFO:teuthology.orchestra.run.smithi069.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-15T21:40:45.337 INFO:teuthology.orchestra.run.smithi069.stdout:Get:20 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2114-ga9a752df-1jammy [356 kB] 2024-04-15T21:40:45.363 INFO:teuthology.orchestra.run.smithi069.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-15T21:40:45.385 INFO:teuthology.orchestra.run.smithi069.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-15T21:40:45.388 INFO:teuthology.orchestra.run.smithi069.stdout:Get:23 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2114-ga9a752df-1jammy [32.8 kB] 2024-04-15T21:40:45.392 INFO:teuthology.orchestra.run.smithi069.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-15T21:40:45.392 INFO:teuthology.orchestra.run.smithi069.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-04-15T21:40:45.396 INFO:teuthology.orchestra.run.smithi069.stdout:Get:26 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2114-ga9a752df-1jammy [180 kB] 2024-04-15T21:40:45.404 INFO:teuthology.orchestra.run.smithi069.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-15T21:40:45.405 INFO:teuthology.orchestra.run.smithi069.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-15T21:40:45.441 INFO:teuthology.orchestra.run.smithi069.stdout:Get:29 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2114-ga9a752df-1jammy [64.6 kB] 2024-04-15T21:40:45.443 INFO:teuthology.orchestra.run.smithi069.stdout:Get:30 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2114-ga9a752df-1jammy [330 kB] 2024-04-15T21:40:45.503 INFO:teuthology.orchestra.run.smithi069.stdout:Get:31 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2114-ga9a752df-1jammy [6,621 kB] 2024-04-15T21:40:45.525 INFO:teuthology.orchestra.run.smithi059.stdout:Get:90 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2114-ga9a752df-1jammy [712 kB] 2024-04-15T21:40:45.570 INFO:teuthology.orchestra.run.smithi069.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-15T21:40:45.653 INFO:teuthology.orchestra.run.smithi069.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-15T21:40:45.682 INFO:teuthology.orchestra.run.smithi069.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-15T21:40:45.698 INFO:teuthology.orchestra.run.smithi069.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-15T21:40:45.725 INFO:teuthology.orchestra.run.smithi059.stdout:Get:91 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2114-ga9a752df-1jammy [356 kB] 2024-04-15T21:40:45.742 INFO:teuthology.orchestra.run.smithi069.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-15T21:40:45.796 INFO:teuthology.orchestra.run.smithi094.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2114-ga9a752df-1jammy [5,077 kB] 2024-04-15T21:40:45.848 INFO:teuthology.orchestra.run.smithi059.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2114-ga9a752df-1jammy [32.8 kB] 2024-04-15T21:40:45.850 INFO:teuthology.orchestra.run.smithi059.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2114-ga9a752df-1jammy [180 kB] 2024-04-15T21:40:45.858 INFO:teuthology.orchestra.run.smithi059.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2114-ga9a752df-1jammy [64.6 kB] 2024-04-15T21:40:45.923 INFO:teuthology.orchestra.run.smithi059.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2114-ga9a752df-1jammy [330 kB] 2024-04-15T21:40:45.951 INFO:teuthology.orchestra.run.smithi069.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-15T21:40:45.966 INFO:teuthology.orchestra.run.smithi069.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-15T21:40:45.973 INFO:teuthology.orchestra.run.smithi069.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-15T21:40:45.978 INFO:teuthology.orchestra.run.smithi069.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-04-15T21:40:45.980 INFO:teuthology.orchestra.run.smithi094.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2114-ga9a752df-1jammy [244 kB] 2024-04-15T21:40:45.999 INFO:teuthology.orchestra.run.smithi069.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-15T21:40:46.000 INFO:teuthology.orchestra.run.smithi059.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2114-ga9a752df-1jammy [6,621 kB] 2024-04-15T21:40:46.002 INFO:teuthology.orchestra.run.smithi069.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-15T21:40:46.015 INFO:teuthology.orchestra.run.smithi094.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2114-ga9a752df-1jammy [124 kB] 2024-04-15T21:40:46.019 INFO:teuthology.orchestra.run.smithi094.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2114-ga9a752df-1jammy [1,527 kB] 2024-04-15T21:40:46.105 INFO:teuthology.orchestra.run.smithi094.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2114-ga9a752df-1jammy [6,247 kB] 2024-04-15T21:40:46.169 INFO:teuthology.orchestra.run.smithi069.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-15T21:40:46.230 INFO:teuthology.orchestra.run.smithi069.stdout:Get:44 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2114-ga9a752df-1jammy [112 kB] 2024-04-15T21:40:46.234 INFO:teuthology.orchestra.run.smithi069.stdout:Get:45 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2114-ga9a752df-1jammy [466 kB] 2024-04-15T21:40:46.341 INFO:teuthology.orchestra.run.smithi069.stdout:Get:46 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2114-ga9a752df-1jammy [25.3 MB] 2024-04-15T21:40:46.457 INFO:teuthology.orchestra.run.smithi094.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2114-ga9a752df-1jammy [22.7 MB] 2024-04-15T21:40:46.500 INFO:teuthology.orchestra.run.smithi069.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-15T21:40:46.540 INFO:teuthology.orchestra.run.smithi069.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-15T21:40:46.553 INFO:teuthology.orchestra.run.smithi069.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-15T21:40:46.761 INFO:teuthology.orchestra.run.smithi069.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-15T21:40:46.762 INFO:teuthology.orchestra.run.smithi069.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-15T21:40:46.767 INFO:teuthology.orchestra.run.smithi069.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-15T21:40:46.773 INFO:teuthology.orchestra.run.smithi069.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-15T21:40:46.788 INFO:teuthology.orchestra.run.smithi069.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-15T21:40:46.810 INFO:teuthology.orchestra.run.smithi069.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-15T21:40:46.815 INFO:teuthology.orchestra.run.smithi069.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-04-15T21:40:46.991 INFO:teuthology.orchestra.run.smithi069.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-04-15T21:40:47.248 INFO:teuthology.orchestra.run.smithi069.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-04-15T21:40:47.427 INFO:teuthology.orchestra.run.smithi069.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-15T21:40:47.440 INFO:teuthology.orchestra.run.smithi069.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-15T21:40:47.461 INFO:teuthology.orchestra.run.smithi069.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-15T21:40:47.525 INFO:teuthology.orchestra.run.smithi069.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-04-15T21:40:47.669 INFO:teuthology.orchestra.run.smithi094.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2114-ga9a752df-1jammy [14.1 kB] 2024-04-15T21:40:47.669 INFO:teuthology.orchestra.run.smithi094.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2114-ga9a752df-1jammy [869 kB] 2024-04-15T21:40:47.686 INFO:teuthology.orchestra.run.smithi094.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2114-ga9a752df-1jammy [2,436 kB] 2024-04-15T21:40:47.763 INFO:teuthology.orchestra.run.smithi094.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2114-ga9a752df-1jammy [777 kB] 2024-04-15T21:40:47.789 INFO:teuthology.orchestra.run.smithi094.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2114-ga9a752df-1jammy [145 kB] 2024-04-15T21:40:47.793 INFO:teuthology.orchestra.run.smithi094.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2114-ga9a752df-1jammy [2,260 kB] 2024-04-15T21:40:47.815 INFO:teuthology.orchestra.run.smithi069.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-15T21:40:47.816 INFO:teuthology.orchestra.run.smithi069.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-15T21:40:47.819 INFO:teuthology.orchestra.run.smithi069.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-15T21:40:47.820 INFO:teuthology.orchestra.run.smithi069.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-15T21:40:47.822 INFO:teuthology.orchestra.run.smithi069.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-15T21:40:47.894 INFO:teuthology.orchestra.run.smithi094.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2114-ga9a752df-1jammy [8,625 kB] 2024-04-15T21:40:48.051 INFO:teuthology.orchestra.run.smithi069.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-15T21:40:48.301 INFO:teuthology.orchestra.run.smithi094.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2114-ga9a752df-1jammy [14.2 kB] 2024-04-15T21:40:48.301 INFO:teuthology.orchestra.run.smithi094.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2114-ga9a752df-1jammy [50.1 MB] 2024-04-15T21:40:48.481 INFO:teuthology.orchestra.run.smithi069.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-15T21:40:48.486 INFO:teuthology.orchestra.run.smithi069.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-15T21:40:48.776 INFO:teuthology.orchestra.run.smithi069.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-15T21:40:48.777 INFO:teuthology.orchestra.run.smithi069.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-15T21:40:48.779 INFO:teuthology.orchestra.run.smithi069.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-15T21:40:48.781 INFO:teuthology.orchestra.run.smithi069.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-15T21:40:48.782 INFO:teuthology.orchestra.run.smithi069.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-15T21:40:48.784 INFO:teuthology.orchestra.run.smithi069.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-15T21:40:48.785 INFO:teuthology.orchestra.run.smithi069.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-15T21:40:48.787 INFO:teuthology.orchestra.run.smithi069.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-15T21:40:48.805 INFO:teuthology.orchestra.run.smithi059.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2114-ga9a752df-1jammy [112 kB] 2024-04-15T21:40:48.807 INFO:teuthology.orchestra.run.smithi059.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2114-ga9a752df-1jammy [466 kB] 2024-04-15T21:40:48.968 INFO:teuthology.orchestra.run.smithi069.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-15T21:40:49.058 INFO:teuthology.orchestra.run.smithi059.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2114-ga9a752df-1jammy [25.3 MB] 2024-04-15T21:40:49.382 INFO:teuthology.orchestra.run.smithi069.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-15T21:40:49.427 INFO:teuthology.orchestra.run.smithi069.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-15T21:40:49.464 INFO:teuthology.orchestra.run.smithi069.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-15T21:40:49.559 INFO:teuthology.orchestra.run.smithi069.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-15T21:40:49.600 INFO:teuthology.orchestra.run.smithi069.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-15T21:40:49.611 INFO:teuthology.orchestra.run.smithi069.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-15T21:40:49.617 INFO:teuthology.orchestra.run.smithi069.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-15T21:40:49.664 INFO:teuthology.orchestra.run.smithi069.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-15T21:40:49.668 INFO:teuthology.orchestra.run.smithi069.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-15T21:40:49.688 INFO:teuthology.orchestra.run.smithi069.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-15T21:40:49.853 INFO:teuthology.orchestra.run.smithi069.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-15T21:40:50.117 INFO:teuthology.orchestra.run.smithi069.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-15T21:40:50.150 INFO:teuthology.orchestra.run.smithi069.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-15T21:40:50.224 INFO:teuthology.orchestra.run.smithi069.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2114-ga9a752df-1jammy [5,077 kB] 2024-04-15T21:40:50.288 INFO:teuthology.orchestra.run.smithi069.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-15T21:40:50.316 INFO:teuthology.orchestra.run.smithi069.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-15T21:40:50.473 INFO:teuthology.orchestra.run.smithi069.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-15T21:40:50.475 INFO:teuthology.orchestra.run.smithi069.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-15T21:40:50.478 INFO:teuthology.orchestra.run.smithi069.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-15T21:40:50.500 INFO:teuthology.orchestra.run.smithi069.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-15T21:40:50.505 INFO:teuthology.orchestra.run.smithi069.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-15T21:40:50.690 INFO:teuthology.orchestra.run.smithi094.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2114-ga9a752df-1jammy [121 kB] 2024-04-15T21:40:50.693 INFO:teuthology.orchestra.run.smithi094.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2114-ga9a752df-1jammy [39.0 kB] 2024-04-15T21:40:50.694 INFO:teuthology.orchestra.run.smithi094.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2114-ga9a752df-1jammy [13.1 MB] 2024-04-15T21:40:50.883 INFO:teuthology.orchestra.run.smithi069.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2114-ga9a752df-1jammy [244 kB] 2024-04-15T21:40:50.956 INFO:teuthology.orchestra.run.smithi069.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2114-ga9a752df-1jammy [124 kB] 2024-04-15T21:40:50.978 INFO:teuthology.orchestra.run.smithi069.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2114-ga9a752df-1jammy [1,527 kB] 2024-04-15T21:40:51.085 INFO:teuthology.orchestra.run.smithi094.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2114-ga9a752df-1jammy [91.4 kB] 2024-04-15T21:40:51.151 INFO:teuthology.orchestra.run.smithi069.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2114-ga9a752df-1jammy [6,247 kB] 2024-04-15T21:40:51.567 INFO:teuthology.orchestra.run.smithi069.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2114-ga9a752df-1jammy [22.7 MB] 2024-04-15T21:40:51.653 INFO:teuthology.orchestra.run.smithi094.stdout:Fetched 178 MB in 8s (23.5 MB/s) 2024-04-15T21:40:51.812 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-15T21:40:51.913 INFO:teuthology.orchestra.run.smithi094.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165995 files and directories currently installed.) 2024-04-15T21:40:51.918 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-15T21:40:52.011 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:40:52.314 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-15T21:40:52.341 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-15T21:40:52.381 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:40:52.700 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-15T21:40:52.726 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-15T21:40:52.767 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:40:53.085 INFO:teuthology.orchestra.run.smithi069.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2114-ga9a752df-1jammy [14.1 kB] 2024-04-15T21:40:53.087 INFO:teuthology.orchestra.run.smithi069.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2114-ga9a752df-1jammy [869 kB] 2024-04-15T21:40:53.108 INFO:teuthology.orchestra.run.smithi069.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2114-ga9a752df-1jammy [2,436 kB] 2024-04-15T21:40:53.203 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-15T21:40:53.229 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:40:53.240 INFO:teuthology.orchestra.run.smithi069.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2114-ga9a752df-1jammy [777 kB] 2024-04-15T21:40:53.278 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:40:53.282 INFO:teuthology.orchestra.run.smithi069.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2114-ga9a752df-1jammy [145 kB] 2024-04-15T21:40:53.298 INFO:teuthology.orchestra.run.smithi069.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2114-ga9a752df-1jammy [2,260 kB] 2024-04-15T21:40:53.427 INFO:teuthology.orchestra.run.smithi069.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2114-ga9a752df-1jammy [8,625 kB] 2024-04-15T21:40:53.648 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-15T21:40:53.674 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:40:53.714 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:40:53.899 INFO:teuthology.orchestra.run.smithi069.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2114-ga9a752df-1jammy [14.2 kB] 2024-04-15T21:40:53.900 INFO:teuthology.orchestra.run.smithi069.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2114-ga9a752df-1jammy [50.1 MB] 2024-04-15T21:40:54.034 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-15T21:40:54.049 INFO:teuthology.orchestra.run.smithi059.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2114-ga9a752df-1jammy [5,077 kB] 2024-04-15T21:40:54.060 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:40:54.101 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:40:54.437 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-15T21:40:54.463 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-15T21:40:54.503 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:40:54.509 INFO:teuthology.orchestra.run.smithi059.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2114-ga9a752df-1jammy [244 kB] 2024-04-15T21:40:54.529 INFO:teuthology.orchestra.run.smithi059.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2114-ga9a752df-1jammy [124 kB] 2024-04-15T21:40:54.549 INFO:teuthology.orchestra.run.smithi059.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2114-ga9a752df-1jammy [1,527 kB] 2024-04-15T21:40:54.679 INFO:teuthology.orchestra.run.smithi059.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2114-ga9a752df-1jammy [6,247 kB] 2024-04-15T21:40:54.840 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package librados2. 2024-04-15T21:40:54.866 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../007-librados2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:40:54.906 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking librados2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:40:55.247 INFO:teuthology.orchestra.run.smithi059.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2114-ga9a752df-1jammy [22.7 MB] 2024-04-15T21:40:55.507 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package librbd1. 2024-04-15T21:40:55.534 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../008-librbd1_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:40:55.617 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking librbd1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:40:56.053 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libcephfs2. 2024-04-15T21:40:56.080 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:40:56.119 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libcephfs2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:40:56.422 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-rados. 2024-04-15T21:40:56.448 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:40:56.489 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-rados (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:40:56.726 INFO:teuthology.orchestra.run.smithi069.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2114-ga9a752df-1jammy [121 kB] 2024-04-15T21:40:56.729 INFO:teuthology.orchestra.run.smithi069.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2114-ga9a752df-1jammy [39.0 kB] 2024-04-15T21:40:56.730 INFO:teuthology.orchestra.run.smithi069.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2114-ga9a752df-1jammy [13.1 MB] 2024-04-15T21:40:56.808 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-15T21:40:56.834 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:40:56.874 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-ceph-argparse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:40:57.101 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-cephfs. 2024-04-15T21:40:57.117 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:40:57.151 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-cephfs (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:40:57.363 INFO:teuthology.orchestra.run.smithi069.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2114-ga9a752df-1jammy [91.4 kB] 2024-04-15T21:40:57.398 INFO:teuthology.orchestra.run.smithi059.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2114-ga9a752df-1jammy [14.1 kB] 2024-04-15T21:40:57.399 INFO:teuthology.orchestra.run.smithi059.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2114-ga9a752df-1jammy [869 kB] 2024-04-15T21:40:57.417 INFO:teuthology.orchestra.run.smithi059.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2114-ga9a752df-1jammy [2,436 kB] 2024-04-15T21:40:57.420 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-15T21:40:57.447 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:40:57.479 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:40:57.549 INFO:teuthology.orchestra.run.smithi059.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2114-ga9a752df-1jammy [777 kB] 2024-04-15T21:40:57.593 INFO:teuthology.orchestra.run.smithi059.stdout:Get:110 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2114-ga9a752df-1jammy [145 kB] 2024-04-15T21:40:57.609 INFO:teuthology.orchestra.run.smithi059.stdout:Get:111 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2114-ga9a752df-1jammy [2,260 kB] 2024-04-15T21:40:57.755 INFO:teuthology.orchestra.run.smithi059.stdout:Get:112 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2114-ga9a752df-1jammy [8,625 kB] 2024-04-15T21:40:57.776 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-15T21:40:57.802 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-15T21:40:57.842 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:40:57.916 INFO:teuthology.orchestra.run.smithi069.stdout:Fetched 178 MB in 14s (12.9 MB/s) 2024-04-15T21:40:58.077 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-15T21:40:58.162 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-prettytable. 2024-04-15T21:40:58.178 INFO:teuthology.orchestra.run.smithi069.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165995 files and directories currently installed.) 2024-04-15T21:40:58.183 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-15T21:40:58.188 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-15T21:40:58.228 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-15T21:40:58.267 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:40:58.297 INFO:teuthology.orchestra.run.smithi059.stdout:Get:113 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2114-ga9a752df-1jammy [14.2 kB] 2024-04-15T21:40:58.297 INFO:teuthology.orchestra.run.smithi059.stdout:Get:114 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2114-ga9a752df-1jammy [50.1 MB] 2024-04-15T21:40:58.481 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-rbd. 2024-04-15T21:40:58.508 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:40:58.539 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-rbd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:40:58.571 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-15T21:40:58.597 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-15T21:40:58.637 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:40:58.884 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-15T21:40:58.898 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-15T21:40:58.911 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-15T21:40:58.925 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-15T21:40:58.951 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:40:58.964 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:40:59.230 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-15T21:40:59.245 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-15T21:40:59.287 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:40:59.410 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-15T21:40:59.436 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:40:59.484 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:40:59.582 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-15T21:40:59.597 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-15T21:40:59.632 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:40:59.847 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-15T21:40:59.873 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:40:59.913 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:40:59.935 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package lua5.1. 2024-04-15T21:40:59.962 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-15T21:41:00.002 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:41:00.157 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-15T21:41:00.184 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:41:00.223 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:41:00.297 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package lua-any. 2024-04-15T21:41:00.312 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-15T21:41:00.355 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-15T21:41:00.568 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-15T21:41:00.595 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-15T21:41:00.600 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package zip. 2024-04-15T21:41:00.615 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-15T21:41:00.635 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:41:00.650 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking zip (3.0-12build2) ... 2024-04-15T21:41:00.920 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package unzip. 2024-04-15T21:41:00.929 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package librados2. 2024-04-15T21:41:00.946 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-15T21:41:00.956 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../007-librados2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:00.986 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:41:00.996 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking librados2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:01.219 INFO:teuthology.orchestra.run.smithi059.stdout:Get:115 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2114-ga9a752df-1jammy [121 kB] 2024-04-15T21:41:01.221 INFO:teuthology.orchestra.run.smithi059.stdout:Get:116 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2114-ga9a752df-1jammy [39.0 kB] 2024-04-15T21:41:01.222 INFO:teuthology.orchestra.run.smithi059.stdout:Get:117 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2114-ga9a752df-1jammy [13.1 MB] 2024-04-15T21:41:01.365 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package luarocks. 2024-04-15T21:41:01.392 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-15T21:41:01.432 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package librbd1. 2024-04-15T21:41:01.432 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:41:01.447 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../008-librbd1_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:01.482 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking librbd1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:01.767 INFO:teuthology.orchestra.run.smithi059.stdout:Get:118 https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2114-ga9a752df-1jammy [91.4 kB] 2024-04-15T21:41:01.815 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package librgw2. 2024-04-15T21:41:01.842 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../025-librgw2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:01.882 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking librgw2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:01.884 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libcephfs2. 2024-04-15T21:41:01.911 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:01.951 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libcephfs2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:02.245 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-rados. 2024-04-15T21:41:02.260 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:02.303 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-rados (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:02.325 INFO:teuthology.orchestra.run.smithi059.stdout:Fetched 178 MB in 18s (9,770 kB/s) 2024-04-15T21:41:02.426 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-rgw. 2024-04-15T21:41:02.442 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:02.484 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-rgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:02.623 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-15T21:41:02.646 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-15T21:41:02.649 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:02.751 INFO:teuthology.orchestra.run.smithi059.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165995 files and directories currently installed.) 2024-04-15T21:41:02.757 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-15T21:41:02.812 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-15T21:41:02.827 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-ceph-argparse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:02.837 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:41:02.839 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-15T21:41:02.879 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:41:03.075 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-cephfs. 2024-04-15T21:41:03.102 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:03.133 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-cephfs (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:03.191 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libradosstriper1. 2024-04-15T21:41:03.207 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-15T21:41:03.217 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:03.234 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-15T21:41:03.257 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libradosstriper1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:03.273 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:41:03.411 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-15T21:41:03.438 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:03.477 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:03.551 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-15T21:41:03.578 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-15T21:41:03.594 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-common. 2024-04-15T21:41:03.609 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:41:03.620 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:03.652 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:03.805 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-15T21:41:03.832 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-15T21:41:03.872 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:41:04.046 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-15T21:41:04.073 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:41:04.121 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:41:04.192 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-prettytable. 2024-04-15T21:41:04.218 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-15T21:41:04.258 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-15T21:41:04.532 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-15T21:41:04.535 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-rbd. 2024-04-15T21:41:04.560 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:41:04.562 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:04.599 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:41:04.602 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-rbd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:04.902 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-15T21:41:04.913 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-15T21:41:04.929 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:41:04.940 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-15T21:41:04.960 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:41:04.966 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-base. 2024-04-15T21:41:04.971 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:41:04.993 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:05.042 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-base (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:05.216 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-15T21:41:05.244 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-15T21:41:05.282 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:41:05.322 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-15T21:41:05.348 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-15T21:41:05.388 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:41:05.585 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-15T21:41:05.596 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-15T21:41:05.612 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-15T21:41:05.622 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-15T21:41:05.652 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:41:05.662 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:41:05.716 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package librados2. 2024-04-15T21:41:05.743 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../007-librados2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:05.783 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking librados2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:05.963 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package lua5.1. 2024-04-15T21:41:05.990 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-15T21:41:06.030 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:41:06.169 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package librbd1. 2024-04-15T21:41:06.184 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../008-librbd1_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:06.199 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-cheroot. 2024-04-15T21:41:06.218 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking librbd1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:06.225 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-15T21:41:06.265 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:41:06.299 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package lua-any. 2024-04-15T21:41:06.314 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-15T21:41:06.349 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-15T21:41:06.560 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-15T21:41:06.587 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-15T21:41:06.593 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package zip. 2024-04-15T21:41:06.618 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:41:06.620 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-15T21:41:06.621 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libcephfs2. 2024-04-15T21:41:06.648 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:06.660 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking zip (3.0-12build2) ... 2024-04-15T21:41:06.696 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libcephfs2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:06.905 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-15T21:41:06.931 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-15T21:41:06.971 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:41:06.972 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package unzip. 2024-04-15T21:41:06.990 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-rados. 2024-04-15T21:41:06.998 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-15T21:41:07.017 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:07.038 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:41:07.057 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-rados (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:07.274 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-15T21:41:07.301 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-15T21:41:07.341 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:41:07.400 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package luarocks. 2024-04-15T21:41:07.401 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-15T21:41:07.427 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-15T21:41:07.428 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:07.467 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:41:07.468 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-ceph-argparse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:07.628 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-tempora. 2024-04-15T21:41:07.654 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-15T21:41:07.694 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-15T21:41:07.712 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-cephfs. 2024-04-15T21:41:07.739 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:07.774 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-cephfs (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:07.849 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package librgw2. 2024-04-15T21:41:07.876 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../025-librgw2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:07.955 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-portend. 2024-04-15T21:41:07.982 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-15T21:41:07.982 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking librgw2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:08.022 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-15T21:41:08.181 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-15T21:41:08.208 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:08.248 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:08.325 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-15T21:41:08.345 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-15T21:41:08.383 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-15T21:41:08.518 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-rgw. 2024-04-15T21:41:08.533 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:08.567 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-15T21:41:08.576 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-rgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:08.594 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-15T21:41:08.634 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:41:08.686 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-15T21:41:08.713 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-15T21:41:08.753 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:41:08.904 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-15T21:41:08.931 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-15T21:41:08.962 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-prettytable. 2024-04-15T21:41:08.970 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:41:08.989 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-15T21:41:09.028 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-15T21:41:09.098 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-natsort. 2024-04-15T21:41:09.125 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-15T21:41:09.165 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-15T21:41:09.273 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libradosstriper1. 2024-04-15T21:41:09.298 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-rbd. 2024-04-15T21:41:09.300 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:09.313 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:09.340 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libradosstriper1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:09.348 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-rbd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:09.468 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-logutils. 2024-04-15T21:41:09.494 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-15T21:41:09.535 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-15T21:41:09.625 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-15T21:41:09.653 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-15T21:41:09.684 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:41:09.702 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-common. 2024-04-15T21:41:09.728 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:09.759 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:09.812 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-15T21:41:09.839 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-15T21:41:09.880 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:41:09.969 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-15T21:41:09.985 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-15T21:41:10.028 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:41:10.174 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-mako. 2024-04-15T21:41:10.201 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-15T21:41:10.240 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:41:10.332 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-15T21:41:10.349 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-15T21:41:10.382 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:41:10.578 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-15T21:41:10.604 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-15T21:41:10.644 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:41:10.753 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package lua5.1. 2024-04-15T21:41:10.779 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-15T21:41:10.819 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:41:10.947 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-15T21:41:10.974 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-15T21:41:11.014 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:41:11.114 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package lua-any. 2024-04-15T21:41:11.130 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-15T21:41:11.156 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-base. 2024-04-15T21:41:11.172 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-15T21:41:11.183 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:11.232 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-base (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:11.308 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-webob. 2024-04-15T21:41:11.335 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-15T21:41:11.366 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:41:11.425 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package zip. 2024-04-15T21:41:11.452 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-15T21:41:11.491 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking zip (3.0-12build2) ... 2024-04-15T21:41:11.669 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-waitress. 2024-04-15T21:41:11.685 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-15T21:41:11.739 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:41:11.778 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package unzip. 2024-04-15T21:41:11.794 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-15T21:41:11.805 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-15T21:41:11.809 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-15T21:41:11.836 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:41:11.843 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:41:12.039 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-tempita. 2024-04-15T21:41:12.066 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-15T21:41:12.096 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-cheroot. 2024-04-15T21:41:12.106 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:41:12.122 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-15T21:41:12.163 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:41:12.232 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package luarocks. 2024-04-15T21:41:12.259 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-15T21:41:12.298 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:41:12.418 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-paste. 2024-04-15T21:41:12.441 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-15T21:41:12.457 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-15T21:41:12.483 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-15T21:41:12.484 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:41:12.524 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:41:12.656 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package librgw2. 2024-04-15T21:41:12.684 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../025-librgw2_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:12.723 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking librgw2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:12.796 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-15T21:41:12.811 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-15T21:41:12.835 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-15T21:41:12.854 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:41:12.861 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-15T21:41:12.902 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:41:13.140 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-15T21:41:13.167 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-15T21:41:13.205 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-15T21:41:13.207 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:41:13.231 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-15T21:41:13.271 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:41:13.442 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-rgw. 2024-04-15T21:41:13.469 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:13.508 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-rgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:13.518 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-webtest. 2024-04-15T21:41:13.523 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-tempora. 2024-04-15T21:41:13.545 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-15T21:41:13.550 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-15T21:41:13.582 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-15T21:41:13.602 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-15T21:41:13.803 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-15T21:41:13.830 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-15T21:41:13.861 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:41:13.893 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-portend. 2024-04-15T21:41:13.896 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pecan. 2024-04-15T21:41:13.919 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-15T21:41:13.923 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-15T21:41:13.954 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:41:13.960 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-15T21:41:14.164 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libradosstriper1. 2024-04-15T21:41:14.192 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:14.230 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libradosstriper1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:14.245 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-15T21:41:14.272 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-15T21:41:14.276 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-certifi. 2024-04-15T21:41:14.304 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-15T21:41:14.312 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-15T21:41:14.344 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-15T21:41:14.607 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-15T21:41:14.633 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-15T21:41:14.646 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-idna. 2024-04-15T21:41:14.673 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-15T21:41:14.673 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:41:14.684 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-common. 2024-04-15T21:41:14.711 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:14.712 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-15T21:41:14.750 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:15.016 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-urllib3. 2024-04-15T21:41:15.035 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-natsort. 2024-04-15T21:41:15.042 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-15T21:41:15.062 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-15T21:41:15.082 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:41:15.102 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-15T21:41:15.402 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-requests. 2024-04-15T21:41:15.413 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-logutils. 2024-04-15T21:41:15.429 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-15T21:41:15.440 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-15T21:41:15.469 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:41:15.479 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-15T21:41:15.749 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-15T21:41:15.776 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-15T21:41:15.780 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-15T21:41:15.807 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-15T21:41:15.807 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:41:15.847 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:41:16.093 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-mako. 2024-04-15T21:41:16.121 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-15T21:41:16.133 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-15T21:41:16.160 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:41:16.160 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:16.164 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-base. 2024-04-15T21:41:16.191 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:16.200 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:16.231 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-base (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:16.496 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-15T21:41:16.523 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-15T21:41:16.563 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:41:16.722 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-15T21:41:16.737 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:16.771 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:16.844 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-15T21:41:16.870 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-15T21:41:16.910 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:41:17.499 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-15T21:41:17.526 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-15T21:41:17.566 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:41:17.822 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-cheroot. 2024-04-15T21:41:17.849 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-15T21:41:17.852 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-webob. 2024-04-15T21:41:17.879 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-15T21:41:17.888 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:41:17.909 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-15T21:41:17.910 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:41:17.936 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-15T21:41:17.975 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:41:18.191 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-15T21:41:18.213 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-waitress. 2024-04-15T21:41:18.218 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-15T21:41:18.240 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-15T21:41:18.253 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-openssl. 2024-04-15T21:41:18.258 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:41:18.274 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:41:18.280 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-15T21:41:18.311 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-15T21:41:18.566 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-tempita. 2024-04-15T21:41:18.592 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-15T21:41:18.631 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-mgr. 2024-04-15T21:41:18.649 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:41:18.658 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:18.685 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-15T21:41:18.698 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-mgr (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:18.713 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-15T21:41:18.752 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:41:18.938 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-paste. 2024-04-15T21:41:18.964 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-15T21:41:19.003 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:41:19.055 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-15T21:41:19.082 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-15T21:41:19.093 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-mon. 2024-04-15T21:41:19.119 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:19.121 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:41:19.168 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-mon (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:19.323 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-15T21:41:19.351 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-15T21:41:19.390 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:41:19.433 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-tempora. 2024-04-15T21:41:19.460 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-15T21:41:19.499 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-15T21:41:19.676 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-15T21:41:19.703 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-15T21:41:19.738 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-osd. 2024-04-15T21:41:19.742 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:41:19.765 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:19.785 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-portend. 2024-04-15T21:41:19.796 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-osd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:19.812 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-15T21:41:19.852 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-15T21:41:20.029 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-webtest. 2024-04-15T21:41:20.057 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-15T21:41:20.087 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-15T21:41:20.138 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-15T21:41:20.165 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-15T21:41:20.205 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-15T21:41:20.365 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pecan. 2024-04-15T21:41:20.392 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-15T21:41:20.431 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:41:20.508 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-15T21:41:20.535 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-15T21:41:20.574 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:41:20.762 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-certifi. 2024-04-15T21:41:20.788 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-15T21:41:20.833 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph. 2024-04-15T21:41:20.836 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-15T21:41:20.860 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../066-ceph_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:20.900 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:20.944 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-natsort. 2024-04-15T21:41:20.972 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-15T21:41:21.011 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-15T21:41:21.189 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-idna. 2024-04-15T21:41:21.215 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-15T21:41:21.247 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-15T21:41:21.261 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-fuse. 2024-04-15T21:41:21.264 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-logutils. 2024-04-15T21:41:21.288 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:21.291 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-15T21:41:21.322 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-15T21:41:21.327 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:21.541 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-urllib3. 2024-04-15T21:41:21.568 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-15T21:41:21.608 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:41:21.617 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-15T21:41:21.644 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-15T21:41:21.656 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-mds. 2024-04-15T21:41:21.682 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:21.683 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:41:21.722 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-mds (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:21.936 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-requests. 2024-04-15T21:41:21.963 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-15T21:41:21.969 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-mako. 2024-04-15T21:41:21.997 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-15T21:41:22.002 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:41:22.036 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:41:22.117 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package cephadm. 2024-04-15T21:41:22.144 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../069-cephadm_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:22.184 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:22.281 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-15T21:41:22.307 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-15T21:41:22.339 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:41:22.389 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-15T21:41:22.416 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-15T21:41:22.456 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:41:22.495 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-15T21:41:22.522 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-15T21:41:22.562 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-15T21:41:22.625 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-15T21:41:22.652 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:22.691 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:22.809 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-15T21:41:22.840 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-15T21:41:22.884 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:41:22.914 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-15T21:41:22.930 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:41:22.973 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:41:23.075 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-15T21:41:23.098 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:23.138 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:23.253 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-webob. 2024-04-15T21:41:23.281 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-15T21:41:23.328 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:41:23.449 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-15T21:41:23.475 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-15T21:41:23.515 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:41:23.756 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-waitress. 2024-04-15T21:41:23.783 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-15T21:41:23.825 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:41:23.970 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-babel. 2024-04-15T21:41:23.997 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:41:24.001 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-openssl. 2024-04-15T21:41:24.028 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-15T21:41:24.036 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:41:24.068 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-15T21:41:24.126 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-tempita. 2024-04-15T21:41:24.153 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-15T21:41:24.192 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:41:24.354 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr. 2024-04-15T21:41:24.356 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-jinja2. 2024-04-15T21:41:24.370 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:24.383 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-15T21:41:24.404 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:24.423 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:41:24.495 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-paste. 2024-04-15T21:41:24.522 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-15T21:41:24.562 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:41:24.726 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-15T21:41:24.753 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:24.782 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mon. 2024-04-15T21:41:24.792 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:24.809 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:24.849 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mon (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:24.906 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-15T21:41:24.933 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-15T21:41:24.973 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:41:25.096 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-15T21:41:25.123 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-15T21:41:25.162 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-15T21:41:25.284 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-15T21:41:25.311 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-15T21:41:25.359 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:41:25.481 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-osd. 2024-04-15T21:41:25.490 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-routes. 2024-04-15T21:41:25.504 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:25.517 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-15T21:41:25.544 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-osd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:25.557 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:41:25.679 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-webtest. 2024-04-15T21:41:25.706 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-15T21:41:25.746 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-15T21:41:25.902 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-15T21:41:25.929 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:25.969 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:26.073 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pecan. 2024-04-15T21:41:26.100 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-15T21:41:26.140 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:41:26.512 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-certifi. 2024-04-15T21:41:26.539 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-15T21:41:26.572 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph. 2024-04-15T21:41:26.578 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-15T21:41:26.587 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../066-ceph_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:26.622 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:26.873 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-idna. 2024-04-15T21:41:26.891 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-fuse. 2024-04-15T21:41:26.900 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-15T21:41:26.917 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:26.931 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-15T21:41:26.957 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:27.226 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-urllib3. 2024-04-15T21:41:27.253 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-15T21:41:27.292 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:41:27.336 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mds. 2024-04-15T21:41:27.362 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:27.402 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mds (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:27.416 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-15T21:41:27.443 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-15T21:41:27.482 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:41:27.604 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-requests. 2024-04-15T21:41:27.631 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-15T21:41:27.670 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:41:27.822 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package cephadm. 2024-04-15T21:41:27.842 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../069-cephadm_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:27.880 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:27.970 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-joblib. 2024-04-15T21:41:27.981 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-15T21:41:27.996 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-15T21:41:28.008 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-15T21:41:28.036 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:41:28.048 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:41:28.133 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-15T21:41:28.157 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-15T21:41:28.191 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-15T21:41:28.343 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-15T21:41:28.370 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:28.398 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-15T21:41:28.409 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:28.425 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-15T21:41:28.464 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:41:28.502 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-15T21:41:28.528 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:41:28.568 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:41:28.756 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-15T21:41:28.767 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-sklearn. 2024-04-15T21:41:28.778 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:28.794 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-15T21:41:28.834 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:41:28.922 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:29.217 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-15T21:41:29.244 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-15T21:41:29.283 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:41:29.549 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-babel. 2024-04-15T21:41:29.576 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:41:29.585 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-15T21:41:29.588 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-openssl. 2024-04-15T21:41:29.612 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:29.613 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-15T21:41:29.615 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:41:29.652 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-15T21:41:29.728 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:29.934 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-jinja2. 2024-04-15T21:41:29.961 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-15T21:41:30.001 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:41:30.014 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-mgr. 2024-04-15T21:41:30.042 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:30.097 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-mgr (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:30.346 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-15T21:41:30.373 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:30.412 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:30.459 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-mon. 2024-04-15T21:41:30.486 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:30.517 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-mon (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:30.673 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-15T21:41:30.689 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-15T21:41:30.707 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-cachetools. 2024-04-15T21:41:30.732 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-15T21:41:30.734 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-15T21:41:30.774 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-15T21:41:31.018 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-15T21:41:31.034 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-routes. 2024-04-15T21:41:31.046 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-15T21:41:31.062 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-15T21:41:31.085 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:41:31.120 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-osd. 2024-04-15T21:41:31.134 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:41:31.148 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:31.187 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-osd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:31.398 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-15T21:41:31.425 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-15T21:41:31.463 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:41:31.480 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-15T21:41:31.506 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:31.546 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:31.775 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-rsa. 2024-04-15T21:41:31.802 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-15T21:41:31.841 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-15T21:41:32.162 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-google-auth. 2024-04-15T21:41:32.189 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-15T21:41:32.229 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-15T21:41:32.265 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph. 2024-04-15T21:41:32.282 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../066-ceph_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:32.323 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:32.574 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-15T21:41:32.593 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-fuse. 2024-04-15T21:41:32.601 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-15T21:41:32.624 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:32.640 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:41:32.651 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:32.776 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-15T21:41:32.804 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-15T21:41:32.842 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:41:32.970 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-websocket. 2024-04-15T21:41:32.997 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-15T21:41:33.043 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-15T21:41:33.048 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-mds. 2024-04-15T21:41:33.074 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:33.112 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-mds (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:33.304 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-joblib. 2024-04-15T21:41:33.331 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-15T21:41:33.364 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-15T21:41:33.371 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:41:33.391 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-15T21:41:33.430 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:41:33.515 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package cephadm. 2024-04-15T21:41:33.543 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../069-cephadm_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:33.582 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:33.726 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-15T21:41:33.751 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-15T21:41:33.791 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:41:33.893 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-15T21:41:33.920 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-15T21:41:33.951 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-15T21:41:34.061 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-15T21:41:34.078 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:34.093 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-sklearn. 2024-04-15T21:41:34.121 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-15T21:41:34.128 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:34.243 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:41:34.279 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-15T21:41:34.306 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:41:34.345 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:41:34.397 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-15T21:41:34.424 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-15T21:41:34.455 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:41:34.775 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-15T21:41:34.803 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:41:34.842 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:41:34.985 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-15T21:41:35.013 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:35.080 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package jq. 2024-04-15T21:41:35.096 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:41:35.130 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-15T21:41:35.138 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:35.349 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package socat. 2024-04-15T21:41:35.377 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-15T21:41:35.407 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:41:35.442 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-babel. 2024-04-15T21:41:35.470 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:41:35.509 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:41:35.711 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package xmlstarlet. 2024-04-15T21:41:35.738 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-15T21:41:35.777 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:41:35.855 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-jinja2. 2024-04-15T21:41:35.885 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-15T21:41:35.920 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:41:36.074 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-cachetools. 2024-04-15T21:41:36.101 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-15T21:41:36.133 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-test. 2024-04-15T21:41:36.141 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-15T21:41:36.159 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:36.198 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-test (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:36.273 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-15T21:41:36.300 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:36.339 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:36.409 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-15T21:41:36.425 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-15T21:41:36.459 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:41:36.693 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-15T21:41:36.720 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-15T21:41:36.759 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-15T21:41:36.821 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-15T21:41:36.848 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-15T21:41:36.888 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:41:37.003 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-routes. 2024-04-15T21:41:37.020 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-15T21:41:37.053 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:41:37.199 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-rsa. 2024-04-15T21:41:37.226 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-15T21:41:37.269 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-15T21:41:37.365 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-15T21:41:37.393 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:37.431 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:37.544 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-google-auth. 2024-04-15T21:41:37.559 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-15T21:41:37.594 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-15T21:41:37.897 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-15T21:41:37.924 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-15T21:41:37.964 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:41:38.342 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-websocket. 2024-04-15T21:41:38.369 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-15T21:41:38.408 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-15T21:41:38.570 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package ceph-volume. 2024-04-15T21:41:38.597 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:38.636 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking ceph-volume (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:38.719 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-15T21:41:38.735 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-15T21:41:38.737 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-15T21:41:38.755 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-15T21:41:38.778 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:41:38.796 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:41:38.932 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-15T21:41:38.959 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:38.998 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking libcephfs-dev (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:39.268 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-15T21:41:39.295 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-15T21:41:39.335 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:41:39.557 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-joblib. 2024-04-15T21:41:39.585 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-15T21:41:39.600 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-15T21:41:39.623 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:41:39.628 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:39.648 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-15T21:41:39.666 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:39.675 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-15T21:41:39.714 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:41:39.969 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-15T21:41:39.994 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-15T21:41:39.996 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-15T21:41:40.026 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-15T21:41:40.027 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:41:40.060 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:41:40.069 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package nvme-cli. 2024-04-15T21:41:40.096 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-15T21:41:40.135 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:41:40.304 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-sklearn. 2024-04-15T21:41:40.332 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-15T21:41:40.371 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:41:40.389 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-15T21:41:40.416 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:41:40.455 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:41:40.533 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package pkg-config. 2024-04-15T21:41:40.560 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-15T21:41:40.599 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:41:40.691 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package jq. 2024-04-15T21:41:40.707 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:41:40.741 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-15T21:41:40.852 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-15T21:41:40.879 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-15T21:41:40.918 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:41:40.960 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package socat. 2024-04-15T21:41:40.976 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-15T21:41:41.018 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:41:41.113 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-15T21:41:41.141 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:41.264 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:41.340 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-15T21:41:41.347 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package xmlstarlet. 2024-04-15T21:41:41.366 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-15T21:41:41.375 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-15T21:41:41.413 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:41:41.414 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-15T21:41:41.700 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pastescript. 2024-04-15T21:41:41.727 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-15T21:41:41.734 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-test. 2024-04-15T21:41:41.761 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:41.766 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-15T21:41:41.792 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-test (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:42.095 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pluggy. 2024-04-15T21:41:42.122 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-15T21:41:42.161 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:41:42.252 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-cachetools. 2024-04-15T21:41:42.280 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-15T21:41:42.318 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-15T21:41:42.431 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-psutil. 2024-04-15T21:41:42.447 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-15T21:41:42.481 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-15T21:41:42.571 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-15T21:41:42.588 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-15T21:41:42.629 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:41:42.801 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-py. 2024-04-15T21:41:42.817 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-15T21:41:42.859 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-15T21:41:42.949 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-15T21:41:42.977 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-15T21:41:43.016 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:41:43.154 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pygments. 2024-04-15T21:41:43.172 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-15T21:41:43.204 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:41:43.327 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-rsa. 2024-04-15T21:41:43.355 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-15T21:41:43.394 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-15T21:41:43.754 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-15T21:41:43.778 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-15T21:41:43.809 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-google-auth. 2024-04-15T21:41:43.816 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:41:43.836 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-15T21:41:43.873 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-15T21:41:43.988 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package ceph-volume. 2024-04-15T21:41:44.016 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:44.055 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking ceph-volume (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:44.078 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-toml. 2024-04-15T21:41:44.106 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-15T21:41:44.144 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-15T21:41:44.192 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-15T21:41:44.220 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-15T21:41:44.259 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:41:44.341 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-15T21:41:44.357 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:44.425 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking libcephfs-dev (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:44.456 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-pytest. 2024-04-15T21:41:44.484 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-15T21:41:44.528 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-websocket. 2024-04-15T21:41:44.531 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:41:44.556 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-15T21:41:44.586 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-15T21:41:44.719 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-15T21:41:44.747 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-15T21:41:44.786 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:41:44.860 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package python3-simplejson. 2024-04-15T21:41:44.887 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-15T21:41:44.918 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-15T21:41:44.926 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:41:44.943 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-15T21:41:44.981 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:41:45.124 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-15T21:41:45.154 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-15T21:41:45.195 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-15T21:41:45.198 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:41:45.211 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-15T21:41:45.254 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:41:45.561 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package nvme-cli. 2024-04-15T21:41:45.588 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-15T21:41:45.627 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:41:45.670 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-15T21:41:45.699 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:45.736 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:45.975 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package radosgw. 2024-04-15T21:41:46.002 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../116-radosgw_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:46.016 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package pkg-config. 2024-04-15T21:41:46.041 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking radosgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:46.043 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-15T21:41:46.056 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-15T21:41:46.082 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:41:46.084 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-15T21:41:46.122 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:41:46.318 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-15T21:41:46.334 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-15T21:41:46.377 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:41:46.392 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-15T21:41:46.420 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:41:46.467 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:41:46.737 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package jq. 2024-04-15T21:41:46.738 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-15T21:41:46.765 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:41:46.766 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-15T21:41:46.803 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-15T21:41:46.803 INFO:teuthology.orchestra.run.smithi094.stdout:Selecting previously unselected package rbd-fuse. 2024-04-15T21:41:46.804 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-15T21:41:46.831 INFO:teuthology.orchestra.run.smithi094.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:46.861 INFO:teuthology.orchestra.run.smithi094.stdout:Unpacking rbd-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:47.056 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package socat. 2024-04-15T21:41:47.084 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-15T21:41:47.107 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pastescript. 2024-04-15T21:41:47.122 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:41:47.135 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-15T21:41:47.148 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-15T21:41:47.174 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-15T21:41:47.383 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:41:47.442 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package xmlstarlet. 2024-04-15T21:41:47.452 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pluggy. 2024-04-15T21:41:47.468 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-15T21:41:47.470 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-15T21:41:47.501 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:41:47.508 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:41:47.509 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:41:47.770 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-15T21:41:47.846 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-psutil. 2024-04-15T21:41:47.865 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-test. 2024-04-15T21:41:47.874 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-15T21:41:47.882 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:47.913 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-15T21:41:47.923 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-test (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:48.124 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-15T21:41:48.233 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-py. 2024-04-15T21:41:48.260 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-15T21:41:48.299 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-15T21:41:48.554 INFO:teuthology.orchestra.run.smithi094.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-15T21:41:48.619 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pygments. 2024-04-15T21:41:48.628 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:48.646 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-15T21:41:48.685 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:41:49.123 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-15T21:41:49.150 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-15T21:41:49.161 INFO:teuthology.orchestra.run.smithi094.stdout:Adding system user cephadm....done 2024-04-15T21:41:49.189 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:41:49.276 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:41:49.442 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-toml. 2024-04-15T21:41:49.470 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-15T21:41:49.508 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-15T21:41:49.552 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:41:49.804 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:41:49.930 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:41:49.994 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-pytest. 2024-04-15T21:41:50.022 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-15T21:41:50.061 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:41:50.189 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-15T21:41:50.269 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package ceph-volume. 2024-04-15T21:41:50.287 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2114-ga9a752df-1jammy_all.deb ... 2024-04-15T21:41:50.327 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking ceph-volume (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:50.382 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package python3-simplejson. 2024-04-15T21:41:50.409 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-15T21:41:50.451 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:41:50.451 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:41:50.558 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-15T21:41:50.631 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-15T21:41:50.648 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:50.689 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking libcephfs-dev (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:50.708 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-15T21:41:50.724 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-15T21:41:50.770 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:41:50.843 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:41:51.008 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-15T21:41:51.037 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-15T21:41:51.091 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:41:51.220 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-15T21:41:51.421 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-15T21:41:51.449 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-15T21:41:51.480 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-15T21:41:51.487 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:41:51.529 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package radosgw. 2024-04-15T21:41:51.557 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../116-radosgw_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:51.595 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking radosgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:51.765 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:41:51.841 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package nvme-cli. 2024-04-15T21:41:51.871 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-15T21:41:51.908 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:41:52.008 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:41:52.234 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:41:52.321 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package pkg-config. 2024-04-15T21:41:52.350 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-15T21:41:52.375 INFO:teuthology.orchestra.run.smithi069.stdout:Selecting previously unselected package rbd-fuse. 2024-04-15T21:41:52.388 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:41:52.389 INFO:teuthology.orchestra.run.smithi069.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:52.423 INFO:teuthology.orchestra.run.smithi069.stdout:Unpacking rbd-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:52.477 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:41:52.649 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-15T21:41:52.666 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-15T21:41:52.685 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-15T21:41:52.708 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:41:52.728 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-ceph-argparse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:52.920 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:41:53.054 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:41:53.071 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:41:53.169 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-15T21:41:53.197 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:41:53.197 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-15T21:41:53.236 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-15T21:41:53.312 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-15T21:41:53.323 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:41:53.433 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:41:53.546 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pastescript. 2024-04-15T21:41:53.577 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-15T21:41:53.613 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-15T21:41:53.667 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:41:53.676 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-15T21:41:53.924 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pluggy. 2024-04-15T21:41:53.951 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-15T21:41:53.991 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:41:54.048 INFO:teuthology.orchestra.run.smithi094.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-15T21:41:54.074 INFO:teuthology.orchestra.run.smithi094.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-15T21:41:54.126 INFO:teuthology.orchestra.run.smithi069.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-15T21:41:54.137 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:41:54.189 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:54.253 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-psutil. 2024-04-15T21:41:54.263 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-15T21:41:54.280 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-15T21:41:54.311 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-15T21:41:54.622 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-py. 2024-04-15T21:41:54.623 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:41:54.650 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-15T21:41:54.688 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-15T21:41:54.689 INFO:teuthology.orchestra.run.smithi069.stdout:Adding system user cephadm....done 2024-04-15T21:41:54.732 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-15T21:41:54.836 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:41:54.966 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pygments. 2024-04-15T21:41:54.983 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:41:54.984 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-15T21:41:55.016 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:41:55.113 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:41:55.236 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:41:55.373 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:41:55.446 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-15T21:41:55.474 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-15T21:41:55.498 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:41:55.512 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:41:55.529 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up zip (3.0-12build2) ... 2024-04-15T21:41:55.654 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:41:55.778 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-15T21:41:55.831 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-toml. 2024-04-15T21:41:55.860 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-15T21:41:55.898 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-15T21:41:56.043 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:41:56.160 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-15T21:41:56.201 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-pytest. 2024-04-15T21:41:56.229 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-15T21:41:56.267 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:41:56.331 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:41:56.504 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:41:56.582 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:41:56.622 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package python3-simplejson. 2024-04-15T21:41:56.649 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-15T21:41:56.683 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:41:56.704 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:41:56.792 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:41:56.872 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-15T21:41:56.973 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-15T21:41:57.001 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-15T21:41:57.041 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:41:57.093 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-15T21:41:57.131 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-15T21:41:57.407 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:41:57.478 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-15T21:41:57.667 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:41:57.721 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:41:57.785 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package radosgw. 2024-04-15T21:41:57.814 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../116-radosgw_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:57.851 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking radosgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:57.910 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:41:58.114 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:41:58.177 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:41:58.407 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:41:58.428 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-ceph-argparse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:58.630 INFO:teuthology.orchestra.run.smithi059.stdout:Selecting previously unselected package rbd-fuse. 2024-04-15T21:41:58.647 INFO:teuthology.orchestra.run.smithi059.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2114-ga9a752df-1jammy_amd64.deb ... 2024-04-15T21:41:58.680 INFO:teuthology.orchestra.run.smithi059.stdout:Unpacking rbd-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:58.734 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:41:58.746 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:41:58.872 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:41:58.977 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:41:58.998 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:41:59.001 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-15T21:41:59.102 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:41:59.125 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:41:59.326 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:41:59.383 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:41:59.387 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-idna (3.3-1) ... 2024-04-15T21:41:59.452 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:41:59.697 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:41:59.726 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-15T21:41:59.766 INFO:teuthology.orchestra.run.smithi069.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-15T21:41:59.797 INFO:teuthology.orchestra.run.smithi069.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-15T21:41:59.862 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:41:59.990 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-15T21:42:00.048 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-15T21:42:00.357 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:42:00.466 INFO:teuthology.orchestra.run.smithi059.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-15T21:42:00.484 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-15T21:42:00.562 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:00.734 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:42:00.878 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:42:01.010 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:42:01.070 INFO:teuthology.orchestra.run.smithi059.stdout:Adding system user cephadm....done 2024-04-15T21:42:01.130 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:01.235 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:42:01.264 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-15T21:42:01.345 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up zip (3.0-12build2) ... 2024-04-15T21:42:01.471 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:42:01.524 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:42:01.541 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:42:01.625 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:42:01.726 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:42:01.762 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:42:01.872 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:42:02.011 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:42:02.131 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-15T21:42:02.132 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:42:02.261 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-15T21:42:02.383 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:42:02.390 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:42:02.508 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-15T21:42:02.513 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:02.517 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:42:02.634 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:42:02.639 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:42:02.827 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:42:02.952 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-15T21:42:02.958 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:42:03.188 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-15T21:42:03.192 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-15T21:42:03.370 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-15T21:42:03.435 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-15T21:42:03.447 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-15T21:42:03.621 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:42:03.733 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:42:03.736 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:42:03.987 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-15T21:42:03.991 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:42:03.998 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:42:04.246 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:42:04.250 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:42:04.291 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:42:04.373 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-15T21:42:04.510 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:42:04.642 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:42:04.657 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:42:04.758 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:42:04.786 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-ceph-argparse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:04.897 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:42:05.003 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:05.035 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:42:05.154 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:42:05.263 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:42:05.304 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-idna (3.3-1) ... 2024-04-15T21:42:05.327 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:42:05.389 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:42:05.515 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:42:05.595 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:42:05.614 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:42:05.721 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:42:05.774 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:42:05.847 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:42:05.936 INFO:teuthology.orchestra.run.smithi094.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-15T21:42:06.134 INFO:teuthology.orchestra.run.smithi059.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-15T21:42:06.165 INFO:teuthology.orchestra.run.smithi059.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-15T21:42:06.191 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:42:06.229 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:42:06.292 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:42:06.362 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-15T21:42:06.669 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:42:06.739 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:42:06.819 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:42:06.866 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-15T21:42:06.928 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-15T21:42:07.054 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-15T21:42:07.070 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:07.132 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:42:07.196 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-15T21:42:07.305 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:07.401 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:42:07.431 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:42:07.458 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:42:07.582 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:42:07.708 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:42:07.726 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up zip (3.0-12build2) ... 2024-04-15T21:42:07.758 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:42:07.852 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:42:08.001 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:42:08.034 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:42:08.244 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-15T21:42:08.310 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-15T21:42:08.436 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-15T21:42:08.494 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:08.554 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:42:08.621 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:42:08.704 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-15T21:42:08.814 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:42:08.930 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:42:08.940 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:42:08.980 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:42:09.041 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:42:09.206 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-15T21:42:09.325 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:42:09.333 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-15T21:42:09.474 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-15T21:42:09.710 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-15T21:42:09.727 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-15T21:42:09.728 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:42:09.960 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-15T21:42:09.977 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:42:10.003 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:42:10.363 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:42:10.373 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:42:10.419 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:42:10.482 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up librados2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:10.545 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-15T21:42:10.583 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:10.655 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:42:10.701 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:42:10.855 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:42:10.981 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:42:11.015 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:42:11.038 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libcephfs2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:11.164 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libradosstriper1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:11.266 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:42:11.295 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:42:11.298 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-15T21:42:11.392 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:11.575 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up librbd1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:11.611 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:42:11.676 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-mgr-modules-core (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:11.694 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-idna (3.3-1) ... 2024-04-15T21:42:11.802 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:11.867 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:42:11.977 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:42:12.003 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:42:12.014 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:42:12.014 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:42:12.095 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:42:12.185 INFO:teuthology.orchestra.run.smithi069.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-15T21:42:12.446 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:42:12.496 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up libcephfs-dev (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:12.581 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:42:12.622 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-rados (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:12.757 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up librgw2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:12.858 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:42:12.965 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:42:13.235 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-15T21:42:13.242 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:42:13.334 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-15T21:42:13.494 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:13.577 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:13.604 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-15T21:42:13.703 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:42:13.846 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:42:13.964 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:42:14.031 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:42:14.081 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:42:14.091 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-rbd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:14.286 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up rbd-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:14.330 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:42:14.358 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:42:14.412 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-rgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:14.538 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up python3-cephfs (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:14.598 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-15T21:42:14.617 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-15T21:42:14.664 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:14.749 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-15T21:42:14.868 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:14.994 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:42:15.016 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-15T21:42:15.157 INFO:teuthology.orchestra.run.smithi094.stdout:Adding group ceph....done 2024-04-15T21:42:15.268 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:42:15.321 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:42:15.525 INFO:teuthology.orchestra.run.smithi094.stdout:Adding system user ceph....done 2024-04-15T21:42:15.580 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-15T21:42:15.587 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:42:15.678 INFO:teuthology.orchestra.run.smithi094.stdout:Setting system user ceph properties....done 2024-04-15T21:42:15.697 INFO:teuthology.orchestra.run.smithi094.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-15T21:42:15.833 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-15T21:42:15.840 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-15T21:42:15.973 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-15T21:42:16.158 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:42:16.197 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-15T21:42:16.266 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:42:16.417 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-15T21:42:16.593 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:42:16.686 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:42:16.699 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-test (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:16.702 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up librados2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:16.802 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-15T21:42:16.817 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up radosgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:16.829 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:16.954 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:42:17.079 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:42:17.205 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:42:17.283 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:42:17.283 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:42:17.299 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libcephfs2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:17.425 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libradosstriper1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:17.506 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:42:17.550 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-15T21:42:17.761 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-base (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:17.799 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:42:17.827 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up librbd1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:17.970 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-modules-core (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:18.050 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:42:18.096 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:18.114 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-15T21:42:18.175 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:42:18.302 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:42:18.306 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:42:18.306 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:42:18.391 INFO:teuthology.orchestra.run.smithi059.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-15T21:42:18.596 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-mds (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:18.637 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:42:18.746 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:42:18.819 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:42:18.819 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:42:18.839 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up libcephfs-dev (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:18.965 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-rados (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:19.091 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up librgw2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:19.139 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:42:19.217 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:42:19.306 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-mgr (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:19.407 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-15T21:42:19.527 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:42:19.527 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:42:19.533 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-15T21:42:19.792 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:42:19.919 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:42:19.999 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-osd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:20.244 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:42:20.245 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:42:20.245 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:42:20.487 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-rbd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:20.546 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:42:20.613 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up rbd-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:20.742 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:20.748 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-rgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:20.813 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-15T21:42:20.860 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:20.873 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up python3-cephfs (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:20.939 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-15T21:42:20.991 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:21.003 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-mon (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:21.216 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:42:21.216 INFO:teuthology.orchestra.run.smithi094.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:42:21.224 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-15T21:42:21.492 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:42:21.525 INFO:teuthology.orchestra.run.smithi069.stdout:Adding group ceph....done 2024-04-15T21:42:21.679 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-mgr-cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:21.822 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:21.845 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:42:21.935 INFO:teuthology.orchestra.run.smithi069.stdout:Adding system user ceph....done 2024-04-15T21:42:21.948 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-mgr-dashboard (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:22.101 INFO:teuthology.orchestra.run.smithi094.stdout:Setting up ceph-volume (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:22.104 INFO:teuthology.orchestra.run.smithi069.stdout:Setting system user ceph properties....done 2024-04-15T21:42:22.120 INFO:teuthology.orchestra.run.smithi069.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-15T21:42:22.247 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-15T21:42:22.255 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-15T21:42:22.532 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:42:22.558 INFO:teuthology.orchestra.run.smithi094.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-15T21:42:22.584 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-15T21:42:22.705 INFO:teuthology.orchestra.run.smithi094.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-15T21:42:22.857 INFO:teuthology.orchestra.run.smithi094.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-15T21:42:22.867 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:42:22.996 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up librados2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:23.100 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-test (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:23.103 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:23.210 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up radosgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:23.212 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:42:23.532 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libcephfs2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:23.590 INFO:teuthology.orchestra.run.smithi094.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-15T21:42:23.667 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:42:23.667 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:42:23.683 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libradosstriper1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:23.809 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-15T21:42:24.085 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up librbd1 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:24.111 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-base (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:24.211 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-mgr-modules-core (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:24.229 INFO:teuthology.orchestra.run.smithi094.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-15T21:42:24.235 DEBUG:teuthology.parallel:result is None 2024-04-15T21:42:24.338 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:24.450 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-15T21:42:24.554 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:42:24.554 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:42:24.921 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mds (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:25.039 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up libcephfs-dev (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:25.134 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:42:25.134 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:42:25.165 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-rados (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:25.283 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up librgw2 (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:25.417 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:42:25.632 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:25.849 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:42:25.849 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:42:26.308 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-osd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:26.581 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:42:26.581 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:42:26.672 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-rbd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:26.798 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up rbd-fuse (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:26.930 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-rgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:27.050 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up python3-cephfs (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:27.060 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:27.176 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-common (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:27.186 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:27.337 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mon (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:27.551 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:42:27.551 INFO:teuthology.orchestra.run.smithi069.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:42:27.711 INFO:teuthology.orchestra.run.smithi059.stdout:Adding group ceph....done 2024-04-15T21:42:28.021 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:28.062 INFO:teuthology.orchestra.run.smithi059.stdout:Adding system user ceph....done 2024-04-15T21:42:28.164 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:28.181 INFO:teuthology.orchestra.run.smithi059.stdout:Setting system user ceph properties....done 2024-04-15T21:42:28.198 INFO:teuthology.orchestra.run.smithi059.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-15T21:42:28.290 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-mgr-dashboard (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:28.345 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-15T21:42:28.442 INFO:teuthology.orchestra.run.smithi069.stdout:Setting up ceph-volume (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:28.688 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-15T21:42:28.785 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-15T21:42:28.887 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-15T21:42:29.022 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-15T21:42:29.153 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-test (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:29.263 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up radosgw (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:29.696 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:42:29.697 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:42:30.080 INFO:teuthology.orchestra.run.smithi069.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-15T21:42:30.155 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-base (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:30.513 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-15T21:42:30.733 INFO:teuthology.orchestra.run.smithi069.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-15T21:42:30.738 DEBUG:teuthology.parallel:result is None 2024-04-15T21:42:30.965 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-mds (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:31.190 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:42:31.190 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:42:31.684 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-mgr (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:31.910 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:42:31.911 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:42:32.343 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-osd (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:32.630 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:42:32.630 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:42:33.087 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:33.196 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:33.330 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-mon (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:33.548 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:42:33.548 INFO:teuthology.orchestra.run.smithi059.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:42:34.006 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-mgr-cephadm (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:34.158 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:34.284 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-mgr-dashboard (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:34.435 INFO:teuthology.orchestra.run.smithi059.stdout:Setting up ceph-volume (19.0.0-2114-ga9a752df-1jammy) ... 2024-04-15T21:42:34.805 INFO:teuthology.orchestra.run.smithi059.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-15T21:42:34.897 INFO:teuthology.orchestra.run.smithi059.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-15T21:42:35.049 INFO:teuthology.orchestra.run.smithi059.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-15T21:42:36.158 INFO:teuthology.orchestra.run.smithi059.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-15T21:42:36.806 INFO:teuthology.orchestra.run.smithi059.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-15T21:42:36.811 DEBUG:teuthology.parallel:result is None 2024-04-15T21:42:36.812 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:37.110 DEBUG:teuthology.orchestra.run.smithi059:> dpkg-query -W -f '${Version}' ceph 2024-04-15T21:42:37.130 INFO:teuthology.orchestra.run.smithi059.stdout:19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:42:37.131 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:42:37.131 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114-ga9a752df-1jammy is installed. 2024-04-15T21:42:37.133 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:37.282 DEBUG:teuthology.orchestra.run.smithi069:> dpkg-query -W -f '${Version}' ceph 2024-04-15T21:42:37.301 INFO:teuthology.orchestra.run.smithi069.stdout:19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:42:37.302 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:42:37.302 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114-ga9a752df-1jammy is installed. 2024-04-15T21:42:37.304 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:37.455 DEBUG:teuthology.orchestra.run.smithi094:> dpkg-query -W -f '${Version}' ceph 2024-04-15T21:42:37.474 INFO:teuthology.orchestra.run.smithi094.stdout:19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:42:37.474 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114-ga9a752df-1jammy 2024-04-15T21:42:37.474 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114-ga9a752df-1jammy is installed. 2024-04-15T21:42:37.476 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-15T21:42:37.476 DEBUG:teuthology.orchestra.run.smithi059:> set -ex 2024-04-15T21:42:37.476 DEBUG:teuthology.orchestra.run.smithi059:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:42:37.491 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-15T21:42:37.491 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:42:37.505 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-04-15T21:42:37.505 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:42:37.529 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-15T21:42:37.529 DEBUG:teuthology.orchestra.run.smithi059:> set -ex 2024-04-15T21:42:37.529 DEBUG:teuthology.orchestra.run.smithi059:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:42:37.548 DEBUG:teuthology.orchestra.run.smithi059:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:42:37.603 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-15T21:42:37.603 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:42:37.616 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:42:37.670 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-04-15T21:42:37.670 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:42:37.684 DEBUG:teuthology.orchestra.run.smithi094:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:42:37.742 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-15T21:42:37.743 DEBUG:teuthology.orchestra.run.smithi059:> set -ex 2024-04-15T21:42:37.743 DEBUG:teuthology.orchestra.run.smithi059:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:42:37.756 DEBUG:teuthology.orchestra.run.smithi059:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:42:37.812 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-15T21:42:37.812 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:42:37.826 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:42:37.882 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-04-15T21:42:37.883 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:42:37.897 DEBUG:teuthology.orchestra.run.smithi094:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:42:37.953 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-15T21:42:37.954 DEBUG:teuthology.orchestra.run.smithi059:> set -ex 2024-04-15T21:42:37.954 DEBUG:teuthology.orchestra.run.smithi059:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:42:37.967 DEBUG:teuthology.orchestra.run.smithi059:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:42:38.024 DEBUG:teuthology.orchestra.run.smithi069:> set -ex 2024-04-15T21:42:38.024 DEBUG:teuthology.orchestra.run.smithi069:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:42:38.038 DEBUG:teuthology.orchestra.run.smithi069:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:42:38.094 DEBUG:teuthology.orchestra.run.smithi094:> set -ex 2024-04-15T21:42:38.094 DEBUG:teuthology.orchestra.run.smithi094:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:42:38.107 DEBUG:teuthology.orchestra.run.smithi094:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:42:38.161 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T21:42:38.274 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': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T21:42:38.274 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:38.275 INFO:tasks.cephadm:Cluster fsid is 14228f64-fb71-11ee-bc8f-c7b262605968 2024-04-15T21:42:38.275 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T21:42:38.275 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.59', 'mon.b': '172.21.15.69', 'mon.c': '172.21.15.94'} 2024-04-15T21:42:38.275 INFO:tasks.cephadm:First mon is mon.a on smithi059 2024-04-15T21:42:38.275 INFO:tasks.cephadm:First mgr is a 2024-04-15T21:42:38.275 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T21:42:38.275 DEBUG:teuthology.orchestra.run.smithi059:> sudo hostname $(hostname -s) 2024-04-15T21:42:38.290 DEBUG:teuthology.orchestra.run.smithi069:> sudo hostname $(hostname -s) 2024-04-15T21:42:38.305 DEBUG:teuthology.orchestra.run.smithi094:> sudo hostname $(hostname -s) 2024-04-15T21:42:38.320 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T21:42:38.321 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:38.471 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/54895/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2114-ga9a752df', 'node_name': '172.21.2.9+braggi09', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2114-ga9a752df-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-04-14 16:20:13.371699', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-04-15T21:42:38.611 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref squid, sha1 a9a752df26c63acad72e1b3569fd79a515ca0765 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:38.612 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-04-15T21:42:38.612 DEBUG:teuthology.orchestra.run.smithi059:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:39.096 INFO:teuthology.orchestra.run.smithi059.stdout:-rw-rw-r-- 1 ubuntu ubuntu 775006 Apr 15 21:42 /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:39.096 DEBUG:teuthology.orchestra.run.smithi069:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:39.729 INFO:teuthology.orchestra.run.smithi069.stdout:-rw-rw-r-- 1 ubuntu ubuntu 775006 Apr 15 21:42 /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:39.729 DEBUG:teuthology.orchestra.run.smithi094:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:40.204 INFO:teuthology.orchestra.run.smithi094.stdout:-rw-rw-r-- 1 ubuntu ubuntu 775006 Apr 15 21:42 /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:40.205 DEBUG:teuthology.orchestra.run.smithi059:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:40.213 DEBUG:teuthology.orchestra.run.smithi069:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:40.221 DEBUG:teuthology.orchestra.run.smithi094:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:40.242 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 on all hosts... 2024-04-15T21:42:40.242 DEBUG:teuthology.orchestra.run.smithi059:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T21:42:40.258 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T21:42:40.267 DEBUG:teuthology.orchestra.run.smithi094:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T21:42:40.427 INFO:teuthology.orchestra.run.smithi059.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T21:42:40.429 INFO:teuthology.orchestra.run.smithi069.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T21:42:40.437 INFO:teuthology.orchestra.run.smithi094.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T21:42:40.637 INFO:teuthology.orchestra.run.smithi059.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:40.637 INFO:teuthology.orchestra.run.smithi059.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 not found: manifest unknown: manifest unknown 2024-04-15T21:42:40.637 INFO:teuthology.orchestra.run.smithi059.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:40.661 INFO:teuthology.orchestra.run.smithi094.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:40.661 INFO:teuthology.orchestra.run.smithi094.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 not found: manifest unknown: manifest unknown 2024-04-15T21:42:40.661 INFO:teuthology.orchestra.run.smithi094.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:40.666 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:42:40.666 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi059 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T21:42:40.668 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T21:42:40.669 DEBUG:teuthology.misc:Transferring archived files from smithi059:/var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi059/crash 2024-04-15T21:42:40.670 DEBUG:teuthology.orchestra.run.smithi059:> sudo tar c -f - -C /var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:42:40.682 INFO:teuthology.orchestra.run.smithi059.stderr:tar: /var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:42:40.682 INFO:teuthology.orchestra.run.smithi059.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:42:40.684 DEBUG:teuthology.misc:Transferring archived files from smithi069:/var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi069/crash 2024-04-15T21:42:40.685 DEBUG:teuthology.orchestra.run.smithi069:> sudo tar c -f - -C /var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:42:40.688 INFO:teuthology.orchestra.run.smithi069.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:40.688 INFO:teuthology.orchestra.run.smithi069.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 not found: manifest unknown: manifest unknown 2024-04-15T21:42:40.688 INFO:teuthology.orchestra.run.smithi069.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:42:40.699 INFO:teuthology.orchestra.run.smithi069.stderr:tar: /var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:42:40.699 INFO:teuthology.orchestra.run.smithi069.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:42:40.701 DEBUG:teuthology.misc:Transferring archived files from smithi094:/var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi094/crash 2024-04-15T21:42:40.702 DEBUG:teuthology.orchestra.run.smithi094:> sudo tar c -f - -C /var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:42:40.714 INFO:teuthology.orchestra.run.smithi094.stderr:tar: /var/lib/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:42:40.714 INFO:teuthology.orchestra.run.smithi094.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:42:40.715 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T21:42:40.715 DEBUG:teuthology.orchestra.run.smithi059:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-04-15T21:42:40.737 INFO:teuthology.orchestra.run.smithi059.stderr:grep: /var/log/ceph/14228f64-fb71-11ee-bc8f-c7b262605968/ceph.log: No such file or directory 2024-04-15T21:42:40.739 INFO:tasks.cephadm:Compressing logs... 2024-04-15T21:42:40.739 DEBUG:teuthology.orchestra.run.smithi059:> 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-15T21:42:40.784 DEBUG:teuthology.orchestra.run.smithi069:> 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-15T21:42:40.787 DEBUG:teuthology.orchestra.run.smithi094:> 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-15T21:42:40.794 INFO:teuthology.orchestra.run.smithi059.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-15T21:42:40.795 INFO:teuthology.orchestra.run.smithi059.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:42:40.796 INFO:teuthology.orchestra.run.smithi059.stderr:/var/log/ceph/cephadm.log: 70.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:42:40.798 INFO:teuthology.orchestra.run.smithi059.stderr: 2024-04-15T21:42:40.798 INFO:teuthology.orchestra.run.smithi059.stderr:real 0m0.011s 2024-04-15T21:42:40.798 INFO:teuthology.orchestra.run.smithi059.stderr:user 0m0.010s 2024-04-15T21:42:40.798 INFO:teuthology.orchestra.run.smithi059.stderr:sys 0m0.009s 2024-04-15T21:42:40.798 INFO:teuthology.orchestra.run.smithi069.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-15T21:42:40.799 INFO:teuthology.orchestra.run.smithi094.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-15T21:42:40.800 INFO:teuthology.orchestra.run.smithi094.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:42:40.801 INFO:teuthology.orchestra.run.smithi094.stderr:/var/log/ceph/cephadm.log: 70.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:42:40.803 INFO:teuthology.orchestra.run.smithi094.stderr: 2024-04-15T21:42:40.803 INFO:teuthology.orchestra.run.smithi094.stderr:real 0m0.012s 2024-04-15T21:42:40.804 INFO:teuthology.orchestra.run.smithi094.stderr:user 0m0.014s 2024-04-15T21:42:40.804 INFO:teuthology.orchestra.run.smithi094.stderr:sys 0m0.005s 2024-04-15T21:42:40.805 INFO:teuthology.orchestra.run.smithi069.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:42:40.807 INFO:teuthology.orchestra.run.smithi069.stderr:/var/log/ceph/cephadm.log: 69.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:42:40.808 INFO:teuthology.orchestra.run.smithi069.stderr: 2024-04-15T21:42:40.808 INFO:teuthology.orchestra.run.smithi069.stderr:real 0m0.018s 2024-04-15T21:42:40.808 INFO:teuthology.orchestra.run.smithi069.stderr:user 0m0.007s 2024-04-15T21:42:40.808 INFO:teuthology.orchestra.run.smithi069.stderr:sys 0m0.013s 2024-04-15T21:42:40.808 INFO:tasks.cephadm:Archiving logs... 2024-04-15T21:42:40.809 DEBUG:teuthology.misc:Transferring archived files from smithi059:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi059/log 2024-04-15T21:42:40.810 DEBUG:teuthology.orchestra.run.smithi059:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:42:40.852 DEBUG:teuthology.misc:Transferring archived files from smithi069:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi069/log 2024-04-15T21:42:40.853 DEBUG:teuthology.orchestra.run.smithi069:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:42:40.867 DEBUG:teuthology.misc:Transferring archived files from smithi094:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi094/log 2024-04-15T21:42:40.868 DEBUG:teuthology.orchestra.run.smithi094:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:42:40.883 INFO:tasks.cephadm:Removing cluster... 2024-04-15T21:42:40.883 DEBUG:teuthology.orchestra.run.smithi059:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 14228f64-fb71-11ee-bc8f-c7b262605968 --force 2024-04-15T21:42:41.065 INFO:teuthology.orchestra.run.smithi059.stdout:Deleting cluster with fsid: 14228f64-fb71-11ee-bc8f-c7b262605968 2024-04-15T21:42:42.425 DEBUG:teuthology.orchestra.run.smithi069:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 14228f64-fb71-11ee-bc8f-c7b262605968 --force 2024-04-15T21:42:42.590 INFO:teuthology.orchestra.run.smithi069.stdout:Deleting cluster with fsid: 14228f64-fb71-11ee-bc8f-c7b262605968 2024-04-15T21:42:43.941 DEBUG:teuthology.orchestra.run.smithi094:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 14228f64-fb71-11ee-bc8f-c7b262605968 --force 2024-04-15T21:42:44.108 INFO:teuthology.orchestra.run.smithi094.stdout:Deleting cluster with fsid: 14228f64-fb71-11ee-bc8f-c7b262605968 2024-04-15T21:42:45.440 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T21:42:45.440 DEBUG:teuthology.orchestra.run.smithi059:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:45.446 DEBUG:teuthology.orchestra.run.smithi069:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:45.453 DEBUG:teuthology.orchestra.run.smithi094:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:42:45.459 INFO:tasks.cephadm:Teardown complete 2024-04-15T21:42:45.459 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi059 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T21:42:45.697 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=2b904c77fbfe4d7cb33b864a409d75c9 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi059 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T21:42:45.700 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T21:42:45.710 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-15T21:42:45.724 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-15T21:42:45.725 DEBUG:teuthology.orchestra.run.smithi059:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:42:45.738 DEBUG:teuthology.orchestra.run.smithi069:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:42:45.741 DEBUG:teuthology.orchestra.run.smithi094:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:42:45.839 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T21:42:45.850 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T21:42:45.850 DEBUG:teuthology.orchestra.run.smithi059:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:42:45.853 DEBUG:teuthology.orchestra.run.smithi069:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:42:45.855 DEBUG:teuthology.orchestra.run.smithi094:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:42:45.864 INFO:teuthology.orchestra.run.smithi069.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:42:45.864 INFO:teuthology.orchestra.run.smithi069.stdout:============================================================================== 2024-04-15T21:42:45.864 INFO:teuthology.orchestra.run.smithi069.stdout: hv01.front.sepi 67.205.162.81 3 u 53 64 3 0.177 -2.766 0.969 2024-04-15T21:42:45.864 INFO:teuthology.orchestra.run.smithi069.stdout: hv02.front.sepi 63.231.80.2 3 u 55 64 3 0.194 -1.610 0.942 2024-04-15T21:42:45.864 INFO:teuthology.orchestra.run.smithi069.stdout: hv03.front.sepi 74.6.168.72 3 u 58 64 3 0.108 -0.909 0.898 2024-04-15T21:42:45.864 INFO:teuthology.orchestra.run.smithi069.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:42:45.866 INFO:teuthology.orchestra.run.smithi059.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:42:45.866 INFO:teuthology.orchestra.run.smithi059.stdout:============================================================================== 2024-04-15T21:42:45.866 INFO:teuthology.orchestra.run.smithi059.stdout: hv01.front.sepi 67.205.162.81 3 u 55 64 3 0.159 -0.286 0.284 2024-04-15T21:42:45.866 INFO:teuthology.orchestra.run.smithi059.stdout: hv02.front.sepi 63.231.80.2 3 u 59 64 3 0.149 +0.842 0.206 2024-04-15T21:42:45.867 INFO:teuthology.orchestra.run.smithi059.stdout: hv03.front.sepi 74.6.168.72 3 u 57 64 3 0.217 +1.437 0.245 2024-04-15T21:42:45.867 INFO:teuthology.orchestra.run.smithi059.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:42:45.868 INFO:teuthology.orchestra.run.smithi094.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:42:45.868 INFO:teuthology.orchestra.run.smithi094.stdout:============================================================================== 2024-04-15T21:42:45.868 INFO:teuthology.orchestra.run.smithi094.stdout: hv01.front.sepi 67.205.162.81 3 u 57 64 3 0.107 -2.286 0.533 2024-04-15T21:42:45.868 INFO:teuthology.orchestra.run.smithi094.stdout: hv02.front.sepi 63.231.80.2 3 u 58 64 3 0.187 -1.199 0.559 2024-04-15T21:42:45.869 INFO:teuthology.orchestra.run.smithi094.stdout: hv03.front.sepi 74.6.168.72 3 u 56 64 3 0.148 -0.574 0.579 2024-04-15T21:42:45.869 INFO:teuthology.orchestra.run.smithi094.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:42:45.870 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T21:42:45.881 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T21:42:45.882 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T21:42:45.895 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T21:42:45.910 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T21:42:45.923 INFO:teuthology.task.internal:Duration was 556.606266 seconds 2024-04-15T21:42:45.923 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T21:42:45.936 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T21:42:45.937 DEBUG:teuthology.orchestra.run.smithi059:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:42:45.940 DEBUG:teuthology.orchestra.run.smithi069:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:42:45.942 DEBUG:teuthology.orchestra.run.smithi094:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:42:45.979 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T21:42:45.979 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi059.front.sepia.ceph.com 2024-04-15T21:42:45.979 DEBUG:teuthology.orchestra.run.smithi059:> 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-15T21:42:46.028 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi069.front.sepia.ceph.com 2024-04-15T21:42:46.029 DEBUG:teuthology.orchestra.run.smithi069:> 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-15T21:42:46.039 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi094.front.sepia.ceph.com 2024-04-15T21:42:46.040 DEBUG:teuthology.orchestra.run.smithi094:> 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-15T21:42:46.050 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T21:42:46.050 DEBUG:teuthology.orchestra.run.smithi059:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:42:46.076 DEBUG:teuthology.orchestra.run.smithi069:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:42:46.083 DEBUG:teuthology.orchestra.run.smithi094:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:42:46.121 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T21:42:46.122 DEBUG:teuthology.orchestra.run.smithi059:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:42:46.148 DEBUG:teuthology.orchestra.run.smithi069:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:42:46.151 DEBUG:teuthology.orchestra.run.smithi094:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:42:46.217 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T21:42:46.227 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T21:42:46.227 DEBUG:teuthology.orchestra.run.smithi059:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:42:46.239 DEBUG:teuthology.orchestra.run.smithi069:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:42:46.257 DEBUG:teuthology.orchestra.run.smithi094:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:42:46.269 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T21:42:46.280 DEBUG:teuthology.orchestra.run.smithi059:> 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-15T21:42:46.286 DEBUG:teuthology.orchestra.run.smithi069:> 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-15T21:42:46.294 INFO:teuthology.orchestra.run.smithi059.stdout:kernel.core_pattern = core 2024-04-15T21:42:46.304 DEBUG:teuthology.orchestra.run.smithi094:> 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-15T21:42:46.313 INFO:teuthology.orchestra.run.smithi069.stdout:kernel.core_pattern = core 2024-04-15T21:42:46.327 INFO:teuthology.orchestra.run.smithi094.stdout:kernel.core_pattern = core 2024-04-15T21:42:46.355 DEBUG:teuthology.orchestra.run.smithi059:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:42:46.359 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:42:46.360 DEBUG:teuthology.orchestra.run.smithi069:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:42:46.389 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:42:46.390 DEBUG:teuthology.orchestra.run.smithi094:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:42:46.400 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:42:46.401 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T21:42:46.415 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T21:42:46.416 DEBUG:teuthology.misc:Transferring archived files from smithi059:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi059 2024-04-15T21:42:46.417 DEBUG:teuthology.orchestra.run.smithi059:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:42:46.439 DEBUG:teuthology.misc:Transferring archived files from smithi069:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi069 2024-04-15T21:42:46.439 DEBUG:teuthology.orchestra.run.smithi069:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:42:46.463 DEBUG:teuthology.misc:Transferring archived files from smithi094:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466/remote/smithi094 2024-04-15T21:42:46.464 DEBUG:teuthology.orchestra.run.smithi094:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:42:46.483 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T21:42:46.484 DEBUG:teuthology.orchestra.run.smithi059:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:42:46.487 DEBUG:teuthology.orchestra.run.smithi069:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:42:46.508 DEBUG:teuthology.orchestra.run.smithi094:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:42:46.534 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T21:42:46.549 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T21:42:46.549 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T21:42:46.567 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T21:42:46.567 DEBUG:teuthology.orchestra.run.smithi059:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:42:46.572 DEBUG:teuthology.orchestra.run.smithi069:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:42:46.574 DEBUG:teuthology.orchestra.run.smithi094:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:42:46.575 INFO:teuthology.orchestra.run.smithi059.stdout: 658626 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:42 /home/ubuntu/cephtest 2024-04-15T21:42:46.578 INFO:teuthology.orchestra.run.smithi069.stdout: 658637 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:42 /home/ubuntu/cephtest 2024-04-15T21:42:46.582 INFO:teuthology.orchestra.run.smithi094.stdout: 658641 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:42 /home/ubuntu/cephtest 2024-04-15T21:42:46.584 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T21:42:46.595 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T21:42:46.625 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T21:42:46.653 DEBUG:teuthology.nuke:shortname: smithi059 2024-04-15T21:42:46.654 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:42:46.681 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi059.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:24:13.167149', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIX173lhKIWHpjl8IN2nYo15u7Xj6IJolG2HIu3gKfnBrTkDo+EeRNgMyaAkwpbl7cAy11Vugjm6VjQiRXH4+Q4='} 2024-04-15T21:42:46.686 DEBUG:teuthology.nuke:shortname: smithi069 2024-04-15T21:42:46.687 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:42:46.715 DEBUG:teuthology.nuke:shortname: smithi094 2024-04-15T21:42:46.715 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:42:46.723 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi069.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:24:13.165914', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOZcl7L0C8DyYs6cfLHribD1pT4joN23ipGToJuAL/C59EsSn2QMMBpMkQfssAg4o4qoRMNK4uxxgDmEd0mPG/g='} 2024-04-15T21:42:46.760 INFO:teuthology.orchestra.console.smithi059:Power off 2024-04-15T21:42:46.760 DEBUG:teuthology.orchestra.console.smithi059:pexpect command: ipmitool -H smithi059.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:42:46.777 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi094.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657466', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:24:13.164470', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFLKAJm4tUK10SOanBXb7K0BDp+Ss6R+EH+b4S5X2NqWa6qUoCFKFZ09IzuDESmE0CyyBpu+CaXCxkxw9HwTE0c='} 2024-04-15T21:42:46.789 DEBUG:teuthology.orchestra.console.smithi059:power off output: Chassis Power Control: Down/Off 2024-04-15T21:42:46.789 DEBUG:teuthology.orchestra.console.smithi059:pexpect command: ipmitool -H smithi059.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:46.819 INFO:teuthology.orchestra.console.smithi069:Power off 2024-04-15T21:42:46.820 DEBUG:teuthology.orchestra.console.smithi069:pexpect command: ipmitool -H smithi069.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:42:46.836 DEBUG:teuthology.orchestra.console.smithi059:check power output: Chassis Power is on 2024-04-15T21:42:46.848 DEBUG:teuthology.orchestra.console.smithi069:power off output: Chassis Power Control: Down/Off 2024-04-15T21:42:46.848 DEBUG:teuthology.orchestra.console.smithi069:pexpect command: ipmitool -H smithi069.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:46.871 INFO:teuthology.orchestra.console.smithi094:Power off 2024-04-15T21:42:46.871 DEBUG:teuthology.orchestra.console.smithi094:pexpect command: ipmitool -H smithi094.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:42:46.885 DEBUG:teuthology.orchestra.console.smithi069:check power output: Chassis Power is on 2024-04-15T21:42:46.901 DEBUG:teuthology.orchestra.console.smithi094:power off output: Chassis Power Control: Down/Off 2024-04-15T21:42:46.902 DEBUG:teuthology.orchestra.console.smithi094:pexpect command: ipmitool -H smithi094.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:46.958 DEBUG:teuthology.orchestra.console.smithi094:check power output: Chassis Power is on 2024-04-15T21:42:50.838 DEBUG:teuthology.orchestra.console.smithi059:pexpect command: ipmitool -H smithi059.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:50.886 DEBUG:teuthology.orchestra.console.smithi069:pexpect command: ipmitool -H smithi069.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:50.960 DEBUG:teuthology.orchestra.console.smithi094:pexpect command: ipmitool -H smithi094.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:50.971 DEBUG:teuthology.orchestra.console.smithi059:check power output: Chassis Power is on 2024-04-15T21:42:50.998 DEBUG:teuthology.orchestra.console.smithi069:check power output: Chassis Power is on 2024-04-15T21:42:51.071 DEBUG:teuthology.orchestra.console.smithi094:check power output: Chassis Power is on 2024-04-15T21:42:54.974 DEBUG:teuthology.orchestra.console.smithi059:pexpect command: ipmitool -H smithi059.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:54.999 DEBUG:teuthology.orchestra.console.smithi069:pexpect command: ipmitool -H smithi069.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:55.072 DEBUG:teuthology.orchestra.console.smithi094:pexpect command: ipmitool -H smithi094.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:55.085 DEBUG:teuthology.orchestra.console.smithi059:check power output: Chassis Power is off 2024-04-15T21:42:55.111 DEBUG:teuthology.orchestra.console.smithi069:check power output: Chassis Power is on 2024-04-15T21:42:55.187 DEBUG:teuthology.orchestra.console.smithi094:check power output: Chassis Power is off 2024-04-15T21:42:55.187 INFO:teuthology.orchestra.console.smithi059:Power off completed 2024-04-15T21:42:55.288 INFO:teuthology.orchestra.console.smithi094:Power off completed 2024-04-15T21:42:59.114 DEBUG:teuthology.orchestra.console.smithi069:pexpect command: ipmitool -H smithi069.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:42:59.226 DEBUG:teuthology.orchestra.console.smithi069:check power output: Chassis Power is off 2024-04-15T21:42:59.327 INFO:teuthology.orchestra.console.smithi069:Power off completed 2024-04-15T21:42:59.432 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/connectivity task/test_host_drain} duration: 556.6062655448914 failure_reason: 'Command failed on smithi059 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull''' flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=2b904c77fbfe4d7cb33b864a409d75c9 status: fail success: false 2024-04-15T21:42:59.432 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:42:59.510 INFO:teuthology.run:FAIL