2024-05-10T22:05:40.957 INFO:root:teuthology version: 0.0.1.dev271+g1ae7ad8 2024-05-10T22:05:40.957 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782 --verbose --description orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} --name teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi --owner scheduled_teuthology@teuthology -- /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/orig.config.yaml 2024-05-10T22:05:40.987 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-10T22:05:41.068 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782 branch: squid description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7701782' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-05-10_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: true mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN log-only-match: - CEPHADM_ sha1: f72fecff68e1d400c4568684327c900485c20d6a ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: f72fecff68e1d400c4568684327c900485c20d6a workunit: branch: squid sha1: f72fecff68e1d400c4568684327c900485c20d6a 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: 2153 sha1: f72fecff68e1d400c4568684327c900485c20d6a sleep_before_teardown: 0 subset: 20/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_f72fecff68e1d400c4568684327c900485c20d6a/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: f72fecff68e1d400c4568684327c900485c20d6a targets: smithi063.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBJL3/bhPSgB5tsElLgikKifaqf48w12vn1BDzV1YSR5zuTL4X3YsY0Wb4bzMIg7A1HBNZogU/5bH+tS2mMXVok= smithi152.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLYBtzIjNcwA5WXdUDslvojpHO5fM0ODlElnnZyGQ5aCDE4t/g07q1CKfoksUozWTW2TZLCGlpXEtj6XuTUAZKs= smithi169.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLeito1DMwSzYxMnemJSwn6H2A9QFSoWOZxdCRx6PR3Pjr6iA4xipUVhpTFWahv0+RtSiHs3ZwMfte4rDa4G/J0= 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: 1ae7ad82388e92a475afff437d49054826c019a1 timestamp: 2024-05-10_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-05-10T22:05:41.068 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_f72fecff68e1d400c4568684327c900485c20d6a/qa; will attempt to use it 2024-05-10T22:05:41.069 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks 2024-05-10T22:05:41.069 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-05-10T22:05:41.070 INFO:teuthology.task.internal:Checking packages... 2024-05-10T22:05:41.093 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'f72fecff68e1d400c4568684327c900485c20d6a' 2024-05-10T22:05:41.093 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-05-10T22:05:41.093 INFO:teuthology.packaging:ref: None 2024-05-10T22:05:41.093 INFO:teuthology.packaging:tag: None 2024-05-10T22:05:41.093 INFO:teuthology.packaging:branch: squid 2024-05-10T22:05:41.093 INFO:teuthology.packaging:sha1: f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:05:41.093 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-05-10T22:05:41.279 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:05:41.281 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-05-10T22:05:41.288 INFO:teuthology.task.internal:no buildpackages task found 2024-05-10T22:05:41.288 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-05-10T22:05:41.302 INFO:teuthology.task.internal:Saving configuration 2024-05-10T22:05:41.314 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-05-10T22:05:41.321 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-10T22:05:41.344 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi063.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782', '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-05-10 21:58:42.460049', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC9N0Q5qUouOtw2KgnLiigTH+fOSWj/kTWtwlSY5UURq'} 2024-05-10T22:05:41.368 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi152.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782', '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-05-10 21:58:42.461802', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIu9fZGMq/ipobmj1fK/K3FLR1IWCmDiMebTDHHvy52S'} 2024-05-10T22:05:41.390 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi169.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782', '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-05-10 21:58:42.462937', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO/CTVVtCYHvx5XzPhrlZbeBXT/0S2uVlABMpzKTqBwU'} 2024-05-10T22:05:41.390 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-05-10T22:05:41.398 INFO:teuthology.task.internal:roles: ubuntu@smithi063.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-05-10T22:05:41.398 INFO:teuthology.task.internal:roles: ubuntu@smithi152.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-05-10T22:05:41.398 INFO:teuthology.task.internal:roles: ubuntu@smithi169.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-05-10T22:05:41.398 INFO:teuthology.run_tasks:Running task console_log... 2024-05-10T22:05:41.503 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f7cd446a280>, signals=[15]) 2024-05-10T22:05:41.503 INFO:teuthology.run_tasks:Running task internal.connect... 2024-05-10T22:05:41.508 INFO:teuthology.task.internal:Opening connections... 2024-05-10T22:05:41.508 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi063.front.sepia.ceph.com 2024-05-10T22:05:41.510 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi063.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:05:41.590 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi152.front.sepia.ceph.com 2024-05-10T22:05:41.591 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:05:41.664 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi169.front.sepia.ceph.com 2024-05-10T22:05:41.665 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:05:41.740 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-05-10T22:05:41.746 DEBUG:teuthology.orchestra.run.smithi063:> uname -m 2024-05-10T22:05:41.752 INFO:teuthology.orchestra.run.smithi063.stdout:x86_64 2024-05-10T22:05:41.752 DEBUG:teuthology.orchestra.run.smithi063:> cat /etc/os-release 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:NAME="Ubuntu" 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:VERSION_ID="22.04" 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:VERSION_CODENAME=jammy 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:ID=ubuntu 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:ID_LIKE=debian 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:HOME_URL="https://www.ubuntu.com/" 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-05-10T22:05:41.800 INFO:teuthology.orchestra.run.smithi063.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-05-10T22:05:41.801 INFO:teuthology.orchestra.run.smithi063.stdout:UBUNTU_CODENAME=jammy 2024-05-10T22:05:41.801 INFO:teuthology.lock.ops:Updating smithi063.front.sepia.ceph.com on lock server 2024-05-10T22:05:41.829 DEBUG:teuthology.orchestra.run.smithi152:> uname -m 2024-05-10T22:05:41.835 INFO:teuthology.orchestra.run.smithi152.stdout:x86_64 2024-05-10T22:05:41.835 DEBUG:teuthology.orchestra.run.smithi152:> cat /etc/os-release 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:NAME="Ubuntu" 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:VERSION_ID="22.04" 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:VERSION_CODENAME=jammy 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:ID=ubuntu 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:ID_LIKE=debian 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:HOME_URL="https://www.ubuntu.com/" 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-05-10T22:05:41.883 INFO:teuthology.orchestra.run.smithi152.stdout:UBUNTU_CODENAME=jammy 2024-05-10T22:05:41.884 INFO:teuthology.lock.ops:Updating smithi152.front.sepia.ceph.com on lock server 2024-05-10T22:05:41.904 DEBUG:teuthology.orchestra.run.smithi169:> uname -m 2024-05-10T22:05:41.909 INFO:teuthology.orchestra.run.smithi169.stdout:x86_64 2024-05-10T22:05:41.910 DEBUG:teuthology.orchestra.run.smithi169:> cat /etc/os-release 2024-05-10T22:05:41.957 INFO:teuthology.orchestra.run.smithi169.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:NAME="Ubuntu" 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:VERSION_ID="22.04" 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:VERSION_CODENAME=jammy 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:ID=ubuntu 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:ID_LIKE=debian 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:HOME_URL="https://www.ubuntu.com/" 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-05-10T22:05:41.958 INFO:teuthology.orchestra.run.smithi169.stdout:UBUNTU_CODENAME=jammy 2024-05-10T22:05:41.959 INFO:teuthology.lock.ops:Updating smithi169.front.sepia.ceph.com on lock server 2024-05-10T22:05:41.979 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-05-10T22:05:41.987 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-05-10T22:05:41.996 INFO:teuthology.task.internal:Checking for old test directory... 2024-05-10T22:05:41.996 DEBUG:teuthology.orchestra.run.smithi063:> test '!' -e /home/ubuntu/cephtest 2024-05-10T22:05:41.998 DEBUG:teuthology.orchestra.run.smithi152:> test '!' -e /home/ubuntu/cephtest 2024-05-10T22:05:42.001 DEBUG:teuthology.orchestra.run.smithi169:> test '!' -e /home/ubuntu/cephtest 2024-05-10T22:05:42.005 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-05-10T22:05:42.012 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-05-10T22:05:42.012 DEBUG:teuthology.orchestra.run.smithi063:> test -z $(ls -A /var/lib/ceph) 2024-05-10T22:05:42.045 DEBUG:teuthology.orchestra.run.smithi152:> test -z $(ls -A /var/lib/ceph) 2024-05-10T22:05:42.048 DEBUG:teuthology.orchestra.run.smithi169:> test -z $(ls -A /var/lib/ceph) 2024-05-10T22:05:42.058 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-05-10T22:05:42.135 INFO:teuthology.run_tasks:Running task kernel... 2024-05-10T22:05:42.148 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-05-10T22:05:42.148 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-05-10T22:05:42.148 DEBUG:teuthology.orchestra.run.smithi063:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-10T22:05:42.148 DEBUG:teuthology.orchestra.run.smithi152:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-10T22:05:42.149 DEBUG:teuthology.orchestra.run.smithi169:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-10T22:05:42.153 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T22:05:42.153 DEBUG:teuthology.orchestra.run.smithi152:> uname -r 2024-05-10T22:05:42.154 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T22:05:42.154 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T22:05:42.155 DEBUG:teuthology.orchestra.run.smithi169:> uname -r 2024-05-10T22:05:42.155 DEBUG:teuthology.orchestra.run.smithi063:> uname -r 2024-05-10T22:05:42.199 INFO:teuthology.orchestra.run.smithi152.stdout:5.15.0-56-generic 2024-05-10T22:05:42.199 INFO:teuthology.task.kernel:Running kernel on smithi152: 5.15.0-56-generic 2024-05-10T22:05:42.199 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get clean 2024-05-10T22:05:42.201 INFO:teuthology.orchestra.run.smithi169.stdout:5.15.0-56-generic 2024-05-10T22:05:42.201 INFO:teuthology.task.kernel:Running kernel on smithi169: 5.15.0-56-generic 2024-05-10T22:05:42.202 DEBUG:teuthology.orchestra.run.smithi169:> sudo apt-get clean 2024-05-10T22:05:42.204 INFO:teuthology.orchestra.run.smithi063.stdout:5.15.0-56-generic 2024-05-10T22:05:42.204 INFO:teuthology.task.kernel:Running kernel on smithi063: 5.15.0-56-generic 2024-05-10T22:05:42.205 DEBUG:teuthology.orchestra.run.smithi063:> sudo apt-get clean 2024-05-10T22:05:42.326 DEBUG:teuthology.orchestra.run.smithi063:> sudo apt-get update 2024-05-10T22:05:42.345 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get update 2024-05-10T22:05:42.351 DEBUG:teuthology.orchestra.run.smithi169:> sudo apt-get update 2024-05-10T22:05:42.510 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:05:42.522 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:05:42.522 INFO:teuthology.orchestra.run.smithi152.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-05-10T22:05:42.522 INFO:teuthology.orchestra.run.smithi152.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-05-10T22:05:42.523 INFO:teuthology.orchestra.run.smithi169.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-05-10T22:05:42.594 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:05:42.594 INFO:teuthology.orchestra.run.smithi063.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-05-10T22:05:42.597 INFO:teuthology.orchestra.run.smithi152.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-05-10T22:05:42.603 INFO:teuthology.orchestra.run.smithi169.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-05-10T22:05:42.614 INFO:teuthology.orchestra.run.smithi169.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-05-10T22:05:42.660 INFO:teuthology.orchestra.run.smithi063.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-05-10T22:05:42.736 INFO:teuthology.orchestra.run.smithi169.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [624 kB] 2024-05-10T22:05:42.753 INFO:teuthology.orchestra.run.smithi152.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,427 kB] 2024-05-10T22:05:42.820 INFO:teuthology.orchestra.run.smithi169.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,638 kB] 2024-05-10T22:05:42.821 INFO:teuthology.orchestra.run.smithi152.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [624 kB] 2024-05-10T22:05:42.861 INFO:teuthology.orchestra.run.smithi169.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [307 kB] 2024-05-10T22:05:42.866 INFO:teuthology.orchestra.run.smithi169.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-05-10T22:05:42.866 INFO:teuthology.orchestra.run.smithi169.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-05-10T22:05:42.866 INFO:teuthology.orchestra.run.smithi169.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,864 kB] 2024-05-10T22:05:42.877 INFO:teuthology.orchestra.run.smithi152.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [462 kB] 2024-05-10T22:05:42.886 INFO:teuthology.orchestra.run.smithi152.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [247 kB] 2024-05-10T22:05:42.891 INFO:teuthology.orchestra.run.smithi152.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-05-10T22:05:42.891 INFO:teuthology.orchestra.run.smithi152.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,807 kB] 2024-05-10T22:05:42.895 INFO:teuthology.orchestra.run.smithi169.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [316 kB] 2024-05-10T22:05:42.901 INFO:teuthology.orchestra.run.smithi169.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-05-10T22:05:42.902 INFO:teuthology.orchestra.run.smithi169.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,074 kB] 2024-05-10T22:05:42.917 INFO:teuthology.orchestra.run.smithi152.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,638 kB] 2024-05-10T22:05:42.941 INFO:teuthology.orchestra.run.smithi152.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-05-10T22:05:42.941 INFO:teuthology.orchestra.run.smithi152.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [307 kB] 2024-05-10T22:05:42.942 INFO:teuthology.orchestra.run.smithi169.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [702 kB] 2024-05-10T22:05:42.944 INFO:teuthology.orchestra.run.smithi152.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-05-10T22:05:42.944 INFO:teuthology.orchestra.run.smithi152.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-05-10T22:05:42.947 INFO:teuthology.orchestra.run.smithi169.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-05-10T22:05:42.949 INFO:teuthology.orchestra.run.smithi169.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-05-10T22:05:42.949 INFO:teuthology.orchestra.run.smithi169.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-05-10T22:05:42.950 INFO:teuthology.orchestra.run.smithi169.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-05-10T22:05:42.950 INFO:teuthology.orchestra.run.smithi169.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-05-10T22:05:42.950 INFO:teuthology.orchestra.run.smithi169.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-05-10T22:05:42.963 INFO:teuthology.orchestra.run.smithi152.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [603 kB] 2024-05-10T22:05:42.972 INFO:teuthology.orchestra.run.smithi152.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [164 kB] 2024-05-10T22:05:42.974 INFO:teuthology.orchestra.run.smithi152.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-05-10T22:05:42.977 INFO:teuthology.orchestra.run.smithi169.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-05-10T22:05:42.977 INFO:teuthology.orchestra.run.smithi169.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.3 kB] 2024-05-10T22:05:42.979 INFO:teuthology.orchestra.run.smithi169.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-05-10T22:05:42.979 INFO:teuthology.orchestra.run.smithi169.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-05-10T22:05:42.979 INFO:teuthology.orchestra.run.smithi169.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [27.2 kB] 2024-05-10T22:05:42.979 INFO:teuthology.orchestra.run.smithi169.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [16.0 kB] 2024-05-10T22:05:42.979 INFO:teuthology.orchestra.run.smithi169.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-05-10T22:05:42.997 INFO:teuthology.orchestra.run.smithi152.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [307 kB] 2024-05-10T22:05:42.997 INFO:teuthology.orchestra.run.smithi152.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-05-10T22:05:42.997 INFO:teuthology.orchestra.run.smithi169.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-05-10T22:05:42.998 INFO:teuthology.orchestra.run.smithi152.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-05-10T22:05:42.998 INFO:teuthology.orchestra.run.smithi152.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-05-10T22:05:42.998 INFO:teuthology.orchestra.run.smithi152.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-05-10T22:05:43.000 INFO:teuthology.orchestra.run.smithi152.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-05-10T22:05:43.000 INFO:teuthology.orchestra.run.smithi152.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,864 kB] 2024-05-10T22:05:43.026 INFO:teuthology.orchestra.run.smithi152.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-05-10T22:05:43.027 INFO:teuthology.orchestra.run.smithi063.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-05-10T22:05:43.027 INFO:teuthology.orchestra.run.smithi152.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [316 kB] 2024-05-10T22:05:43.028 INFO:teuthology.orchestra.run.smithi063.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [462 kB] 2024-05-10T22:05:43.030 INFO:teuthology.orchestra.run.smithi152.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-05-10T22:05:43.030 INFO:teuthology.orchestra.run.smithi152.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,074 kB] 2024-05-10T22:05:43.041 INFO:teuthology.orchestra.run.smithi152.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [702 kB] 2024-05-10T22:05:43.048 INFO:teuthology.orchestra.run.smithi169.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [462 kB] 2024-05-10T22:05:43.049 INFO:teuthology.orchestra.run.smithi152.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-05-10T22:05:43.051 INFO:teuthology.orchestra.run.smithi152.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-05-10T22:05:43.053 INFO:teuthology.orchestra.run.smithi152.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-05-10T22:05:43.054 INFO:teuthology.orchestra.run.smithi152.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-05-10T22:05:43.073 INFO:teuthology.orchestra.run.smithi152.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-05-10T22:05:43.073 INFO:teuthology.orchestra.run.smithi152.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-05-10T22:05:43.074 INFO:teuthology.orchestra.run.smithi152.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-05-10T22:05:43.074 INFO:teuthology.orchestra.run.smithi152.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.3 kB] 2024-05-10T22:05:43.075 INFO:teuthology.orchestra.run.smithi152.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-05-10T22:05:43.075 INFO:teuthology.orchestra.run.smithi152.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-05-10T22:05:43.075 INFO:teuthology.orchestra.run.smithi152.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [27.2 kB] 2024-05-10T22:05:43.075 INFO:teuthology.orchestra.run.smithi152.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [16.0 kB] 2024-05-10T22:05:43.094 INFO:teuthology.orchestra.run.smithi152.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-05-10T22:05:43.094 INFO:teuthology.orchestra.run.smithi152.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-05-10T22:05:43.162 INFO:teuthology.orchestra.run.smithi063.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,638 kB] 2024-05-10T22:05:43.324 INFO:teuthology.orchestra.run.smithi063.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,427 kB] 2024-05-10T22:05:43.336 INFO:teuthology.orchestra.run.smithi169.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,427 kB] 2024-05-10T22:05:43.476 INFO:teuthology.orchestra.run.smithi063.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [624 kB] 2024-05-10T22:05:43.493 INFO:teuthology.orchestra.run.smithi063.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [247 kB] 2024-05-10T22:05:43.505 INFO:teuthology.orchestra.run.smithi169.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [247 kB] 2024-05-10T22:05:43.506 INFO:teuthology.orchestra.run.smithi063.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-05-10T22:05:43.506 INFO:teuthology.orchestra.run.smithi063.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,807 kB] 2024-05-10T22:05:43.515 INFO:teuthology.orchestra.run.smithi063.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [307 kB] 2024-05-10T22:05:43.517 INFO:teuthology.orchestra.run.smithi169.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-05-10T22:05:43.518 INFO:teuthology.orchestra.run.smithi169.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,807 kB] 2024-05-10T22:05:43.530 INFO:teuthology.orchestra.run.smithi063.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-05-10T22:05:43.531 INFO:teuthology.orchestra.run.smithi063.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,864 kB] 2024-05-10T22:05:43.588 INFO:teuthology.orchestra.run.smithi063.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-05-10T22:05:43.590 INFO:teuthology.orchestra.run.smithi063.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [307 kB] 2024-05-10T22:05:43.601 INFO:teuthology.orchestra.run.smithi169.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-05-10T22:05:43.602 INFO:teuthology.orchestra.run.smithi169.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [307 kB] 2024-05-10T22:05:43.610 INFO:teuthology.orchestra.run.smithi169.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-05-10T22:05:43.610 INFO:teuthology.orchestra.run.smithi169.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-05-10T22:05:43.611 INFO:teuthology.orchestra.run.smithi063.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-05-10T22:05:43.611 INFO:teuthology.orchestra.run.smithi063.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-05-10T22:05:43.612 INFO:teuthology.orchestra.run.smithi063.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-05-10T22:05:43.613 INFO:teuthology.orchestra.run.smithi063.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [316 kB] 2024-05-10T22:05:43.619 INFO:teuthology.orchestra.run.smithi063.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-05-10T22:05:43.626 INFO:teuthology.orchestra.run.smithi063.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [603 kB] 2024-05-10T22:05:43.631 INFO:teuthology.orchestra.run.smithi169.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [603 kB] 2024-05-10T22:05:43.784 INFO:teuthology.orchestra.run.smithi063.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [702 kB] 2024-05-10T22:05:43.801 INFO:teuthology.orchestra.run.smithi063.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [164 kB] 2024-05-10T22:05:43.808 INFO:teuthology.orchestra.run.smithi169.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [164 kB] 2024-05-10T22:05:44.199 INFO:teuthology.orchestra.run.smithi063.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-05-10T22:05:44.205 INFO:teuthology.orchestra.run.smithi063.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-05-10T22:05:44.205 INFO:teuthology.orchestra.run.smithi063.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-05-10T22:05:44.205 INFO:teuthology.orchestra.run.smithi169.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-05-10T22:05:44.211 INFO:teuthology.orchestra.run.smithi169.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-05-10T22:05:44.211 INFO:teuthology.orchestra.run.smithi169.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-05-10T22:05:44.219 INFO:teuthology.orchestra.run.smithi063.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-05-10T22:05:44.222 INFO:teuthology.orchestra.run.smithi063.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-05-10T22:05:44.226 INFO:teuthology.orchestra.run.smithi169.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-05-10T22:05:44.228 INFO:teuthology.orchestra.run.smithi169.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-05-10T22:05:44.369 INFO:teuthology.orchestra.run.smithi063.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,074 kB] 2024-05-10T22:05:44.479 INFO:teuthology.orchestra.run.smithi063.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-05-10T22:05:44.500 INFO:teuthology.orchestra.run.smithi063.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-05-10T22:05:44.501 INFO:teuthology.orchestra.run.smithi063.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-05-10T22:05:44.504 INFO:teuthology.orchestra.run.smithi063.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-05-10T22:05:44.505 INFO:teuthology.orchestra.run.smithi063.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-05-10T22:05:44.506 INFO:teuthology.orchestra.run.smithi063.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-05-10T22:05:44.506 INFO:teuthology.orchestra.run.smithi063.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.3 kB] 2024-05-10T22:05:44.510 INFO:teuthology.orchestra.run.smithi063.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-05-10T22:05:44.515 INFO:teuthology.orchestra.run.smithi063.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-05-10T22:05:44.679 INFO:teuthology.orchestra.run.smithi063.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-05-10T22:05:44.762 INFO:teuthology.orchestra.run.smithi063.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [27.2 kB] 2024-05-10T22:05:44.875 INFO:teuthology.orchestra.run.smithi063.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [16.0 kB] 2024-05-10T22:05:44.924 INFO:teuthology.orchestra.run.smithi063.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-05-10T22:05:44.954 INFO:teuthology.orchestra.run.smithi063.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-05-10T22:05:48.581 INFO:teuthology.orchestra.run.smithi169.stdout:Fetched 13.4 MB in 2s (7,258 kB/s) 2024-05-10T22:05:48.599 INFO:teuthology.orchestra.run.smithi152.stdout:Fetched 13.4 MB in 2s (6,996 kB/s) 2024-05-10T22:05:49.452 INFO:teuthology.orchestra.run.smithi063.stdout:Fetched 13.4 MB in 3s (5,244 kB/s) 2024-05-10T22:05:49.943 INFO:teuthology.orchestra.run.smithi169.stdout:Reading package lists... 2024-05-10T22:05:49.960 DEBUG:teuthology.orchestra.run.smithi169:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-10T22:05:49.997 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-05-10T22:05:50.015 DEBUG:teuthology.orchestra.run.smithi152:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-10T22:05:50.019 INFO:teuthology.orchestra.run.smithi169.stdout:Reading package lists... 2024-05-10T22:05:50.078 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-05-10T22:05:50.219 INFO:teuthology.orchestra.run.smithi169.stdout:Building dependency tree... 2024-05-10T22:05:50.219 INFO:teuthology.orchestra.run.smithi169.stdout:Reading state information... 2024-05-10T22:05:50.266 INFO:teuthology.orchestra.run.smithi152.stdout:Building dependency tree... 2024-05-10T22:05:50.267 INFO:teuthology.orchestra.run.smithi152.stdout:Reading state information... 2024-05-10T22:05:50.394 INFO:teuthology.orchestra.run.smithi169.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:05:50.394 INFO:teuthology.orchestra.run.smithi169.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:05:50.394 INFO:teuthology.orchestra.run.smithi169.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:05:50.394 INFO:teuthology.orchestra.run.smithi169.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:05:50.394 INFO:teuthology.orchestra.run.smithi169.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-05-10T22:05:50.394 INFO:teuthology.orchestra.run.smithi169.stdout: python2.7-minimal 2024-05-10T22:05:50.394 INFO:teuthology.orchestra.run.smithi169.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:05:50.395 INFO:teuthology.orchestra.run.smithi169.stdout:The following additional packages will be installed: 2024-05-10T22:05:50.395 INFO:teuthology.orchestra.run.smithi169.stdout: linux-generic linux-headers-5.15.0-106 linux-headers-5.15.0-106-generic 2024-05-10T22:05:50.395 INFO:teuthology.orchestra.run.smithi169.stdout: linux-headers-generic linux-image-5.15.0-106-generic 2024-05-10T22:05:50.396 INFO:teuthology.orchestra.run.smithi169.stdout: linux-modules-5.15.0-106-generic linux-modules-extra-5.15.0-106-generic 2024-05-10T22:05:50.397 INFO:teuthology.orchestra.run.smithi169.stdout:Suggested packages: 2024-05-10T22:05:50.397 INFO:teuthology.orchestra.run.smithi169.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-05-10T22:05:50.397 INFO:teuthology.orchestra.run.smithi169.stdout:Recommended packages: 2024-05-10T22:05:50.397 INFO:teuthology.orchestra.run.smithi169.stdout: thermald 2024-05-10T22:05:50.428 INFO:teuthology.orchestra.run.smithi152.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:05:50.428 INFO:teuthology.orchestra.run.smithi152.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:05:50.428 INFO:teuthology.orchestra.run.smithi152.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:05:50.429 INFO:teuthology.orchestra.run.smithi152.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:05:50.429 INFO:teuthology.orchestra.run.smithi152.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-05-10T22:05:50.429 INFO:teuthology.orchestra.run.smithi152.stdout: python2.7-minimal 2024-05-10T22:05:50.429 INFO:teuthology.orchestra.run.smithi152.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:05:50.430 INFO:teuthology.orchestra.run.smithi152.stdout:The following additional packages will be installed: 2024-05-10T22:05:50.430 INFO:teuthology.orchestra.run.smithi152.stdout: linux-generic linux-headers-5.15.0-106 linux-headers-5.15.0-106-generic 2024-05-10T22:05:50.431 INFO:teuthology.orchestra.run.smithi152.stdout: linux-headers-generic linux-image-5.15.0-106-generic 2024-05-10T22:05:50.431 INFO:teuthology.orchestra.run.smithi152.stdout: linux-modules-5.15.0-106-generic linux-modules-extra-5.15.0-106-generic 2024-05-10T22:05:50.432 INFO:teuthology.orchestra.run.smithi152.stdout:Suggested packages: 2024-05-10T22:05:50.432 INFO:teuthology.orchestra.run.smithi152.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-05-10T22:05:50.432 INFO:teuthology.orchestra.run.smithi152.stdout:Recommended packages: 2024-05-10T22:05:50.432 INFO:teuthology.orchestra.run.smithi152.stdout: thermald 2024-05-10T22:05:50.450 INFO:teuthology.orchestra.run.smithi169.stdout:The following NEW packages will be installed: 2024-05-10T22:05:50.451 INFO:teuthology.orchestra.run.smithi169.stdout: linux-headers-5.15.0-106 linux-headers-5.15.0-106-generic 2024-05-10T22:05:50.451 INFO:teuthology.orchestra.run.smithi169.stdout: linux-image-5.15.0-106-generic linux-modules-5.15.0-106-generic 2024-05-10T22:05:50.451 INFO:teuthology.orchestra.run.smithi169.stdout: linux-modules-extra-5.15.0-106-generic 2024-05-10T22:05:50.452 INFO:teuthology.orchestra.run.smithi169.stdout:The following packages will be upgraded: 2024-05-10T22:05:50.453 INFO:teuthology.orchestra.run.smithi169.stdout: linux-generic linux-headers-generic linux-image-generic 2024-05-10T22:05:50.486 INFO:teuthology.orchestra.run.smithi152.stdout:The following NEW packages will be installed: 2024-05-10T22:05:50.486 INFO:teuthology.orchestra.run.smithi152.stdout: linux-headers-5.15.0-106 linux-headers-5.15.0-106-generic 2024-05-10T22:05:50.487 INFO:teuthology.orchestra.run.smithi152.stdout: linux-image-5.15.0-106-generic linux-modules-5.15.0-106-generic 2024-05-10T22:05:50.487 INFO:teuthology.orchestra.run.smithi152.stdout: linux-modules-extra-5.15.0-106-generic 2024-05-10T22:05:50.488 INFO:teuthology.orchestra.run.smithi152.stdout:The following packages will be upgraded: 2024-05-10T22:05:50.488 INFO:teuthology.orchestra.run.smithi152.stdout: linux-generic linux-headers-generic linux-image-generic 2024-05-10T22:05:50.509 INFO:teuthology.orchestra.run.smithi169.stdout:3 upgraded, 5 newly installed, 0 to remove and 320 not upgraded. 2024-05-10T22:05:50.510 INFO:teuthology.orchestra.run.smithi169.stdout:Need to get 113 MB of archives. 2024-05-10T22:05:50.510 INFO:teuthology.orchestra.run.smithi169.stdout:After this operation, 583 MB of additional disk space will be used. 2024-05-10T22:05:50.510 INFO:teuthology.orchestra.run.smithi169.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-106-generic amd64 5.15.0-106.116 [22.7 MB] 2024-05-10T22:05:50.547 INFO:teuthology.orchestra.run.smithi152.stdout:3 upgraded, 5 newly installed, 0 to remove and 320 not upgraded. 2024-05-10T22:05:50.547 INFO:teuthology.orchestra.run.smithi152.stdout:Need to get 113 MB of archives. 2024-05-10T22:05:50.547 INFO:teuthology.orchestra.run.smithi152.stdout:After this operation, 583 MB of additional disk space will be used. 2024-05-10T22:05:50.547 INFO:teuthology.orchestra.run.smithi152.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-106-generic amd64 5.15.0-106.116 [22.7 MB] 2024-05-10T22:05:50.886 INFO:teuthology.orchestra.run.smithi063.stdout:Reading package lists... 2024-05-10T22:05:50.903 DEBUG:teuthology.orchestra.run.smithi063:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-10T22:05:50.968 INFO:teuthology.orchestra.run.smithi063.stdout:Reading package lists... 2024-05-10T22:05:51.173 INFO:teuthology.orchestra.run.smithi063.stdout:Building dependency tree... 2024-05-10T22:05:51.174 INFO:teuthology.orchestra.run.smithi063.stdout:Reading state information... 2024-05-10T22:05:51.209 INFO:teuthology.orchestra.run.smithi169.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-106-generic amd64 5.15.0-106.116 [11.5 MB] 2024-05-10T22:05:51.344 INFO:teuthology.orchestra.run.smithi152.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-106-generic amd64 5.15.0-106.116 [11.5 MB] 2024-05-10T22:05:51.359 INFO:teuthology.orchestra.run.smithi063.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:05:51.359 INFO:teuthology.orchestra.run.smithi063.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:05:51.359 INFO:teuthology.orchestra.run.smithi063.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:05:51.359 INFO:teuthology.orchestra.run.smithi063.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:05:51.359 INFO:teuthology.orchestra.run.smithi063.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-05-10T22:05:51.360 INFO:teuthology.orchestra.run.smithi063.stdout: python2.7-minimal 2024-05-10T22:05:51.360 INFO:teuthology.orchestra.run.smithi063.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:05:51.361 INFO:teuthology.orchestra.run.smithi063.stdout:The following additional packages will be installed: 2024-05-10T22:05:51.361 INFO:teuthology.orchestra.run.smithi063.stdout: linux-generic linux-headers-5.15.0-106 linux-headers-5.15.0-106-generic 2024-05-10T22:05:51.361 INFO:teuthology.orchestra.run.smithi063.stdout: linux-headers-generic linux-image-5.15.0-106-generic 2024-05-10T22:05:51.361 INFO:teuthology.orchestra.run.smithi063.stdout: linux-modules-5.15.0-106-generic linux-modules-extra-5.15.0-106-generic 2024-05-10T22:05:51.363 INFO:teuthology.orchestra.run.smithi063.stdout:Suggested packages: 2024-05-10T22:05:51.363 INFO:teuthology.orchestra.run.smithi063.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-05-10T22:05:51.363 INFO:teuthology.orchestra.run.smithi063.stdout:Recommended packages: 2024-05-10T22:05:51.363 INFO:teuthology.orchestra.run.smithi063.stdout: thermald 2024-05-10T22:05:51.408 INFO:teuthology.orchestra.run.smithi063.stdout:The following NEW packages will be installed: 2024-05-10T22:05:51.409 INFO:teuthology.orchestra.run.smithi063.stdout: linux-headers-5.15.0-106 linux-headers-5.15.0-106-generic 2024-05-10T22:05:51.409 INFO:teuthology.orchestra.run.smithi063.stdout: linux-image-5.15.0-106-generic linux-modules-5.15.0-106-generic 2024-05-10T22:05:51.409 INFO:teuthology.orchestra.run.smithi063.stdout: linux-modules-extra-5.15.0-106-generic 2024-05-10T22:05:51.410 INFO:teuthology.orchestra.run.smithi063.stdout:The following packages will be upgraded: 2024-05-10T22:05:51.414 INFO:teuthology.orchestra.run.smithi063.stdout: linux-generic linux-headers-generic linux-image-generic 2024-05-10T22:05:51.449 INFO:teuthology.orchestra.run.smithi169.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-106-generic amd64 5.15.0-106.116 [63.9 MB] 2024-05-10T22:05:51.582 INFO:teuthology.orchestra.run.smithi152.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-106-generic amd64 5.15.0-106.116 [63.9 MB] 2024-05-10T22:05:51.593 INFO:teuthology.orchestra.run.smithi063.stdout:3 upgraded, 5 newly installed, 0 to remove and 320 not upgraded. 2024-05-10T22:05:51.593 INFO:teuthology.orchestra.run.smithi063.stdout:Need to get 113 MB of archives. 2024-05-10T22:05:51.593 INFO:teuthology.orchestra.run.smithi063.stdout:After this operation, 583 MB of additional disk space will be used. 2024-05-10T22:05:51.593 INFO:teuthology.orchestra.run.smithi063.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-106-generic amd64 5.15.0-106.116 [22.7 MB] 2024-05-10T22:05:53.019 INFO:teuthology.orchestra.run.smithi063.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-106-generic amd64 5.15.0-106.116 [11.5 MB] 2024-05-10T22:05:53.227 INFO:teuthology.orchestra.run.smithi169.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.106.106 [1,692 B] 2024-05-10T22:05:53.227 INFO:teuthology.orchestra.run.smithi169.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.106.106 [2,502 B] 2024-05-10T22:05:53.227 INFO:teuthology.orchestra.run.smithi169.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-106 all 5.15.0-106.116 [12.3 MB] 2024-05-10T22:05:53.262 INFO:teuthology.orchestra.run.smithi152.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.106.106 [1,692 B] 2024-05-10T22:05:53.262 INFO:teuthology.orchestra.run.smithi152.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.106.106 [2,502 B] 2024-05-10T22:05:53.262 INFO:teuthology.orchestra.run.smithi152.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-106 all 5.15.0-106.116 [12.3 MB] 2024-05-10T22:05:53.385 INFO:teuthology.orchestra.run.smithi063.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-106-generic amd64 5.15.0-106.116 [63.9 MB] 2024-05-10T22:05:53.440 INFO:teuthology.orchestra.run.smithi169.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-106-generic amd64 5.15.0-106.116 [2,876 kB] 2024-05-10T22:05:53.476 INFO:teuthology.orchestra.run.smithi152.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-106-generic amd64 5.15.0-106.116 [2,876 kB] 2024-05-10T22:05:53.498 INFO:teuthology.orchestra.run.smithi169.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.106.106 [2,366 B] 2024-05-10T22:05:53.570 INFO:teuthology.orchestra.run.smithi152.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.106.106 [2,366 B] 2024-05-10T22:05:53.910 INFO:teuthology.orchestra.run.smithi169.stdout:Fetched 113 MB in 3s (37.3 MB/s) 2024-05-10T22:05:53.961 INFO:teuthology.orchestra.run.smithi152.stdout:Fetched 113 MB in 3s (36.9 MB/s) 2024-05-10T22:05:54.060 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package linux-modules-5.15.0-106-generic. 2024-05-10T22:05:54.136 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-modules-5.15.0-106-generic. 2024-05-10T22:05:55.630 INFO:teuthology.orchestra.run.smithi063.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.106.106 [1,692 B] 2024-05-10T22:05:55.630 INFO:teuthology.orchestra.run.smithi063.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.106.106 [2,502 B] 2024-05-10T22:05:55.630 INFO:teuthology.orchestra.run.smithi063.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-106 all 5.15.0-106.116 [12.3 MB] 2024-05-10T22:05:55.999 INFO:teuthology.orchestra.run.smithi063.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-106-generic amd64 5.15.0-106.116 [2,876 kB] 2024-05-10T22:05:56.015 INFO:teuthology.orchestra.run.smithi169.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-05-10T22:05:56.019 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../0-linux-modules-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:05:56.081 INFO:teuthology.orchestra.run.smithi063.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.106.106 [2,366 B] 2024-05-10T22:05:56.084 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking linux-modules-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:05:56.204 INFO:teuthology.orchestra.run.smithi152.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-05-10T22:05:56.208 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../0-linux-modules-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:05:56.349 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-modules-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:05:56.481 INFO:teuthology.orchestra.run.smithi063.stdout:Fetched 113 MB in 5s (24.3 MB/s) 2024-05-10T22:05:56.656 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package linux-modules-5.15.0-106-generic. 2024-05-10T22:05:58.102 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package linux-image-5.15.0-106-generic. 2024-05-10T22:05:58.123 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../1-linux-image-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:05:58.303 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:05:58.582 INFO:teuthology.orchestra.run.smithi063.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-05-10T22:05:58.586 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../0-linux-modules-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:05:58.646 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking linux-modules-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:05:58.700 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-image-5.15.0-106-generic. 2024-05-10T22:05:58.721 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../1-linux-image-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:05:58.722 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-106-generic. 2024-05-10T22:05:58.742 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:05:58.773 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking linux-modules-extra-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:05:58.816 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:05:59.686 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-106-generic. 2024-05-10T22:05:59.706 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:05:59.760 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-modules-extra-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:00.764 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package linux-image-5.15.0-106-generic. 2024-05-10T22:06:00.785 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../1-linux-image-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:06:00.872 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:01.301 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-106-generic. 2024-05-10T22:06:01.321 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:06:01.359 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking linux-modules-extra-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:04.937 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../3-linux-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:05.039 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking linux-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:05.388 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:05.509 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking linux-image-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:05.779 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package linux-headers-5.15.0-106. 2024-05-10T22:06:05.790 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../5-linux-headers-5.15.0-106_5.15.0-106.116_all.deb ... 2024-05-10T22:06:05.820 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking linux-headers-5.15.0-106 (5.15.0-106.116) ... 2024-05-10T22:06:06.750 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../3-linux-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:06.891 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:07.233 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:07.361 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-image-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:07.499 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../3-linux-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:07.626 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking linux-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:07.664 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-headers-5.15.0-106. 2024-05-10T22:06:07.687 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../5-linux-headers-5.15.0-106_5.15.0-106.116_all.deb ... 2024-05-10T22:06:07.722 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-headers-5.15.0-106 (5.15.0-106.116) ... 2024-05-10T22:06:07.918 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:08.021 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking linux-image-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:08.374 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package linux-headers-5.15.0-106. 2024-05-10T22:06:08.397 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../5-linux-headers-5.15.0-106_5.15.0-106.116_all.deb ... 2024-05-10T22:06:08.441 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking linux-headers-5.15.0-106 (5.15.0-106.116) ... 2024-05-10T22:06:11.497 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package linux-headers-5.15.0-106-generic. 2024-05-10T22:06:11.516 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../6-linux-headers-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:06:11.555 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking linux-headers-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:13.622 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package linux-headers-5.15.0-106-generic. 2024-05-10T22:06:13.659 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../6-linux-headers-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:06:13.688 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-headers-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:14.061 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:14.176 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking linux-headers-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:14.421 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package linux-headers-5.15.0-106-generic. 2024-05-10T22:06:14.458 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../6-linux-headers-5.15.0-106-generic_5.15.0-106.116_amd64.deb ... 2024-05-10T22:06:14.484 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up linux-headers-5.15.0-106 (5.15.0-106.116) ... 2024-05-10T22:06:14.488 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking linux-headers-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:14.606 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up linux-headers-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:14.732 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up linux-headers-generic (5.15.0.106.106) ... 2024-05-10T22:06:14.869 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:16.203 INFO:teuthology.orchestra.run.smithi169.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:16.203 INFO:teuthology.orchestra.run.smithi169.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:16.204 INFO:teuthology.orchestra.run.smithi169.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:16.204 INFO:teuthology.orchestra.run.smithi169.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:16.371 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up linux-modules-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:16.974 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:17.109 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.106.106_amd64.deb ... 2024-05-10T22:06:17.110 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking linux-headers-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:17.232 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking linux-headers-generic (5.15.0.106.106) over (5.15.0.56.54) ... 2024-05-10T22:06:17.473 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-headers-5.15.0-106 (5.15.0-106.116) ... 2024-05-10T22:06:17.557 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up linux-headers-5.15.0-106 (5.15.0-106.116) ... 2024-05-10T22:06:17.599 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-headers-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:17.662 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up linux-headers-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:17.725 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-headers-generic (5.15.0.106.106) ... 2024-05-10T22:06:17.762 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up linux-headers-generic (5.15.0.106.106) ... 2024-05-10T22:06:17.814 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up linux-modules-extra-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:17.891 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:18.229 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:19.291 INFO:teuthology.orchestra.run.smithi063.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:19.291 INFO:teuthology.orchestra.run.smithi063.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:19.291 INFO:teuthology.orchestra.run.smithi063.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:19.291 INFO:teuthology.orchestra.run.smithi063.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:19.451 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up linux-modules-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:19.950 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up linux-image-generic (5.15.0.106.106) ... 2024-05-10T22:06:20.067 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up linux-generic (5.15.0.106.106) ... 2024-05-10T22:06:20.097 INFO:teuthology.orchestra.run.smithi152.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:20.097 INFO:teuthology.orchestra.run.smithi152.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:20.097 INFO:teuthology.orchestra.run.smithi152.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:20.097 INFO:teuthology.orchestra.run.smithi152.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:20.211 INFO:teuthology.orchestra.run.smithi169.stdout:Processing triggers for linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:20.267 INFO:teuthology.orchestra.run.smithi169.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-05-10T22:06:20.267 INFO:teuthology.orchestra.run.smithi169.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:20.290 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-modules-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:20.894 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up linux-modules-extra-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:21.683 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-modules-extra-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:22.312 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up linux-image-generic (5.15.0.106.106) ... 2024-05-10T22:06:22.438 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up linux-generic (5.15.0.106.106) ... 2024-05-10T22:06:22.556 INFO:teuthology.orchestra.run.smithi063.stdout:Processing triggers for linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:22.619 INFO:teuthology.orchestra.run.smithi063.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-05-10T22:06:22.619 INFO:teuthology.orchestra.run.smithi063.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:23.093 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-image-generic (5.15.0.106.106) ... 2024-05-10T22:06:23.219 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up linux-generic (5.15.0.106.106) ... 2024-05-10T22:06:23.345 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for linux-image-5.15.0-106-generic (5.15.0-106.116) ... 2024-05-10T22:06:23.391 INFO:teuthology.orchestra.run.smithi152.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-05-10T22:06:23.391 INFO:teuthology.orchestra.run.smithi152.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:34.846 INFO:teuthology.orchestra.run.smithi169.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-05-10T22:06:34.846 INFO:teuthology.orchestra.run.smithi169.stdout:Sourcing file `/etc/default/grub' 2024-05-10T22:06:34.865 INFO:teuthology.orchestra.run.smithi169.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-10T22:06:34.880 INFO:teuthology.orchestra.run.smithi169.stdout:Generating grub configuration file ... 2024-05-10T22:06:35.150 INFO:teuthology.orchestra.run.smithi169.stdout:Found linux image: /boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:35.171 INFO:teuthology.orchestra.run.smithi169.stdout:Found initrd image: /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:35.477 INFO:teuthology.orchestra.run.smithi169.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:35.483 INFO:teuthology.orchestra.run.smithi169.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:35.554 INFO:teuthology.orchestra.run.smithi169.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-10T22:06:35.559 INFO:teuthology.orchestra.run.smithi169.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-10T22:06:35.733 INFO:teuthology.orchestra.run.smithi169.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-10T22:06:35.733 INFO:teuthology.orchestra.run.smithi169.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-05-10T22:06:35.734 INFO:teuthology.orchestra.run.smithi169.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-10T22:06:35.780 INFO:teuthology.orchestra.run.smithi169.stdout:done 2024-05-10T22:06:36.269 DEBUG:teuthology.orchestra.run.smithi169:> dpkg -s linux-image-generic 2024-05-10T22:06:36.293 INFO:teuthology.orchestra.run.smithi169.stdout:Package: linux-image-generic 2024-05-10T22:06:36.293 INFO:teuthology.orchestra.run.smithi169.stdout:Status: install ok installed 2024-05-10T22:06:36.293 INFO:teuthology.orchestra.run.smithi169.stdout:Priority: optional 2024-05-10T22:06:36.293 INFO:teuthology.orchestra.run.smithi169.stdout:Section: kernel 2024-05-10T22:06:36.293 INFO:teuthology.orchestra.run.smithi169.stdout:Installed-Size: 21 2024-05-10T22:06:36.293 INFO:teuthology.orchestra.run.smithi169.stdout:Maintainer: Ubuntu Kernel Team 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.stdout:Architecture: amd64 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.stdout:Source: linux-meta 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.stdout:Version: 5.15.0.106.106 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.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-106), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.stdout:Depends: linux-image-5.15.0-106-generic, linux-modules-extra-5.15.0-106-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.stdout:Recommends: thermald 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.stdout:Description: Generic Linux kernel image 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.stdout: This package will always depend on the latest generic kernel image 2024-05-10T22:06:36.294 INFO:teuthology.orchestra.run.smithi169.stdout: available. 2024-05-10T22:06:36.294 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-106-generic 2024-05-10T22:06:36.295 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-10T22:06:36.295 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-10T22:06:36.295 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-05-10T22:06:36.295 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi169.front.sepia.ceph.com, path=None, version=distro) 2024-05-10T22:06:36.295 DEBUG:teuthology.orchestra.run.smithi169:> sudo apt-get clean 2024-05-10T22:06:36.450 DEBUG:teuthology.orchestra.run.smithi169:> sudo apt-get update 2024-05-10T22:06:36.578 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:06:36.578 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-05-10T22:06:36.590 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-05-10T22:06:36.610 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-05-10T22:06:36.826 INFO:teuthology.orchestra.run.smithi063.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-05-10T22:06:36.826 INFO:teuthology.orchestra.run.smithi063.stdout:Sourcing file `/etc/default/grub' 2024-05-10T22:06:36.843 INFO:teuthology.orchestra.run.smithi063.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-10T22:06:36.868 INFO:teuthology.orchestra.run.smithi063.stdout:Generating grub configuration file ... 2024-05-10T22:06:37.182 INFO:teuthology.orchestra.run.smithi063.stdout:Found linux image: /boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:37.194 INFO:teuthology.orchestra.run.smithi063.stdout:Found initrd image: /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:37.511 INFO:teuthology.orchestra.run.smithi152.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-05-10T22:06:37.511 INFO:teuthology.orchestra.run.smithi152.stdout:Sourcing file `/etc/default/grub' 2024-05-10T22:06:37.530 INFO:teuthology.orchestra.run.smithi063.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:37.536 INFO:teuthology.orchestra.run.smithi063.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:37.545 INFO:teuthology.orchestra.run.smithi152.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-10T22:06:37.573 INFO:teuthology.orchestra.run.smithi152.stdout:Generating grub configuration file ... 2024-05-10T22:06:37.607 INFO:teuthology.orchestra.run.smithi063.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-10T22:06:37.613 INFO:teuthology.orchestra.run.smithi063.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-10T22:06:37.755 INFO:teuthology.orchestra.run.smithi063.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-10T22:06:37.755 INFO:teuthology.orchestra.run.smithi063.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-05-10T22:06:37.755 INFO:teuthology.orchestra.run.smithi063.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-10T22:06:37.794 INFO:teuthology.orchestra.run.smithi063.stdout:done 2024-05-10T22:06:37.914 INFO:teuthology.orchestra.run.smithi169.stdout:Reading package lists... 2024-05-10T22:06:37.916 INFO:teuthology.orchestra.run.smithi152.stdout:Found linux image: /boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:37.930 INFO:teuthology.orchestra.run.smithi152.stdout:Found initrd image: /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:37.932 DEBUG:teuthology.orchestra.run.smithi169:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-10T22:06:37.986 INFO:teuthology.orchestra.run.smithi169.stdout:Reading package lists... 2024-05-10T22:06:38.164 INFO:teuthology.orchestra.run.smithi169.stdout:Building dependency tree... 2024-05-10T22:06:38.164 INFO:teuthology.orchestra.run.smithi169.stdout:Reading state information... 2024-05-10T22:06:38.301 DEBUG:teuthology.orchestra.run.smithi063:> dpkg -s linux-image-generic 2024-05-10T22:06:38.308 INFO:teuthology.orchestra.run.smithi152.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:38.314 INFO:teuthology.orchestra.run.smithi152.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:38.324 INFO:teuthology.orchestra.run.smithi169.stdout:linux-image-generic is already the newest version (5.15.0.106.106). 2024-05-10T22:06:38.324 INFO:teuthology.orchestra.run.smithi169.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:06:38.324 INFO:teuthology.orchestra.run.smithi169.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:06:38.324 INFO:teuthology.orchestra.run.smithi169.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:06:38.324 INFO:teuthology.orchestra.run.smithi169.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:06:38.324 INFO:teuthology.orchestra.run.smithi169.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-05-10T22:06:38.324 INFO:teuthology.orchestra.run.smithi169.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-05-10T22:06:38.325 INFO:teuthology.orchestra.run.smithi169.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Package: linux-image-generic 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Status: install ok installed 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Priority: optional 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Section: kernel 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Installed-Size: 21 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Maintainer: Ubuntu Kernel Team 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Architecture: amd64 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Source: linux-meta 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Version: 5.15.0.106.106 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.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-106), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Depends: linux-image-5.15.0-106-generic, linux-modules-extra-5.15.0-106-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Recommends: thermald 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout:Description: Generic Linux kernel image 2024-05-10T22:06:38.327 INFO:teuthology.orchestra.run.smithi063.stdout: This package will always depend on the latest generic kernel image 2024-05-10T22:06:38.328 INFO:teuthology.orchestra.run.smithi063.stdout: available. 2024-05-10T22:06:38.328 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-106-generic 2024-05-10T22:06:38.328 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-10T22:06:38.328 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-10T22:06:38.328 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-05-10T22:06:38.328 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi063.front.sepia.ceph.com, path=None, version=distro) 2024-05-10T22:06:38.328 DEBUG:teuthology.orchestra.run.smithi063:> sudo apt-get clean 2024-05-10T22:06:38.364 INFO:teuthology.orchestra.run.smithi169.stdout:0 upgraded, 0 newly installed, 0 to remove and 320 not upgraded. 2024-05-10T22:06:38.366 DEBUG:teuthology.orchestra.run.smithi169:> dpkg -s linux-image-generic 2024-05-10T22:06:38.382 INFO:teuthology.orchestra.run.smithi152.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-10T22:06:38.387 INFO:teuthology.orchestra.run.smithi152.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-10T22:06:38.427 INFO:teuthology.orchestra.run.smithi169.stdout:Package: linux-image-generic 2024-05-10T22:06:38.427 INFO:teuthology.orchestra.run.smithi169.stdout:Status: install ok installed 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Priority: optional 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Section: kernel 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Installed-Size: 21 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Maintainer: Ubuntu Kernel Team 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Architecture: amd64 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Source: linux-meta 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Version: 5.15.0.106.106 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.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-106), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Depends: linux-image-5.15.0-106-generic, linux-modules-extra-5.15.0-106-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Recommends: thermald 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout:Description: Generic Linux kernel image 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout: This package will always depend on the latest generic kernel image 2024-05-10T22:06:38.428 INFO:teuthology.orchestra.run.smithi169.stdout: available. 2024-05-10T22:06:38.429 DEBUG:teuthology.orchestra.run.smithi169:> mktemp 2024-05-10T22:06:38.468 DEBUG:teuthology.orchestra.run.smithi063:> sudo apt-get update 2024-05-10T22:06:38.472 INFO:teuthology.orchestra.run.smithi169.stdout:/tmp/tmp.ABAx7qBFvU 2024-05-10T22:06:38.473 DEBUG:teuthology.orchestra.run.smithi169:> sudo cp /boot/grub/grub.cfg /tmp/tmp.ABAx7qBFvU 2024-05-10T22:06:38.526 INFO:teuthology.orchestra.run.smithi152.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-10T22:06:38.526 INFO:teuthology.orchestra.run.smithi152.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-05-10T22:06:38.526 INFO:teuthology.orchestra.run.smithi152.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-10T22:06:38.529 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod 0666 /tmp/tmp.ABAx7qBFvU 2024-05-10T22:06:38.563 INFO:teuthology.orchestra.run.smithi152.stdout:done 2024-05-10T22:06:38.589 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-05-10T22:06:38.647 DEBUG:teuthology.orchestra.remote:smithi169:/tmp/tmp.ABAx7qBFvU is 10KB 2024-05-10T22:06:38.660 DEBUG:teuthology.orchestra.run.smithi169:> rm -fr /tmp/tmp.ABAx7qBFvU 2024-05-10T22:06:38.665 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-05-10T22:06:38.706 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:06:38.721 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-05-10T22:06:38.721 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-05-10T22:06:38.721 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-05-10T22:06:38.787 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-05-10T22:06:38.792 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-106-generic 2024-05-10T22:06:38.792 DEBUG:teuthology.orchestra.run.smithi169:> sudo update-grub 2024-05-10T22:06:38.869 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-05-10T22:06:39.063 DEBUG:teuthology.orchestra.run.smithi152:> dpkg -s linux-image-generic 2024-05-10T22:06:39.132 INFO:teuthology.orchestra.run.smithi152.stdout:Package: linux-image-generic 2024-05-10T22:06:39.132 INFO:teuthology.orchestra.run.smithi152.stdout:Status: install ok installed 2024-05-10T22:06:39.132 INFO:teuthology.orchestra.run.smithi152.stdout:Priority: optional 2024-05-10T22:06:39.132 INFO:teuthology.orchestra.run.smithi152.stdout:Section: kernel 2024-05-10T22:06:39.132 INFO:teuthology.orchestra.run.smithi152.stdout:Installed-Size: 21 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout:Maintainer: Ubuntu Kernel Team 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout:Architecture: amd64 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout:Source: linux-meta 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout:Version: 5.15.0.106.106 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.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-106), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout:Depends: linux-image-5.15.0-106-generic, linux-modules-extra-5.15.0-106-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout:Recommends: thermald 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout:Description: Generic Linux kernel image 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout: This package will always depend on the latest generic kernel image 2024-05-10T22:06:39.133 INFO:teuthology.orchestra.run.smithi152.stdout: available. 2024-05-10T22:06:39.133 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-106-generic 2024-05-10T22:06:39.133 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-10T22:06:39.133 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-10T22:06:39.134 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-05-10T22:06:39.134 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi152.front.sepia.ceph.com, path=None, version=distro) 2024-05-10T22:06:39.134 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get clean 2024-05-10T22:06:39.307 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get update 2024-05-10T22:06:39.427 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:06:39.438 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-05-10T22:06:39.458 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-05-10T22:06:39.539 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-05-10T22:06:39.930 INFO:teuthology.orchestra.run.smithi169.stderr:Sourcing file `/etc/default/grub' 2024-05-10T22:06:39.931 INFO:teuthology.orchestra.run.smithi169.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-10T22:06:39.932 INFO:teuthology.orchestra.run.smithi169.stderr:Generating grub configuration file ... 2024-05-10T22:06:40.011 INFO:teuthology.orchestra.run.smithi063.stdout:Reading package lists... 2024-05-10T22:06:40.030 DEBUG:teuthology.orchestra.run.smithi063:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-10T22:06:40.093 INFO:teuthology.orchestra.run.smithi063.stdout:Reading package lists... 2024-05-10T22:06:40.114 INFO:teuthology.orchestra.run.smithi169.stderr:Found linux image: /boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:40.120 INFO:teuthology.orchestra.run.smithi169.stderr:Found initrd image: /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:40.297 INFO:teuthology.orchestra.run.smithi063.stdout:Building dependency tree... 2024-05-10T22:06:40.297 INFO:teuthology.orchestra.run.smithi063.stdout:Reading state information... 2024-05-10T22:06:40.351 INFO:teuthology.orchestra.run.smithi169.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:40.356 INFO:teuthology.orchestra.run.smithi169.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:40.398 INFO:teuthology.orchestra.run.smithi169.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-10T22:06:40.403 INFO:teuthology.orchestra.run.smithi169.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-10T22:06:40.483 INFO:teuthology.orchestra.run.smithi063.stdout:linux-image-generic is already the newest version (5.15.0.106.106). 2024-05-10T22:06:40.483 INFO:teuthology.orchestra.run.smithi063.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:06:40.484 INFO:teuthology.orchestra.run.smithi063.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:06:40.484 INFO:teuthology.orchestra.run.smithi063.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:06:40.484 INFO:teuthology.orchestra.run.smithi063.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:06:40.484 INFO:teuthology.orchestra.run.smithi063.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-05-10T22:06:40.484 INFO:teuthology.orchestra.run.smithi063.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-05-10T22:06:40.485 INFO:teuthology.orchestra.run.smithi063.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:06:40.523 INFO:teuthology.orchestra.run.smithi169.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-10T22:06:40.524 INFO:teuthology.orchestra.run.smithi169.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-05-10T22:06:40.524 INFO:teuthology.orchestra.run.smithi169.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-10T22:06:40.528 INFO:teuthology.orchestra.run.smithi063.stdout:0 upgraded, 0 newly installed, 0 to remove and 320 not upgraded. 2024-05-10T22:06:40.531 DEBUG:teuthology.orchestra.run.smithi063:> dpkg -s linux-image-generic 2024-05-10T22:06:40.536 INFO:teuthology.orchestra.run.smithi169.stderr:done 2024-05-10T22:06:40.545 DEBUG:teuthology.orchestra.run.smithi169:> sudo shutdown -r now 2024-05-10T22:06:40.546 INFO:teuthology.orchestra.run.smithi063.stdout:Package: linux-image-generic 2024-05-10T22:06:40.546 INFO:teuthology.orchestra.run.smithi063.stdout:Status: install ok installed 2024-05-10T22:06:40.546 INFO:teuthology.orchestra.run.smithi063.stdout:Priority: optional 2024-05-10T22:06:40.546 INFO:teuthology.orchestra.run.smithi063.stdout:Section: kernel 2024-05-10T22:06:40.546 INFO:teuthology.orchestra.run.smithi063.stdout:Installed-Size: 21 2024-05-10T22:06:40.546 INFO:teuthology.orchestra.run.smithi063.stdout:Maintainer: Ubuntu Kernel Team 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.stdout:Architecture: amd64 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.stdout:Source: linux-meta 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.stdout:Version: 5.15.0.106.106 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.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-106), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.stdout:Depends: linux-image-5.15.0-106-generic, linux-modules-extra-5.15.0-106-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.stdout:Recommends: thermald 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.stdout:Description: Generic Linux kernel image 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.stdout: This package will always depend on the latest generic kernel image 2024-05-10T22:06:40.547 INFO:teuthology.orchestra.run.smithi063.stdout: available. 2024-05-10T22:06:40.549 DEBUG:teuthology.orchestra.run.smithi063:> mktemp 2024-05-10T22:06:40.596 INFO:teuthology.orchestra.run.smithi063.stdout:/tmp/tmp.Lxap2pfJIT 2024-05-10T22:06:40.597 DEBUG:teuthology.orchestra.run.smithi063:> sudo cp /boot/grub/grub.cfg /tmp/tmp.Lxap2pfJIT 2024-05-10T22:06:40.670 DEBUG:teuthology.orchestra.run.smithi063:> sudo chmod 0666 /tmp/tmp.Lxap2pfJIT 2024-05-10T22:06:40.776 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-05-10T22:06:40.787 DEBUG:teuthology.orchestra.remote:smithi063:/tmp/tmp.Lxap2pfJIT is 10KB 2024-05-10T22:06:40.793 DEBUG:teuthology.orchestra.run.smithi152:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-10T22:06:40.800 DEBUG:teuthology.orchestra.run.smithi063:> rm -fr /tmp/tmp.Lxap2pfJIT 2024-05-10T22:06:40.805 DEBUG:teuthology.orchestra.run.smithi063:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-05-10T22:06:40.844 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-05-10T22:06:40.859 DEBUG:teuthology.orchestra.run.smithi063:> set -ex 2024-05-10T22:06:40.859 DEBUG:teuthology.orchestra.run.smithi063:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-05-10T22:06:40.859 DEBUG:teuthology.orchestra.run.smithi063:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-05-10T22:06:40.928 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-106-generic 2024-05-10T22:06:40.928 DEBUG:teuthology.orchestra.run.smithi063:> sudo update-grub 2024-05-10T22:06:41.023 INFO:teuthology.orchestra.run.smithi152.stdout:Building dependency tree... 2024-05-10T22:06:41.023 INFO:teuthology.orchestra.run.smithi152.stdout:Reading state information... 2024-05-10T22:06:41.182 INFO:teuthology.orchestra.run.smithi152.stdout:linux-image-generic is already the newest version (5.15.0.106.106). 2024-05-10T22:06:41.182 INFO:teuthology.orchestra.run.smithi152.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:06:41.182 INFO:teuthology.orchestra.run.smithi152.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:06:41.183 INFO:teuthology.orchestra.run.smithi152.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:06:41.183 INFO:teuthology.orchestra.run.smithi152.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:06:41.183 INFO:teuthology.orchestra.run.smithi152.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-05-10T22:06:41.183 INFO:teuthology.orchestra.run.smithi152.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-05-10T22:06:41.183 INFO:teuthology.orchestra.run.smithi152.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:06:41.222 INFO:teuthology.orchestra.run.smithi152.stdout:0 upgraded, 0 newly installed, 0 to remove and 320 not upgraded. 2024-05-10T22:06:41.224 DEBUG:teuthology.orchestra.run.smithi152:> dpkg -s linux-image-generic 2024-05-10T22:06:41.278 INFO:teuthology.orchestra.run.smithi152.stdout:Package: linux-image-generic 2024-05-10T22:06:41.278 INFO:teuthology.orchestra.run.smithi152.stdout:Status: install ok installed 2024-05-10T22:06:41.278 INFO:teuthology.orchestra.run.smithi152.stdout:Priority: optional 2024-05-10T22:06:41.278 INFO:teuthology.orchestra.run.smithi152.stdout:Section: kernel 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout:Installed-Size: 21 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout:Maintainer: Ubuntu Kernel Team 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout:Architecture: amd64 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout:Source: linux-meta 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout:Version: 5.15.0.106.106 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.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-106), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout:Depends: linux-image-5.15.0-106-generic, linux-modules-extra-5.15.0-106-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout:Recommends: thermald 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout:Description: Generic Linux kernel image 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout: This package will always depend on the latest generic kernel image 2024-05-10T22:06:41.279 INFO:teuthology.orchestra.run.smithi152.stdout: available. 2024-05-10T22:06:41.280 DEBUG:teuthology.orchestra.run.smithi152:> mktemp 2024-05-10T22:06:41.326 INFO:teuthology.orchestra.run.smithi152.stdout:/tmp/tmp.oIMd7L0YzG 2024-05-10T22:06:41.326 DEBUG:teuthology.orchestra.run.smithi152:> sudo cp /boot/grub/grub.cfg /tmp/tmp.oIMd7L0YzG 2024-05-10T22:06:41.382 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod 0666 /tmp/tmp.oIMd7L0YzG 2024-05-10T22:06:41.498 DEBUG:teuthology.orchestra.remote:smithi152:/tmp/tmp.oIMd7L0YzG is 10KB 2024-05-10T22:06:41.511 DEBUG:teuthology.orchestra.run.smithi152:> rm -fr /tmp/tmp.oIMd7L0YzG 2024-05-10T22:06:41.516 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-05-10T22:06:41.570 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-05-10T22:06:41.571 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-05-10T22:06:41.571 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-05-10T22:06:41.638 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-106-generic 2024-05-10T22:06:41.638 DEBUG:teuthology.orchestra.run.smithi152:> sudo update-grub 2024-05-10T22:06:42.043 INFO:teuthology.orchestra.run.smithi063.stderr:Sourcing file `/etc/default/grub' 2024-05-10T22:06:42.043 INFO:teuthology.orchestra.run.smithi063.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-10T22:06:42.045 INFO:teuthology.orchestra.run.smithi063.stderr:Generating grub configuration file ... 2024-05-10T22:06:42.284 INFO:teuthology.orchestra.run.smithi063.stderr:Found linux image: /boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:42.290 INFO:teuthology.orchestra.run.smithi063.stderr:Found initrd image: /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:42.579 INFO:teuthology.orchestra.run.smithi063.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:42.585 INFO:teuthology.orchestra.run.smithi063.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:42.627 INFO:teuthology.orchestra.run.smithi063.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-10T22:06:42.632 INFO:teuthology.orchestra.run.smithi063.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-10T22:06:42.768 INFO:teuthology.orchestra.run.smithi063.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-10T22:06:42.768 INFO:teuthology.orchestra.run.smithi063.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-05-10T22:06:42.769 INFO:teuthology.orchestra.run.smithi063.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-10T22:06:42.784 INFO:teuthology.orchestra.run.smithi063.stderr:done 2024-05-10T22:06:42.793 DEBUG:teuthology.orchestra.run.smithi063:> sudo shutdown -r now 2024-05-10T22:06:42.959 INFO:teuthology.orchestra.run.smithi152.stderr:Sourcing file `/etc/default/grub' 2024-05-10T22:06:42.960 INFO:teuthology.orchestra.run.smithi152.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-10T22:06:42.964 INFO:teuthology.orchestra.run.smithi152.stderr:Generating grub configuration file ... 2024-05-10T22:06:43.145 INFO:teuthology.orchestra.run.smithi152.stderr:Found linux image: /boot/vmlinuz-5.15.0-106-generic 2024-05-10T22:06:43.151 INFO:teuthology.orchestra.run.smithi152.stderr:Found initrd image: /boot/initrd.img-5.15.0-106-generic 2024-05-10T22:06:43.462 INFO:teuthology.orchestra.run.smithi152.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-10T22:06:43.468 INFO:teuthology.orchestra.run.smithi152.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-10T22:06:43.510 INFO:teuthology.orchestra.run.smithi152.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-10T22:06:43.516 INFO:teuthology.orchestra.run.smithi152.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-10T22:06:43.636 INFO:teuthology.orchestra.run.smithi152.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-10T22:06:43.636 INFO:teuthology.orchestra.run.smithi152.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-05-10T22:06:43.636 INFO:teuthology.orchestra.run.smithi152.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-10T22:06:43.673 INFO:teuthology.orchestra.run.smithi152.stderr:done 2024-05-10T22:06:43.691 DEBUG:teuthology.orchestra.run.smithi152:> sudo shutdown -r now 2024-05-10T22:07:10.574 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-05-10T22:07:10.575 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-05-10T22:07:10.576 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:07:12.797 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-05-10T22:07:12.797 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi063.front.sepia.ceph.com' 2024-05-10T22:07:12.798 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi063.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:07:13.694 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-05-10T22:07:13.694 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-05-10T22:07:13.695 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:07:32.127 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-05-10T22:07:41.135 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-05-10T22:07:41.136 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:07:44.194 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-05-10T22:07:45.182 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.169 2024-05-10T22:07:47.486 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.63 2024-05-10T22:07:54.190 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-05-10T22:07:54.191 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:07:56.198 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-05-10T22:07:56.198 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:07:56.487 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi063.front.sepia.ceph.com' 2024-05-10T22:07:56.488 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi063.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:08:12.574 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.169 2024-05-10T22:08:14.622 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-05-10T22:08:14.878 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.63 2024-05-10T22:08:24.582 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-05-10T22:08:24.583 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:08:24.585 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.169 2024-05-10T22:08:26.880 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi063.front.sepia.ceph.com' 2024-05-10T22:08:26.881 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi063.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:08:27.483 DEBUG:teuthology.orchestra.run.smithi063:> true 2024-05-10T22:08:28.368 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi063.front.sepia.ceph.com' 2024-05-10T22:08:28.368 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-106-generic"... 2024-05-10T22:08:28.369 DEBUG:teuthology.orchestra.run.smithi063:> uname -r 2024-05-10T22:08:28.419 INFO:teuthology.orchestra.run.smithi063.stdout:5.15.0-106-generic 2024-05-10T22:08:28.419 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-106-generic vs 5.15.0-106-generic 2024-05-10T22:08:28.419 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-10T22:08:28.419 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-05-10T22:08:29.421 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-05-10T22:08:29.421 DEBUG:teuthology.orchestra.run.smithi063:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-10T22:08:29.525 INFO:teuthology.orchestra.run.smithi063.stdout:ttyS1 2024-05-10T22:08:29.569 DEBUG:teuthology.parallel:result is None 2024-05-10T22:08:29.623 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-05-10T22:08:29.624 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:08:30.659 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.152 2024-05-10T22:08:39.586 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-05-10T22:08:39.587 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:08:39.911 DEBUG:teuthology.orchestra.run.smithi169:> true 2024-05-10T22:08:40.412 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-05-10T22:08:40.413 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-106-generic"... 2024-05-10T22:08:40.413 DEBUG:teuthology.orchestra.run.smithi169:> uname -r 2024-05-10T22:08:40.459 INFO:teuthology.orchestra.run.smithi169.stdout:5.15.0-106-generic 2024-05-10T22:08:40.460 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-106-generic vs 5.15.0-106-generic 2024-05-10T22:08:40.460 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-10T22:08:40.460 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-05-10T22:08:41.461 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-05-10T22:08:41.461 DEBUG:teuthology.orchestra.run.smithi169:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-10T22:08:41.531 INFO:teuthology.orchestra.run.smithi169.stdout:ttyS1 2024-05-10T22:08:41.549 DEBUG:teuthology.parallel:result is None 2024-05-10T22:08:48.659 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-05-10T22:08:48.660 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:08:49.034 DEBUG:teuthology.orchestra.run.smithi152:> true 2024-05-10T22:08:49.600 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-05-10T22:08:49.600 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-106-generic"... 2024-05-10T22:08:49.600 DEBUG:teuthology.orchestra.run.smithi152:> uname -r 2024-05-10T22:08:49.648 INFO:teuthology.orchestra.run.smithi152.stdout:5.15.0-106-generic 2024-05-10T22:08:49.649 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-106-generic vs 5.15.0-106-generic 2024-05-10T22:08:49.649 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-10T22:08:49.649 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-05-10T22:08:50.649 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-05-10T22:08:50.649 DEBUG:teuthology.orchestra.run.smithi152:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-10T22:08:50.994 INFO:teuthology.orchestra.run.smithi152.stdout:ttyS1 2024-05-10T22:08:51.014 DEBUG:teuthology.parallel:result is None 2024-05-10T22:08:51.015 INFO:teuthology.run_tasks:Running task internal.base... 2024-05-10T22:08:51.027 INFO:teuthology.task.internal:Creating test directory... 2024-05-10T22:08:51.027 DEBUG:teuthology.orchestra.run.smithi063:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-10T22:08:51.030 DEBUG:teuthology.orchestra.run.smithi152:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-10T22:08:51.032 DEBUG:teuthology.orchestra.run.smithi169:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-10T22:08:51.038 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-05-10T22:08:51.048 INFO:teuthology.run_tasks:Running task internal.archive... 2024-05-10T22:08:51.059 INFO:teuthology.task.internal:Creating archive directory... 2024-05-10T22:08:51.059 DEBUG:teuthology.orchestra.run.smithi063:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-10T22:08:51.084 DEBUG:teuthology.orchestra.run.smithi152:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-10T22:08:51.087 DEBUG:teuthology.orchestra.run.smithi169:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-10T22:08:51.109 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-05-10T22:08:51.117 INFO:teuthology.task.internal:Enabling coredump saving... 2024-05-10T22:08:51.117 DEBUG:teuthology.orchestra.run.smithi063:> 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-05-10T22:08:51.146 DEBUG:teuthology.orchestra.run.smithi152:> 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-05-10T22:08:51.148 DEBUG:teuthology.orchestra.run.smithi169:> 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-05-10T22:08:51.162 INFO:teuthology.orchestra.run.smithi063.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T22:08:51.172 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T22:08:51.173 INFO:teuthology.orchestra.run.smithi063.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T22:08:51.175 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T22:08:51.180 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T22:08:51.183 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T22:08:51.184 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-05-10T22:08:51.192 INFO:teuthology.task.internal:Configuring sudo... 2024-05-10T22:08:51.192 DEBUG:teuthology.orchestra.run.smithi063:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-10T22:08:51.225 DEBUG:teuthology.orchestra.run.smithi152:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-10T22:08:51.226 DEBUG:teuthology.orchestra.run.smithi169:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-10T22:08:51.258 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-05-10T22:08:51.269 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-05-10T22:08:51.270 DEBUG:teuthology.orchestra.run.smithi063:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-10T22:08:51.282 DEBUG:teuthology.orchestra.run.smithi152:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-10T22:08:51.284 DEBUG:teuthology.orchestra.run.smithi169:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-10T22:08:51.304 DEBUG:teuthology.orchestra.run.smithi063:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-10T22:08:51.332 DEBUG:teuthology.orchestra.run.smithi063:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-10T22:08:51.379 DEBUG:teuthology.orchestra.run.smithi063:> set -ex 2024-05-10T22:08:51.380 DEBUG:teuthology.orchestra.run.smithi063:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-10T22:08:51.448 DEBUG:teuthology.orchestra.run.smithi152:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-10T22:08:51.454 DEBUG:teuthology.orchestra.run.smithi152:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-10T22:08:51.501 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-05-10T22:08:51.501 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-10T22:08:51.565 DEBUG:teuthology.orchestra.run.smithi169:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-10T22:08:51.572 DEBUG:teuthology.orchestra.run.smithi169:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-10T22:08:51.620 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-05-10T22:08:51.620 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-10T22:08:51.681 DEBUG:teuthology.orchestra.run.smithi063:> sudo service rsyslog restart 2024-05-10T22:08:51.683 DEBUG:teuthology.orchestra.run.smithi152:> sudo service rsyslog restart 2024-05-10T22:08:51.685 DEBUG:teuthology.orchestra.run.smithi169:> sudo service rsyslog restart 2024-05-10T22:08:51.752 INFO:teuthology.run_tasks:Running task internal.timer... 2024-05-10T22:08:51.760 INFO:teuthology.task.internal:Starting timer... 2024-05-10T22:08:51.760 INFO:teuthology.run_tasks:Running task pcp... 2024-05-10T22:08:51.772 INFO:teuthology.run_tasks:Running task selinux... 2024-05-10T22:08:51.782 DEBUG:teuthology.task.selinux:Excluding smithi063: OS 'ubuntu' does not support SELinux 2024-05-10T22:08:51.782 DEBUG:teuthology.task.selinux:Excluding smithi152: OS 'ubuntu' does not support SELinux 2024-05-10T22:08:51.782 DEBUG:teuthology.task.selinux:Excluding smithi169: OS 'ubuntu' does not support SELinux 2024-05-10T22:08:51.783 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-05-10T22:08:51.783 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-05-10T22:08:51.783 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-05-10T22:08:51.783 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-05-10T22:08:51.792 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-05-10T22:08:51.814 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-05-10T22:08:51.815 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi063.front.sepia.ceph.com,smithi152.front.sepia.ceph.com,smithi169.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-05-10T22:16:04.280 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi063.front.sepia.ceph.com'), Remote(name='ubuntu@smithi152.front.sepia.ceph.com'), Remote(name='ubuntu@smithi169.front.sepia.ceph.com')] 2024-05-10T22:16:04.281 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi063.front.sepia.ceph.com' 2024-05-10T22:16:04.282 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi063.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:16:04.365 DEBUG:teuthology.orchestra.run.smithi063:> true 2024-05-10T22:16:04.439 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi063.front.sepia.ceph.com' 2024-05-10T22:16:04.439 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-05-10T22:16:04.440 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi152.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:16:04.520 DEBUG:teuthology.orchestra.run.smithi152:> true 2024-05-10T22:16:04.594 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi152.front.sepia.ceph.com' 2024-05-10T22:16:04.595 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-05-10T22:16:04.595 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi169.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T22:16:04.673 DEBUG:teuthology.orchestra.run.smithi169:> true 2024-05-10T22:16:04.750 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi169.front.sepia.ceph.com' 2024-05-10T22:16:04.750 INFO:teuthology.run_tasks:Running task clock... 2024-05-10T22:16:04.761 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-05-10T22:16:04.761 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-10T22:16:04.762 DEBUG:teuthology.orchestra.run.smithi063:> 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-05-10T22:16:04.764 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-10T22:16:04.764 DEBUG:teuthology.orchestra.run.smithi152:> 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-05-10T22:16:04.766 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-10T22:16:04.766 DEBUG:teuthology.orchestra.run.smithi169:> 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-05-10T22:16:04.795 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-05-10T22:16:04.795 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Command line: ntpd -gq 2024-05-10T22:16:04.795 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: ---------------------------------------------------- 2024-05-10T22:16:04.795 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: ntp-4 is maintained by Network Time Foundation, 2024-05-10T22:16:04.795 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: corporation. Support and training for ntp-4 are 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: available at https://www.nwtime.org/support 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: ---------------------------------------------------- 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Command line: ntpd -gq 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: ---------------------------------------------------- 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: ntp-4 is maintained by Network Time Foundation, 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: corporation. Support and training for ntp-4 are 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: available at https://www.nwtime.org/support 2024-05-10T22:16:04.796 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: ---------------------------------------------------- 2024-05-10T22:16:04.797 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: proto: precision = 0.043 usec (-24) 2024-05-10T22:16:04.798 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: basedate set to 2022-02-04 2024-05-10T22:16:04.798 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: gps base set to 2022-02-06 (week 2196) 2024-05-10T22:16:04.798 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-10T22:16:04.798 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: proto: precision = 0.045 usec (-24) 2024-05-10T22:16:04.798 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: basedate set to 2022-02-04 2024-05-10T22:16:04.798 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: gps base set to 2022-02-06 (week 2196) 2024-05-10T22:16:04.798 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-10T22:16:04.798 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: restrict ::: KOD does nothing without LIMITED. 2024-05-10T22:16:04.799 INFO:teuthology.orchestra.run.smithi152.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-10T22:16:04.799 INFO:teuthology.orchestra.run.smithi152.stderr:restrict ::: KOD does nothing without LIMITED. 2024-05-10T22:16:04.799 INFO:teuthology.orchestra.run.smithi063.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-10T22:16:04.799 INFO:teuthology.orchestra.run.smithi063.stderr:restrict ::: KOD does nothing without LIMITED. 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Listen and drop on 0 v6wildcard [::]:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Listen normally on 2 lo 127.0.0.1:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Listen normally on 3 enp3s0f1 172.21.15.63:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Listen normally on 4 lo [::1]:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:feb6:f8d7%5]:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:04 ntpd[17241]: Listening on routing socket on fd #22 for interface updates 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: restrict ::: KOD does nothing without LIMITED. 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Listen and drop on 0 v6wildcard [::]:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Listen normally on 2 lo 127.0.0.1:123 2024-05-10T22:16:04.801 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Listen normally on 3 enp3s0f1 172.21.15.152:123 2024-05-10T22:16:04.802 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Listen normally on 4 lo [::1]:123 2024-05-10T22:16:04.802 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6de3%5]:123 2024-05-10T22:16:04.802 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:04 ntpd[17241]: Listening on routing socket on fd #22 for interface updates 2024-05-10T22:16:04.816 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-05-10T22:16:04.816 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Command line: ntpd -gq 2024-05-10T22:16:04.816 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: ---------------------------------------------------- 2024-05-10T22:16:04.816 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: ntp-4 is maintained by Network Time Foundation, 2024-05-10T22:16:04.816 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-05-10T22:16:04.816 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: corporation. Support and training for ntp-4 are 2024-05-10T22:16:04.816 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: available at https://www.nwtime.org/support 2024-05-10T22:16:04.816 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: ---------------------------------------------------- 2024-05-10T22:16:04.817 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: proto: precision = 0.045 usec (-24) 2024-05-10T22:16:04.817 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: basedate set to 2022-02-04 2024-05-10T22:16:04.817 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: gps base set to 2022-02-06 (week 2196) 2024-05-10T22:16:04.817 INFO:teuthology.orchestra.run.smithi169.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-10T22:16:04.817 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-10T22:16:04.817 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: restrict ::: KOD does nothing without LIMITED. 2024-05-10T22:16:04.818 INFO:teuthology.orchestra.run.smithi169.stderr:restrict ::: KOD does nothing without LIMITED. 2024-05-10T22:16:04.819 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Listen and drop on 0 v6wildcard [::]:123 2024-05-10T22:16:04.819 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-05-10T22:16:04.819 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Listen normally on 2 lo 127.0.0.1:123 2024-05-10T22:16:04.819 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Listen normally on 3 enp3s0f1 172.21.15.169:123 2024-05-10T22:16:04.819 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Listen normally on 4 lo [::1]:123 2024-05-10T22:16:04.819 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7f4d%5]:123 2024-05-10T22:16:04.819 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:04 ntpd[17264]: Listening on routing socket on fd #22 for interface updates 2024-05-10T22:16:05.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:05 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:05.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:05 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:05.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:05 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:05.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:05 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:05.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:05 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:05.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:05 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:05.816 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:05 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:05.816 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:05 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:06.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:06.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:06.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:06.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:06.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:06 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:06.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:06 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:07.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:07 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:07.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:07 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:07.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:07 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:07.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:07 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:07.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:07 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:07.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:07 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:08.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:08.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:08.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:08.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:08.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:08.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:08.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:08 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:08.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:08.818 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:08.818 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:08 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:09.795 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:09 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:09.796 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:09 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:09.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:09.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:09.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:09.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:09.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:09.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:09.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:09.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:09.798 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:09.798 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:09.798 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:09.798 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:09.798 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:09.798 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:09 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:09.816 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:09 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:09.816 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:09 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:09.816 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:09 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:09.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:09 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:09.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:09 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:09.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:09 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:10.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:10.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:10.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:10.799 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:10 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:10.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:10 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:11.796 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:11.797 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:11.798 INFO:teuthology.orchestra.run.smithi152.stdout:10 May 22:16:11 ntpd[17241]: ntpd: time slew -0.002248 s 2024-05-10T22:16:11.798 INFO:teuthology.orchestra.run.smithi152.stdout:ntpd: time slew -0.002248s 2024-05-10T22:16:11.798 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-05-10T22:16:11.798 INFO:teuthology.orchestra.run.smithi152.stderr:10 May 22:16:11 ntpd[17241]: can't open /var/log/ntpstats/loopstats.20240510: Permission denied 2024-05-10T22:16:11.816 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:11 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:11.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:11 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:11.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:11 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:11.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:11 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:11.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:11 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:11.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:11 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:11.860 INFO:teuthology.orchestra.run.smithi152.stdout: remote refid st t when poll reach delay offset jitter 2024-05-10T22:16:11.860 INFO:teuthology.orchestra.run.smithi152.stdout:============================================================================== 2024-05-10T22:16:11.860 INFO:teuthology.orchestra.run.smithi152.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:11.860 INFO:teuthology.orchestra.run.smithi152.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:11.860 INFO:teuthology.orchestra.run.smithi152.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:11.860 INFO:teuthology.orchestra.run.smithi152.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.796 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:12.796 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stdout:10 May 22:16:12 ntpd[17241]: ntpd: time slew +0.000915 s 2024-05-10T22:16:12.797 INFO:teuthology.orchestra.run.smithi063.stdout:ntpd: time slew +0.000915s 2024-05-10T22:16:12.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-05-10T22:16:12.798 INFO:teuthology.orchestra.run.smithi063.stderr:10 May 22:16:12 ntpd[17241]: can't open /var/log/ntpstats/loopstats.20240510: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: can't open /var/log/ntpstats/rawstats.20240510: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: can't open /var/log/ntpstats/peerstats.20240510: Permission denied 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stdout:10 May 22:16:12 ntpd[17264]: ntpd: time slew +0.000016 s 2024-05-10T22:16:12.817 INFO:teuthology.orchestra.run.smithi169.stdout:ntpd: time slew +0.000016s 2024-05-10T22:16:12.818 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-05-10T22:16:12.818 INFO:teuthology.orchestra.run.smithi169.stderr:10 May 22:16:12 ntpd[17264]: can't open /var/log/ntpstats/loopstats.20240510: Permission denied 2024-05-10T22:16:12.849 INFO:teuthology.orchestra.run.smithi063.stdout: remote refid st t when poll reach delay offset jitter 2024-05-10T22:16:12.849 INFO:teuthology.orchestra.run.smithi063.stdout:============================================================================== 2024-05-10T22:16:12.849 INFO:teuthology.orchestra.run.smithi063.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.849 INFO:teuthology.orchestra.run.smithi063.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.849 INFO:teuthology.orchestra.run.smithi063.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.849 INFO:teuthology.orchestra.run.smithi063.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.870 INFO:teuthology.orchestra.run.smithi169.stdout: remote refid st t when poll reach delay offset jitter 2024-05-10T22:16:12.870 INFO:teuthology.orchestra.run.smithi169.stdout:============================================================================== 2024-05-10T22:16:12.870 INFO:teuthology.orchestra.run.smithi169.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.870 INFO:teuthology.orchestra.run.smithi169.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.870 INFO:teuthology.orchestra.run.smithi169.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.871 INFO:teuthology.orchestra.run.smithi169.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:16:12.871 INFO:teuthology.run_tasks:Running task install... 2024-05-10T22:16:12.879 DEBUG:teuthology.task.install:project ceph 2024-05-10T22:16:12.880 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'f72fecff68e1d400c4568684327c900485c20d6a'}} 2024-05-10T22:16:12.880 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'f72fecff68e1d400c4568684327c900485c20d6a'} 2024-05-10T22:16:12.880 INFO:teuthology.task.install:Using flavor: default 2024-05-10T22:16:12.886 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-05-10T22:16:12.886 INFO:teuthology.task.install:extra packages: [] 2024-05-10T22:16:12.886 DEBUG:teuthology.orchestra.run.smithi063:> sudo apt-key list | grep Ceph 2024-05-10T22:16:12.887 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-key list | grep Ceph 2024-05-10T22:16:12.887 DEBUG:teuthology.orchestra.run.smithi169:> sudo apt-key list | grep Ceph 2024-05-10T22:16:12.950 INFO:teuthology.orchestra.run.smithi152.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-05-10T22:16:12.955 INFO:teuthology.orchestra.run.smithi063.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-05-10T22:16:12.970 INFO:teuthology.orchestra.run.smithi169.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-05-10T22:16:12.980 INFO:teuthology.orchestra.run.smithi152.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-05-10T22:16:12.980 INFO:teuthology.orchestra.run.smithi152.stdout:uid [ unknown] Ceph.com (release key) 2024-05-10T22:16:12.981 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-05-10T22:16:12.981 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:16:12.985 INFO:teuthology.orchestra.run.smithi063.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-05-10T22:16:12.985 INFO:teuthology.orchestra.run.smithi063.stdout:uid [ unknown] Ceph.com (release key) 2024-05-10T22:16:12.986 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-05-10T22:16:12.986 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:16:12.997 INFO:teuthology.orchestra.run.smithi169.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-05-10T22:16:12.997 INFO:teuthology.orchestra.run.smithi169.stdout:uid [ unknown] Ceph.com (release key) 2024-05-10T22:16:12.997 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-05-10T22:16:12.998 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:16:13.123 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default/ 2024-05-10T22:16:13.123 INFO:teuthology.task.install.deb:Package version is 19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:16:13.132 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default/ 2024-05-10T22:16:13.132 INFO:teuthology.task.install.deb:Package version is 19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:16:13.275 INFO:teuthology.task.install.deb:Pulling from https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default/ 2024-05-10T22:16:13.275 INFO:teuthology.task.install.deb:Package version is 19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:16:13.381 DEBUG:teuthology.orchestra.run.smithi063:> set -ex 2024-05-10T22:16:13.381 DEBUG:teuthology.orchestra.run.smithi063:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-05-10T22:16:13.390 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-05-10T22:16:13.390 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-05-10T22:16:13.396 DEBUG:teuthology.orchestra.run.smithi063:> sudo apt-get update 2024-05-10T22:16:13.404 DEBUG:teuthology.orchestra.run.smithi169:> sudo apt-get update 2024-05-10T22:16:13.574 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-05-10T22:16:13.574 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-05-10T22:16:13.588 DEBUG:teuthology.orchestra.run.smithi152:> sudo apt-get update 2024-05-10T22:16:13.625 INFO:teuthology.orchestra.run.smithi169.stdout:Ign:1 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy InRelease 2024-05-10T22:16:13.636 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:16:13.636 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-05-10T22:16:13.646 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:16:13.646 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-05-10T22:16:13.646 INFO:teuthology.orchestra.run.smithi169.stdout:Get:4 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy Release [6,978 B] 2024-05-10T22:16:13.669 INFO:teuthology.orchestra.run.smithi169.stdout:Ign:5 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy Release.gpg 2024-05-10T22:16:13.678 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-05-10T22:16:13.685 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-05-10T22:16:13.690 INFO:teuthology.orchestra.run.smithi169.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-05-10T22:16:13.717 INFO:teuthology.orchestra.run.smithi169.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,400 B] 2024-05-10T22:16:13.725 INFO:teuthology.orchestra.run.smithi063.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-05-10T22:16:13.733 INFO:teuthology.orchestra.run.smithi169.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-05-10T22:16:13.796 INFO:teuthology.orchestra.run.smithi063.stdout:Ign:5 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy InRelease 2024-05-10T22:16:13.818 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-10T22:16:13.818 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-05-10T22:16:13.851 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-05-10T22:16:13.852 INFO:teuthology.orchestra.run.smithi063.stdout:Get:6 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy Release [6,978 B] 2024-05-10T22:16:13.899 INFO:teuthology.orchestra.run.smithi152.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-05-10T22:16:13.916 INFO:teuthology.orchestra.run.smithi063.stdout:Ign:7 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy Release.gpg 2024-05-10T22:16:13.979 INFO:teuthology.orchestra.run.smithi152.stdout:Ign:5 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy InRelease 2024-05-10T22:16:13.984 INFO:teuthology.orchestra.run.smithi063.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-05-10T22:16:14.005 INFO:teuthology.orchestra.run.smithi169.stdout:Fetched 28.2 kB in 0s (66.9 kB/s) 2024-05-10T22:16:14.047 INFO:teuthology.orchestra.run.smithi152.stdout:Get:6 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy Release [6,978 B] 2024-05-10T22:16:14.116 INFO:teuthology.orchestra.run.smithi152.stdout:Ign:7 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy Release.gpg 2024-05-10T22:16:14.129 INFO:teuthology.orchestra.run.smithi063.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,400 B] 2024-05-10T22:16:14.170 INFO:teuthology.orchestra.run.smithi152.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-05-10T22:16:14.224 INFO:teuthology.orchestra.run.smithi063.stdout:Fetched 28.2 kB in 1s (44.9 kB/s) 2024-05-10T22:16:14.231 INFO:teuthology.orchestra.run.smithi152.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,400 B] 2024-05-10T22:16:14.309 INFO:teuthology.orchestra.run.smithi152.stdout:Fetched 28.2 kB in 1s (52.8 kB/s) 2024-05-10T22:16:15.006 INFO:teuthology.orchestra.run.smithi169.stdout:Reading package lists... 2024-05-10T22:16:15.021 DEBUG:teuthology.orchestra.run.smithi169:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2555-gf72fecff-1jammy cephadm=19.0.0-2555-gf72fecff-1jammy ceph-mds=19.0.0-2555-gf72fecff-1jammy ceph-mgr=19.0.0-2555-gf72fecff-1jammy ceph-common=19.0.0-2555-gf72fecff-1jammy ceph-fuse=19.0.0-2555-gf72fecff-1jammy ceph-test=19.0.0-2555-gf72fecff-1jammy ceph-volume=19.0.0-2555-gf72fecff-1jammy radosgw=19.0.0-2555-gf72fecff-1jammy python3-rados=19.0.0-2555-gf72fecff-1jammy python3-rgw=19.0.0-2555-gf72fecff-1jammy python3-cephfs=19.0.0-2555-gf72fecff-1jammy python3-rbd=19.0.0-2555-gf72fecff-1jammy libcephfs2=19.0.0-2555-gf72fecff-1jammy libcephfs-dev=19.0.0-2555-gf72fecff-1jammy librados2=19.0.0-2555-gf72fecff-1jammy librbd1=19.0.0-2555-gf72fecff-1jammy rbd-fuse=19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:16:15.081 INFO:teuthology.orchestra.run.smithi169.stdout:Reading package lists... 2024-05-10T22:16:15.224 INFO:teuthology.orchestra.run.smithi063.stdout:Reading package lists... 2024-05-10T22:16:15.240 DEBUG:teuthology.orchestra.run.smithi063:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2555-gf72fecff-1jammy cephadm=19.0.0-2555-gf72fecff-1jammy ceph-mds=19.0.0-2555-gf72fecff-1jammy ceph-mgr=19.0.0-2555-gf72fecff-1jammy ceph-common=19.0.0-2555-gf72fecff-1jammy ceph-fuse=19.0.0-2555-gf72fecff-1jammy ceph-test=19.0.0-2555-gf72fecff-1jammy ceph-volume=19.0.0-2555-gf72fecff-1jammy radosgw=19.0.0-2555-gf72fecff-1jammy python3-rados=19.0.0-2555-gf72fecff-1jammy python3-rgw=19.0.0-2555-gf72fecff-1jammy python3-cephfs=19.0.0-2555-gf72fecff-1jammy python3-rbd=19.0.0-2555-gf72fecff-1jammy libcephfs2=19.0.0-2555-gf72fecff-1jammy libcephfs-dev=19.0.0-2555-gf72fecff-1jammy librados2=19.0.0-2555-gf72fecff-1jammy librbd1=19.0.0-2555-gf72fecff-1jammy rbd-fuse=19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:16:15.250 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-05-10T22:16:15.266 DEBUG:teuthology.orchestra.run.smithi152:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-2555-gf72fecff-1jammy cephadm=19.0.0-2555-gf72fecff-1jammy ceph-mds=19.0.0-2555-gf72fecff-1jammy ceph-mgr=19.0.0-2555-gf72fecff-1jammy ceph-common=19.0.0-2555-gf72fecff-1jammy ceph-fuse=19.0.0-2555-gf72fecff-1jammy ceph-test=19.0.0-2555-gf72fecff-1jammy ceph-volume=19.0.0-2555-gf72fecff-1jammy radosgw=19.0.0-2555-gf72fecff-1jammy python3-rados=19.0.0-2555-gf72fecff-1jammy python3-rgw=19.0.0-2555-gf72fecff-1jammy python3-cephfs=19.0.0-2555-gf72fecff-1jammy python3-rbd=19.0.0-2555-gf72fecff-1jammy libcephfs2=19.0.0-2555-gf72fecff-1jammy libcephfs-dev=19.0.0-2555-gf72fecff-1jammy librados2=19.0.0-2555-gf72fecff-1jammy librbd1=19.0.0-2555-gf72fecff-1jammy rbd-fuse=19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:16:15.282 INFO:teuthology.orchestra.run.smithi169.stdout:Building dependency tree... 2024-05-10T22:16:15.283 INFO:teuthology.orchestra.run.smithi169.stdout:Reading state information... 2024-05-10T22:16:15.294 INFO:teuthology.orchestra.run.smithi063.stdout:Reading package lists... 2024-05-10T22:16:15.317 INFO:teuthology.orchestra.run.smithi152.stdout:Reading package lists... 2024-05-10T22:16:15.467 INFO:teuthology.orchestra.run.smithi169.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:16:15.468 INFO:teuthology.orchestra.run.smithi169.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:16:15.468 INFO:teuthology.orchestra.run.smithi169.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:16:15.468 INFO:teuthology.orchestra.run.smithi169.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:16:15.468 INFO:teuthology.orchestra.run.smithi169.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-05-10T22:16:15.468 INFO:teuthology.orchestra.run.smithi169.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-05-10T22:16:15.468 INFO:teuthology.orchestra.run.smithi169.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:16:15.469 INFO:teuthology.orchestra.run.smithi169.stdout:The following additional packages will be installed: 2024-05-10T22:16:15.469 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-05-10T22:16:15.469 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-05-10T22:16:15.469 INFO:teuthology.orchestra.run.smithi169.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-05-10T22:16:15.470 INFO:teuthology.orchestra.run.smithi169.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-05-10T22:16:15.470 INFO:teuthology.orchestra.run.smithi169.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-05-10T22:16:15.471 INFO:teuthology.orchestra.run.smithi169.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: xmlstarlet zip 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout:Suggested packages: 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-05-10T22:16:15.472 INFO:teuthology.orchestra.run.smithi169.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-05-10T22:16:15.473 INFO:teuthology.orchestra.run.smithi169.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-05-10T22:16:15.473 INFO:teuthology.orchestra.run.smithi169.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-05-10T22:16:15.473 INFO:teuthology.orchestra.run.smithi169.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-05-10T22:16:15.473 INFO:teuthology.orchestra.run.smithi169.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-05-10T22:16:15.473 INFO:teuthology.orchestra.run.smithi169.stdout:Recommended packages: 2024-05-10T22:16:15.473 INFO:teuthology.orchestra.run.smithi169.stdout: btrfs-tools 2024-05-10T22:16:15.476 INFO:teuthology.orchestra.run.smithi063.stdout:Building dependency tree... 2024-05-10T22:16:15.477 INFO:teuthology.orchestra.run.smithi063.stdout:Reading state information... 2024-05-10T22:16:15.500 INFO:teuthology.orchestra.run.smithi152.stdout:Building dependency tree... 2024-05-10T22:16:15.501 INFO:teuthology.orchestra.run.smithi152.stdout:Reading state information... 2024-05-10T22:16:15.570 INFO:teuthology.orchestra.run.smithi169.stdout:The following NEW packages will be installed: 2024-05-10T22:16:15.570 INFO:teuthology.orchestra.run.smithi169.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-05-10T22:16:15.571 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-05-10T22:16:15.571 INFO:teuthology.orchestra.run.smithi169.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-05-10T22:16:15.571 INFO:teuthology.orchestra.run.smithi169.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-05-10T22:16:15.571 INFO:teuthology.orchestra.run.smithi169.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-05-10T22:16:15.571 INFO:teuthology.orchestra.run.smithi169.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-05-10T22:16:15.572 INFO:teuthology.orchestra.run.smithi169.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-05-10T22:16:15.573 INFO:teuthology.orchestra.run.smithi169.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-05-10T22:16:15.657 INFO:teuthology.orchestra.run.smithi063.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:16:15.658 INFO:teuthology.orchestra.run.smithi063.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:16:15.658 INFO:teuthology.orchestra.run.smithi063.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:16:15.658 INFO:teuthology.orchestra.run.smithi063.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:16:15.658 INFO:teuthology.orchestra.run.smithi063.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-05-10T22:16:15.659 INFO:teuthology.orchestra.run.smithi063.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-05-10T22:16:15.659 INFO:teuthology.orchestra.run.smithi063.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:16:15.659 INFO:teuthology.orchestra.run.smithi063.stdout:The following additional packages will be installed: 2024-05-10T22:16:15.659 INFO:teuthology.orchestra.run.smithi063.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-05-10T22:16:15.659 INFO:teuthology.orchestra.run.smithi063.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-05-10T22:16:15.659 INFO:teuthology.orchestra.run.smithi063.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-05-10T22:16:15.659 INFO:teuthology.orchestra.run.smithi063.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-05-10T22:16:15.660 INFO:teuthology.orchestra.run.smithi063.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-05-10T22:16:15.660 INFO:teuthology.orchestra.run.smithi063.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-05-10T22:16:15.661 INFO:teuthology.orchestra.run.smithi063.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: xmlstarlet zip 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout:Suggested packages: 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-05-10T22:16:15.662 INFO:teuthology.orchestra.run.smithi063.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-05-10T22:16:15.663 INFO:teuthology.orchestra.run.smithi063.stdout:Recommended packages: 2024-05-10T22:16:15.663 INFO:teuthology.orchestra.run.smithi063.stdout: btrfs-tools 2024-05-10T22:16:15.675 INFO:teuthology.orchestra.run.smithi152.stdout:The following packages were automatically installed and are no longer required: 2024-05-10T22:16:15.676 INFO:teuthology.orchestra.run.smithi152.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-10T22:16:15.676 INFO:teuthology.orchestra.run.smithi152.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-10T22:16:15.676 INFO:teuthology.orchestra.run.smithi152.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-10T22:16:15.676 INFO:teuthology.orchestra.run.smithi152.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-05-10T22:16:15.676 INFO:teuthology.orchestra.run.smithi152.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-05-10T22:16:15.677 INFO:teuthology.orchestra.run.smithi152.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-10T22:16:15.678 INFO:teuthology.orchestra.run.smithi152.stdout:The following additional packages will be installed: 2024-05-10T22:16:15.678 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-05-10T22:16:15.678 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-05-10T22:16:15.678 INFO:teuthology.orchestra.run.smithi152.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-05-10T22:16:15.679 INFO:teuthology.orchestra.run.smithi152.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: xmlstarlet zip 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout:Suggested packages: 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-05-10T22:16:15.680 INFO:teuthology.orchestra.run.smithi152.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-05-10T22:16:15.681 INFO:teuthology.orchestra.run.smithi152.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-05-10T22:16:15.681 INFO:teuthology.orchestra.run.smithi152.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-05-10T22:16:15.681 INFO:teuthology.orchestra.run.smithi152.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-05-10T22:16:15.681 INFO:teuthology.orchestra.run.smithi152.stdout:Recommended packages: 2024-05-10T22:16:15.681 INFO:teuthology.orchestra.run.smithi152.stdout: btrfs-tools 2024-05-10T22:16:15.711 INFO:teuthology.orchestra.run.smithi169.stdout:0 upgraded, 118 newly installed, 0 to remove and 307 not upgraded. 2024-05-10T22:16:15.711 INFO:teuthology.orchestra.run.smithi169.stdout:Need to get 180 MB of archives. 2024-05-10T22:16:15.711 INFO:teuthology.orchestra.run.smithi169.stdout:After this operation, 822 MB of additional disk space will be used. 2024-05-10T22:16:15.711 INFO:teuthology.orchestra.run.smithi169.stdout:Get:1 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2555-gf72fecff-1jammy [3,546 kB] 2024-05-10T22:16:15.763 INFO:teuthology.orchestra.run.smithi063.stdout:The following NEW packages will be installed: 2024-05-10T22:16:15.763 INFO:teuthology.orchestra.run.smithi063.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-05-10T22:16:15.763 INFO:teuthology.orchestra.run.smithi063.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-05-10T22:16:15.763 INFO:teuthology.orchestra.run.smithi063.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-05-10T22:16:15.763 INFO:teuthology.orchestra.run.smithi063.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-05-10T22:16:15.763 INFO:teuthology.orchestra.run.smithi063.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-05-10T22:16:15.763 INFO:teuthology.orchestra.run.smithi063.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-05-10T22:16:15.764 INFO:teuthology.orchestra.run.smithi063.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-05-10T22:16:15.764 INFO:teuthology.orchestra.run.smithi063.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-05-10T22:16:15.764 INFO:teuthology.orchestra.run.smithi063.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-05-10T22:16:15.764 INFO:teuthology.orchestra.run.smithi063.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-05-10T22:16:15.765 INFO:teuthology.orchestra.run.smithi063.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-05-10T22:16:15.766 INFO:teuthology.orchestra.run.smithi063.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-05-10T22:16:15.766 INFO:teuthology.orchestra.run.smithi063.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-05-10T22:16:15.766 INFO:teuthology.orchestra.run.smithi063.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-05-10T22:16:15.778 INFO:teuthology.orchestra.run.smithi152.stdout:The following NEW packages will be installed: 2024-05-10T22:16:15.778 INFO:teuthology.orchestra.run.smithi152.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-05-10T22:16:15.778 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-05-10T22:16:15.778 INFO:teuthology.orchestra.run.smithi152.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-05-10T22:16:15.780 INFO:teuthology.orchestra.run.smithi152.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-05-10T22:16:15.780 INFO:teuthology.orchestra.run.smithi152.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-05-10T22:16:15.780 INFO:teuthology.orchestra.run.smithi152.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-05-10T22:16:15.780 INFO:teuthology.orchestra.run.smithi152.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-05-10T22:16:15.780 INFO:teuthology.orchestra.run.smithi152.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-05-10T22:16:15.780 INFO:teuthology.orchestra.run.smithi152.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-05-10T22:16:15.781 INFO:teuthology.orchestra.run.smithi152.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-05-10T22:16:15.782 INFO:teuthology.orchestra.run.smithi152.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-05-10T22:16:15.782 INFO:teuthology.orchestra.run.smithi152.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-05-10T22:16:15.841 INFO:teuthology.orchestra.run.smithi169.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-05-10T22:16:15.880 INFO:teuthology.orchestra.run.smithi063.stdout:0 upgraded, 118 newly installed, 0 to remove and 307 not upgraded. 2024-05-10T22:16:15.880 INFO:teuthology.orchestra.run.smithi063.stdout:Need to get 180 MB of archives. 2024-05-10T22:16:15.881 INFO:teuthology.orchestra.run.smithi063.stdout:After this operation, 822 MB of additional disk space will be used. 2024-05-10T22:16:15.881 INFO:teuthology.orchestra.run.smithi063.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-05-10T22:16:15.896 INFO:teuthology.orchestra.run.smithi152.stdout:0 upgraded, 118 newly installed, 0 to remove and 307 not upgraded. 2024-05-10T22:16:15.896 INFO:teuthology.orchestra.run.smithi152.stdout:Need to get 180 MB of archives. 2024-05-10T22:16:15.897 INFO:teuthology.orchestra.run.smithi152.stdout:After this operation, 822 MB of additional disk space will be used. 2024-05-10T22:16:15.897 INFO:teuthology.orchestra.run.smithi152.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-05-10T22:16:16.077 INFO:teuthology.orchestra.run.smithi063.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2555-gf72fecff-1jammy [3,546 kB] 2024-05-10T22:16:16.078 INFO:teuthology.orchestra.run.smithi063.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-05-10T22:16:16.085 INFO:teuthology.orchestra.run.smithi063.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-05-10T22:16:16.089 INFO:teuthology.orchestra.run.smithi152.stdout:Get:2 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-2555-gf72fecff-1jammy [3,546 kB] 2024-05-10T22:16:16.094 INFO:teuthology.orchestra.run.smithi152.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-05-10T22:16:16.100 INFO:teuthology.orchestra.run.smithi152.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-05-10T22:16:16.120 INFO:teuthology.orchestra.run.smithi063.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-05-10T22:16:16.134 INFO:teuthology.orchestra.run.smithi152.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-05-10T22:16:16.238 INFO:teuthology.orchestra.run.smithi063.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-05-10T22:16:16.245 INFO:teuthology.orchestra.run.smithi063.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-05-10T22:16:16.258 INFO:teuthology.orchestra.run.smithi152.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-05-10T22:16:16.264 INFO:teuthology.orchestra.run.smithi169.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-05-10T22:16:16.265 INFO:teuthology.orchestra.run.smithi152.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-05-10T22:16:16.266 INFO:teuthology.orchestra.run.smithi063.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-05-10T22:16:16.267 INFO:teuthology.orchestra.run.smithi169.stdout:Get:4 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2555-gf72fecff-1jammy [3,216 kB] 2024-05-10T22:16:16.274 INFO:teuthology.orchestra.run.smithi063.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-05-10T22:16:16.275 INFO:teuthology.orchestra.run.smithi063.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-05-10T22:16:16.276 INFO:teuthology.orchestra.run.smithi063.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-05-10T22:16:16.276 INFO:teuthology.orchestra.run.smithi169.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-05-10T22:16:16.292 INFO:teuthology.orchestra.run.smithi063.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-05-10T22:16:16.293 INFO:teuthology.orchestra.run.smithi152.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-05-10T22:16:16.296 INFO:teuthology.orchestra.run.smithi063.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-05-10T22:16:16.300 INFO:teuthology.orchestra.run.smithi152.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-05-10T22:16:16.301 INFO:teuthology.orchestra.run.smithi152.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-05-10T22:16:16.301 INFO:teuthology.orchestra.run.smithi063.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-05-10T22:16:16.302 INFO:teuthology.orchestra.run.smithi152.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-05-10T22:16:16.357 INFO:teuthology.orchestra.run.smithi152.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-05-10T22:16:16.357 INFO:teuthology.orchestra.run.smithi169.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-05-10T22:16:16.359 INFO:teuthology.orchestra.run.smithi063.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-05-10T22:16:16.359 INFO:teuthology.orchestra.run.smithi063.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-05-10T22:16:16.361 INFO:teuthology.orchestra.run.smithi152.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-05-10T22:16:16.364 INFO:teuthology.orchestra.run.smithi063.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-05-10T22:16:16.364 INFO:teuthology.orchestra.run.smithi152.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-05-10T22:16:16.366 INFO:teuthology.orchestra.run.smithi152.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-05-10T22:16:16.367 INFO:teuthology.orchestra.run.smithi152.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-05-10T22:16:16.368 INFO:teuthology.orchestra.run.smithi063.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-05-10T22:16:16.371 INFO:teuthology.orchestra.run.smithi152.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-05-10T22:16:16.371 INFO:teuthology.orchestra.run.smithi063.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-05-10T22:16:16.372 INFO:teuthology.orchestra.run.smithi063.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-05-10T22:16:16.373 INFO:teuthology.orchestra.run.smithi063.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-05-10T22:16:16.374 INFO:teuthology.orchestra.run.smithi152.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-05-10T22:16:16.375 INFO:teuthology.orchestra.run.smithi063.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-05-10T22:16:16.376 INFO:teuthology.orchestra.run.smithi063.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-05-10T22:16:16.382 INFO:teuthology.orchestra.run.smithi152.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-05-10T22:16:16.383 INFO:teuthology.orchestra.run.smithi152.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-05-10T22:16:16.386 INFO:teuthology.orchestra.run.smithi152.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-05-10T22:16:16.402 INFO:teuthology.orchestra.run.smithi063.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-05-10T22:16:16.402 INFO:teuthology.orchestra.run.smithi063.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-05-10T22:16:16.403 INFO:teuthology.orchestra.run.smithi063.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-05-10T22:16:16.404 INFO:teuthology.orchestra.run.smithi063.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-05-10T22:16:16.404 INFO:teuthology.orchestra.run.smithi063.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-05-10T22:16:16.410 INFO:teuthology.orchestra.run.smithi063.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-05-10T22:16:16.410 INFO:teuthology.orchestra.run.smithi063.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-05-10T22:16:16.411 INFO:teuthology.orchestra.run.smithi063.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-05-10T22:16:16.412 INFO:teuthology.orchestra.run.smithi152.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-05-10T22:16:16.412 INFO:teuthology.orchestra.run.smithi063.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-05-10T22:16:16.413 INFO:teuthology.orchestra.run.smithi152.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-05-10T22:16:16.413 INFO:teuthology.orchestra.run.smithi152.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-05-10T22:16:16.414 INFO:teuthology.orchestra.run.smithi152.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-05-10T22:16:16.415 INFO:teuthology.orchestra.run.smithi152.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-05-10T22:16:16.415 INFO:teuthology.orchestra.run.smithi152.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-05-10T22:16:16.416 INFO:teuthology.orchestra.run.smithi152.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-05-10T22:16:16.421 INFO:teuthology.orchestra.run.smithi152.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-05-10T22:16:16.422 INFO:teuthology.orchestra.run.smithi152.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-05-10T22:16:16.431 INFO:teuthology.orchestra.run.smithi063.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-05-10T22:16:16.440 INFO:teuthology.orchestra.run.smithi063.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-05-10T22:16:16.441 INFO:teuthology.orchestra.run.smithi063.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-05-10T22:16:16.443 INFO:teuthology.orchestra.run.smithi063.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-05-10T22:16:16.444 INFO:teuthology.orchestra.run.smithi063.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-05-10T22:16:16.445 INFO:teuthology.orchestra.run.smithi063.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-05-10T22:16:16.448 INFO:teuthology.orchestra.run.smithi152.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-05-10T22:16:16.449 INFO:teuthology.orchestra.run.smithi152.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-05-10T22:16:16.451 INFO:teuthology.orchestra.run.smithi152.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-05-10T22:16:16.451 INFO:teuthology.orchestra.run.smithi152.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-05-10T22:16:16.452 INFO:teuthology.orchestra.run.smithi152.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-05-10T22:16:16.455 INFO:teuthology.orchestra.run.smithi063.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-05-10T22:16:16.455 INFO:teuthology.orchestra.run.smithi063.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-05-10T22:16:16.457 INFO:teuthology.orchestra.run.smithi063.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-05-10T22:16:16.461 INFO:teuthology.orchestra.run.smithi063.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-05-10T22:16:16.474 INFO:teuthology.orchestra.run.smithi152.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-05-10T22:16:16.475 INFO:teuthology.orchestra.run.smithi169.stdout:Get:7 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2555-gf72fecff-1jammy [711 kB] 2024-05-10T22:16:16.476 INFO:teuthology.orchestra.run.smithi152.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-05-10T22:16:16.477 INFO:teuthology.orchestra.run.smithi152.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-05-10T22:16:16.486 INFO:teuthology.orchestra.run.smithi063.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-05-10T22:16:16.487 INFO:teuthology.orchestra.run.smithi152.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-05-10T22:16:16.488 INFO:teuthology.orchestra.run.smithi152.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-05-10T22:16:16.490 INFO:teuthology.orchestra.run.smithi063.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-05-10T22:16:16.491 INFO:teuthology.orchestra.run.smithi063.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-05-10T22:16:16.494 INFO:teuthology.orchestra.run.smithi063.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-05-10T22:16:16.495 INFO:teuthology.orchestra.run.smithi063.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-05-10T22:16:16.500 INFO:teuthology.orchestra.run.smithi063.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-05-10T22:16:16.501 INFO:teuthology.orchestra.run.smithi063.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-05-10T22:16:16.502 INFO:teuthology.orchestra.run.smithi063.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-05-10T22:16:16.506 INFO:teuthology.orchestra.run.smithi169.stdout:Get:8 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2555-gf72fecff-1jammy [356 kB] 2024-05-10T22:16:16.507 INFO:teuthology.orchestra.run.smithi063.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-05-10T22:16:16.513 INFO:teuthology.orchestra.run.smithi152.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-05-10T22:16:16.514 INFO:teuthology.orchestra.run.smithi152.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-05-10T22:16:16.517 INFO:teuthology.orchestra.run.smithi152.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-05-10T22:16:16.521 INFO:teuthology.orchestra.run.smithi152.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-05-10T22:16:16.522 INFO:teuthology.orchestra.run.smithi152.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-05-10T22:16:16.525 INFO:teuthology.orchestra.run.smithi169.stdout:Get:9 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2555-gf72fecff-1jammy [32.8 kB] 2024-05-10T22:16:16.526 INFO:teuthology.orchestra.run.smithi169.stdout:Get:10 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2555-gf72fecff-1jammy [180 kB] 2024-05-10T22:16:16.536 INFO:teuthology.orchestra.run.smithi169.stdout:Get:11 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2555-gf72fecff-1jammy [67.1 kB] 2024-05-10T22:16:16.538 INFO:teuthology.orchestra.run.smithi169.stdout:Get:12 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2555-gf72fecff-1jammy [334 kB] 2024-05-10T22:16:16.555 INFO:teuthology.orchestra.run.smithi169.stdout:Get:13 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2555-gf72fecff-1jammy [6,780 kB] 2024-05-10T22:16:16.564 INFO:teuthology.orchestra.run.smithi152.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-05-10T22:16:16.566 INFO:teuthology.orchestra.run.smithi152.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-05-10T22:16:16.571 INFO:teuthology.orchestra.run.smithi152.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-05-10T22:16:16.572 INFO:teuthology.orchestra.run.smithi152.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-05-10T22:16:16.573 INFO:teuthology.orchestra.run.smithi152.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-05-10T22:16:16.587 INFO:teuthology.orchestra.run.smithi169.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-05-10T22:16:16.596 INFO:teuthology.orchestra.run.smithi063.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-05-10T22:16:16.597 INFO:teuthology.orchestra.run.smithi063.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-05-10T22:16:16.598 INFO:teuthology.orchestra.run.smithi169.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-05-10T22:16:16.599 INFO:teuthology.orchestra.run.smithi063.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-05-10T22:16:16.600 INFO:teuthology.orchestra.run.smithi063.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-05-10T22:16:16.601 INFO:teuthology.orchestra.run.smithi063.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-05-10T22:16:16.620 INFO:teuthology.orchestra.run.smithi152.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-05-10T22:16:16.629 INFO:teuthology.orchestra.run.smithi169.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-05-10T22:16:16.638 INFO:teuthology.orchestra.run.smithi169.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-05-10T22:16:16.639 INFO:teuthology.orchestra.run.smithi169.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-05-10T22:16:16.640 INFO:teuthology.orchestra.run.smithi169.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-05-10T22:16:16.659 INFO:teuthology.orchestra.run.smithi169.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-05-10T22:16:16.708 INFO:teuthology.orchestra.run.smithi063.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-05-10T22:16:16.713 INFO:teuthology.orchestra.run.smithi063.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-05-10T22:16:16.714 INFO:teuthology.orchestra.run.smithi063.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-05-10T22:16:16.750 INFO:teuthology.orchestra.run.smithi063.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-05-10T22:16:16.751 INFO:teuthology.orchestra.run.smithi063.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-05-10T22:16:16.752 INFO:teuthology.orchestra.run.smithi063.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-05-10T22:16:16.753 INFO:teuthology.orchestra.run.smithi063.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-05-10T22:16:16.754 INFO:teuthology.orchestra.run.smithi063.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-05-10T22:16:16.755 INFO:teuthology.orchestra.run.smithi063.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-05-10T22:16:16.756 INFO:teuthology.orchestra.run.smithi063.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-05-10T22:16:16.764 INFO:teuthology.orchestra.run.smithi063.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-05-10T22:16:16.769 INFO:teuthology.orchestra.run.smithi152.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-05-10T22:16:16.770 INFO:teuthology.orchestra.run.smithi063.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-05-10T22:16:16.771 INFO:teuthology.orchestra.run.smithi152.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-05-10T22:16:16.772 INFO:teuthology.orchestra.run.smithi152.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-05-10T22:16:16.773 INFO:teuthology.orchestra.run.smithi152.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-05-10T22:16:16.774 INFO:teuthology.orchestra.run.smithi152.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-05-10T22:16:16.796 INFO:teuthology.orchestra.run.smithi152.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-05-10T22:16:16.798 INFO:teuthology.orchestra.run.smithi152.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-05-10T22:16:16.798 INFO:teuthology.orchestra.run.smithi152.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-05-10T22:16:16.801 INFO:teuthology.orchestra.run.smithi169.stdout:Get:21 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2555-gf72fecff-1jammy [112 kB] 2024-05-10T22:16:16.804 INFO:teuthology.orchestra.run.smithi063.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-05-10T22:16:16.804 INFO:teuthology.orchestra.run.smithi169.stdout:Get:22 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2555-gf72fecff-1jammy [466 kB] 2024-05-10T22:16:16.806 INFO:teuthology.orchestra.run.smithi063.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-05-10T22:16:16.807 INFO:teuthology.orchestra.run.smithi063.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-05-10T22:16:16.813 INFO:teuthology.orchestra.run.smithi063.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-05-10T22:16:16.818 INFO:teuthology.orchestra.run.smithi063.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-05-10T22:16:16.819 INFO:teuthology.orchestra.run.smithi063.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-05-10T22:16:16.820 INFO:teuthology.orchestra.run.smithi063.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-05-10T22:16:16.827 INFO:teuthology.orchestra.run.smithi063.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-05-10T22:16:16.832 INFO:teuthology.orchestra.run.smithi169.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-05-10T22:16:16.833 INFO:teuthology.orchestra.run.smithi169.stdout:Get:24 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2555-gf72fecff-1jammy [25.6 MB] 2024-05-10T22:16:16.838 INFO:teuthology.orchestra.run.smithi152.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-05-10T22:16:16.839 INFO:teuthology.orchestra.run.smithi152.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-05-10T22:16:16.846 INFO:teuthology.orchestra.run.smithi063.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-05-10T22:16:16.852 INFO:teuthology.orchestra.run.smithi063.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-05-10T22:16:16.854 INFO:teuthology.orchestra.run.smithi152.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-05-10T22:16:16.855 INFO:teuthology.orchestra.run.smithi152.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-05-10T22:16:16.856 INFO:teuthology.orchestra.run.smithi152.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-05-10T22:16:16.857 INFO:teuthology.orchestra.run.smithi152.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-05-10T22:16:16.857 INFO:teuthology.orchestra.run.smithi152.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-05-10T22:16:16.858 INFO:teuthology.orchestra.run.smithi152.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-05-10T22:16:16.864 INFO:teuthology.orchestra.run.smithi152.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-05-10T22:16:16.870 INFO:teuthology.orchestra.run.smithi063.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-05-10T22:16:16.872 INFO:teuthology.orchestra.run.smithi063.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-05-10T22:16:16.872 INFO:teuthology.orchestra.run.smithi063.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-05-10T22:16:16.876 INFO:teuthology.orchestra.run.smithi063.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-05-10T22:16:16.877 INFO:teuthology.orchestra.run.smithi063.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-05-10T22:16:16.886 INFO:teuthology.orchestra.run.smithi152.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-05-10T22:16:16.889 INFO:teuthology.orchestra.run.smithi152.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-05-10T22:16:16.890 INFO:teuthology.orchestra.run.smithi152.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-05-10T22:16:16.892 INFO:teuthology.orchestra.run.smithi063.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-05-10T22:16:16.893 INFO:teuthology.orchestra.run.smithi063.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-05-10T22:16:16.893 INFO:teuthology.orchestra.run.smithi063.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-05-10T22:16:16.899 INFO:teuthology.orchestra.run.smithi063.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-05-10T22:16:16.901 INFO:teuthology.orchestra.run.smithi063.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-05-10T22:16:16.925 INFO:teuthology.orchestra.run.smithi152.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-05-10T22:16:16.930 INFO:teuthology.orchestra.run.smithi152.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-05-10T22:16:16.932 INFO:teuthology.orchestra.run.smithi152.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-05-10T22:16:16.933 INFO:teuthology.orchestra.run.smithi152.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-05-10T22:16:16.943 INFO:teuthology.orchestra.run.smithi152.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-05-10T22:16:16.944 INFO:teuthology.orchestra.run.smithi152.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-05-10T22:16:16.951 INFO:teuthology.orchestra.run.smithi152.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-05-10T22:16:16.952 INFO:teuthology.orchestra.run.smithi152.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-05-10T22:16:16.953 INFO:teuthology.orchestra.run.smithi152.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-05-10T22:16:16.954 INFO:teuthology.orchestra.run.smithi152.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-05-10T22:16:16.973 INFO:teuthology.orchestra.run.smithi152.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-05-10T22:16:16.975 INFO:teuthology.orchestra.run.smithi152.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-05-10T22:16:16.990 INFO:teuthology.orchestra.run.smithi152.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-05-10T22:16:16.991 INFO:teuthology.orchestra.run.smithi152.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-05-10T22:16:16.992 INFO:teuthology.orchestra.run.smithi152.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-05-10T22:16:16.996 INFO:teuthology.orchestra.run.smithi152.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-05-10T22:16:16.998 INFO:teuthology.orchestra.run.smithi152.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-05-10T22:16:17.233 INFO:teuthology.orchestra.run.smithi169.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-05-10T22:16:17.267 INFO:teuthology.orchestra.run.smithi169.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-05-10T22:16:17.269 INFO:teuthology.orchestra.run.smithi169.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-05-10T22:16:17.348 INFO:teuthology.orchestra.run.smithi169.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-05-10T22:16:17.400 INFO:teuthology.orchestra.run.smithi169.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-05-10T22:16:17.422 INFO:teuthology.orchestra.run.smithi169.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-05-10T22:16:17.428 INFO:teuthology.orchestra.run.smithi169.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-05-10T22:16:17.429 INFO:teuthology.orchestra.run.smithi169.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-05-10T22:16:17.440 INFO:teuthology.orchestra.run.smithi169.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-05-10T22:16:17.441 INFO:teuthology.orchestra.run.smithi169.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-05-10T22:16:17.641 INFO:teuthology.orchestra.run.smithi169.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-05-10T22:16:17.748 INFO:teuthology.orchestra.run.smithi169.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-05-10T22:16:17.791 INFO:teuthology.orchestra.run.smithi152.stdout:Get:89 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2555-gf72fecff-1jammy [3,216 kB] 2024-05-10T22:16:17.839 INFO:teuthology.orchestra.run.smithi169.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-05-10T22:16:17.840 INFO:teuthology.orchestra.run.smithi169.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-05-10T22:16:17.855 INFO:teuthology.orchestra.run.smithi169.stdout:Get:39 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2555-gf72fecff-1jammy [5,084 kB] 2024-05-10T22:16:17.883 INFO:teuthology.orchestra.run.smithi169.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-05-10T22:16:17.951 INFO:teuthology.orchestra.run.smithi169.stdout:Get:41 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2555-gf72fecff-1jammy [244 kB] 2024-05-10T22:16:17.962 INFO:teuthology.orchestra.run.smithi169.stdout:Get:42 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2555-gf72fecff-1jammy [124 kB] 2024-05-10T22:16:17.966 INFO:teuthology.orchestra.run.smithi169.stdout:Get:43 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2555-gf72fecff-1jammy [1,526 kB] 2024-05-10T22:16:18.083 INFO:teuthology.orchestra.run.smithi169.stdout:Get:44 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2555-gf72fecff-1jammy [6,246 kB] 2024-05-10T22:16:18.269 INFO:teuthology.orchestra.run.smithi169.stdout:Get:45 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2555-gf72fecff-1jammy [22.7 MB] 2024-05-10T22:16:18.588 INFO:teuthology.orchestra.run.smithi152.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2555-gf72fecff-1jammy [711 kB] 2024-05-10T22:16:18.591 INFO:teuthology.orchestra.run.smithi169.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-05-10T22:16:18.722 INFO:teuthology.orchestra.run.smithi152.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2555-gf72fecff-1jammy [356 kB] 2024-05-10T22:16:18.796 INFO:teuthology.orchestra.run.smithi152.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2555-gf72fecff-1jammy [32.8 kB] 2024-05-10T22:16:18.802 INFO:teuthology.orchestra.run.smithi152.stdout:Get:93 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2555-gf72fecff-1jammy [180 kB] 2024-05-10T22:16:18.815 INFO:teuthology.orchestra.run.smithi169.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-05-10T22:16:18.852 INFO:teuthology.orchestra.run.smithi152.stdout:Get:94 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2555-gf72fecff-1jammy [67.1 kB] 2024-05-10T22:16:18.858 INFO:teuthology.orchestra.run.smithi152.stdout:Get:95 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2555-gf72fecff-1jammy [334 kB] 2024-05-10T22:16:18.920 INFO:teuthology.orchestra.run.smithi169.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-05-10T22:16:18.929 INFO:teuthology.orchestra.run.smithi152.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2555-gf72fecff-1jammy [6,780 kB] 2024-05-10T22:16:18.988 INFO:teuthology.orchestra.run.smithi169.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-05-10T22:16:19.309 INFO:teuthology.orchestra.run.smithi169.stdout:Get:50 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2555-gf72fecff-1jammy [14.1 kB] 2024-05-10T22:16:19.309 INFO:teuthology.orchestra.run.smithi169.stdout:Get:51 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2555-gf72fecff-1jammy [869 kB] 2024-05-10T22:16:19.319 INFO:teuthology.orchestra.run.smithi169.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-05-10T22:16:19.326 INFO:teuthology.orchestra.run.smithi169.stdout:Get:53 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2555-gf72fecff-1jammy [2,437 kB] 2024-05-10T22:16:19.368 INFO:teuthology.orchestra.run.smithi169.stdout:Get:54 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2555-gf72fecff-1jammy [791 kB] 2024-05-10T22:16:19.369 INFO:teuthology.orchestra.run.smithi169.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-05-10T22:16:19.378 INFO:teuthology.orchestra.run.smithi169.stdout:Get:56 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2555-gf72fecff-1jammy [148 kB] 2024-05-10T22:16:19.380 INFO:teuthology.orchestra.run.smithi169.stdout:Get:57 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2555-gf72fecff-1jammy [2,331 kB] 2024-05-10T22:16:19.547 INFO:teuthology.orchestra.run.smithi169.stdout:Get:58 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2555-gf72fecff-1jammy [8,625 kB] 2024-05-10T22:16:19.570 INFO:teuthology.orchestra.run.smithi169.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-05-10T22:16:19.854 INFO:teuthology.orchestra.run.smithi169.stdout:Get:60 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2555-gf72fecff-1jammy [14.2 kB] 2024-05-10T22:16:19.854 INFO:teuthology.orchestra.run.smithi169.stdout:Get:61 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2555-gf72fecff-1jammy [50.7 MB] 2024-05-10T22:16:19.904 INFO:teuthology.orchestra.run.smithi169.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-05-10T22:16:19.935 INFO:teuthology.orchestra.run.smithi169.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-05-10T22:16:19.945 INFO:teuthology.orchestra.run.smithi169.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-05-10T22:16:19.973 INFO:teuthology.orchestra.run.smithi152.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2555-gf72fecff-1jammy [112 kB] 2024-05-10T22:16:19.976 INFO:teuthology.orchestra.run.smithi152.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2555-gf72fecff-1jammy [466 kB] 2024-05-10T22:16:20.050 INFO:teuthology.orchestra.run.smithi152.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2555-gf72fecff-1jammy [25.6 MB] 2024-05-10T22:16:20.150 INFO:teuthology.orchestra.run.smithi169.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-05-10T22:16:20.152 INFO:teuthology.orchestra.run.smithi169.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-05-10T22:16:20.157 INFO:teuthology.orchestra.run.smithi169.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-05-10T22:16:20.162 INFO:teuthology.orchestra.run.smithi169.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-05-10T22:16:20.180 INFO:teuthology.orchestra.run.smithi169.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-05-10T22:16:20.200 INFO:teuthology.orchestra.run.smithi169.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-05-10T22:16:20.206 INFO:teuthology.orchestra.run.smithi169.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-05-10T22:16:20.220 INFO:teuthology.orchestra.run.smithi063.stdout:Get:89 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-2555-gf72fecff-1jammy [3,216 kB] 2024-05-10T22:16:20.383 INFO:teuthology.orchestra.run.smithi169.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-05-10T22:16:20.638 INFO:teuthology.orchestra.run.smithi169.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-05-10T22:16:20.815 INFO:teuthology.orchestra.run.smithi169.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-05-10T22:16:20.828 INFO:teuthology.orchestra.run.smithi169.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-05-10T22:16:20.848 INFO:teuthology.orchestra.run.smithi169.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-05-10T22:16:20.913 INFO:teuthology.orchestra.run.smithi169.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-05-10T22:16:21.201 INFO:teuthology.orchestra.run.smithi169.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-05-10T22:16:21.203 INFO:teuthology.orchestra.run.smithi169.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-05-10T22:16:21.206 INFO:teuthology.orchestra.run.smithi169.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-05-10T22:16:21.206 INFO:teuthology.orchestra.run.smithi169.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-05-10T22:16:21.209 INFO:teuthology.orchestra.run.smithi169.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-05-10T22:16:21.431 INFO:teuthology.orchestra.run.smithi169.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-05-10T22:16:21.868 INFO:teuthology.orchestra.run.smithi169.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-05-10T22:16:21.874 INFO:teuthology.orchestra.run.smithi169.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-05-10T22:16:22.241 INFO:teuthology.orchestra.run.smithi169.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-05-10T22:16:22.242 INFO:teuthology.orchestra.run.smithi169.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-05-10T22:16:22.315 INFO:teuthology.orchestra.run.smithi169.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-05-10T22:16:22.316 INFO:teuthology.orchestra.run.smithi169.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-05-10T22:16:22.317 INFO:teuthology.orchestra.run.smithi169.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2555-gf72fecff-1jammy [121 kB] 2024-05-10T22:16:22.317 INFO:teuthology.orchestra.run.smithi169.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-05-10T22:16:22.318 INFO:teuthology.orchestra.run.smithi169.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-05-10T22:16:22.319 INFO:teuthology.orchestra.run.smithi169.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-05-10T22:16:22.320 INFO:teuthology.orchestra.run.smithi169.stdout:Get:94 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2555-gf72fecff-1jammy [38.9 kB] 2024-05-10T22:16:22.320 INFO:teuthology.orchestra.run.smithi169.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-05-10T22:16:22.321 INFO:teuthology.orchestra.run.smithi169.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2555-gf72fecff-1jammy [13.4 MB] 2024-05-10T22:16:22.492 INFO:teuthology.orchestra.run.smithi169.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-05-10T22:16:22.764 INFO:teuthology.orchestra.run.smithi169.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2555-gf72fecff-1jammy [91.6 kB] 2024-05-10T22:16:22.897 INFO:teuthology.orchestra.run.smithi169.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-05-10T22:16:22.913 INFO:teuthology.orchestra.run.smithi063.stdout:Get:90 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-2555-gf72fecff-1jammy [711 kB] 2024-05-10T22:16:23.050 INFO:teuthology.orchestra.run.smithi169.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-05-10T22:16:23.069 INFO:teuthology.orchestra.run.smithi169.stdout:Get:101 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-05-10T22:16:23.182 INFO:teuthology.orchestra.run.smithi063.stdout:Get:91 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-2555-gf72fecff-1jammy [356 kB] 2024-05-10T22:16:23.182 INFO:teuthology.orchestra.run.smithi169.stdout:Get:102 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-05-10T22:16:23.222 INFO:teuthology.orchestra.run.smithi169.stdout:Get:103 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-05-10T22:16:23.232 INFO:teuthology.orchestra.run.smithi169.stdout:Get:104 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-05-10T22:16:23.236 INFO:teuthology.orchestra.run.smithi169.stdout:Get:105 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-05-10T22:16:23.289 INFO:teuthology.orchestra.run.smithi169.stdout:Get:106 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-05-10T22:16:23.293 INFO:teuthology.orchestra.run.smithi169.stdout:Get:107 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-05-10T22:16:23.312 INFO:teuthology.orchestra.run.smithi152.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2555-gf72fecff-1jammy [5,084 kB] 2024-05-10T22:16:23.313 INFO:teuthology.orchestra.run.smithi063.stdout:Get:92 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-2555-gf72fecff-1jammy [32.8 kB] 2024-05-10T22:16:23.314 INFO:teuthology.orchestra.run.smithi063.stdout:Get:93 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-2555-gf72fecff-1jammy [180 kB] 2024-05-10T22:16:23.315 INFO:teuthology.orchestra.run.smithi169.stdout:Get:108 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-05-10T22:16:23.399 INFO:teuthology.orchestra.run.smithi063.stdout:Get:94 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-2555-gf72fecff-1jammy [67.1 kB] 2024-05-10T22:16:23.402 INFO:teuthology.orchestra.run.smithi063.stdout:Get:95 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-2555-gf72fecff-1jammy [334 kB] 2024-05-10T22:16:23.480 INFO:teuthology.orchestra.run.smithi169.stdout:Get:109 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-05-10T22:16:23.526 INFO:teuthology.orchestra.run.smithi063.stdout:Get:96 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-2555-gf72fecff-1jammy [6,780 kB] 2024-05-10T22:16:23.535 INFO:teuthology.orchestra.run.smithi152.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2555-gf72fecff-1jammy [244 kB] 2024-05-10T22:16:23.549 INFO:teuthology.orchestra.run.smithi152.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2555-gf72fecff-1jammy [124 kB] 2024-05-10T22:16:23.553 INFO:teuthology.orchestra.run.smithi152.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2555-gf72fecff-1jammy [1,526 kB] 2024-05-10T22:16:23.645 INFO:teuthology.orchestra.run.smithi152.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2555-gf72fecff-1jammy [6,246 kB] 2024-05-10T22:16:23.753 INFO:teuthology.orchestra.run.smithi169.stdout:Get:110 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-05-10T22:16:23.770 INFO:teuthology.orchestra.run.smithi169.stdout:Get:111 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-05-10T22:16:23.923 INFO:teuthology.orchestra.run.smithi169.stdout:Get:112 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-05-10T22:16:23.952 INFO:teuthology.orchestra.run.smithi169.stdout:Get:113 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-05-10T22:16:24.032 INFO:teuthology.orchestra.run.smithi152.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2555-gf72fecff-1jammy [22.7 MB] 2024-05-10T22:16:24.109 INFO:teuthology.orchestra.run.smithi169.stdout:Get:114 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-05-10T22:16:24.112 INFO:teuthology.orchestra.run.smithi169.stdout:Get:115 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-05-10T22:16:24.114 INFO:teuthology.orchestra.run.smithi169.stdout:Get:116 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-05-10T22:16:24.137 INFO:teuthology.orchestra.run.smithi169.stdout:Get:117 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-05-10T22:16:24.141 INFO:teuthology.orchestra.run.smithi169.stdout:Get:118 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-05-10T22:16:24.805 INFO:teuthology.orchestra.run.smithi169.stdout:Fetched 180 MB in 9s (20.7 MB/s) 2024-05-10T22:16:24.952 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-05-10T22:16:25.051 INFO:teuthology.orchestra.run.smithi169.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 ... 165990 files and directories currently installed.) 2024-05-10T22:16:25.057 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-05-10T22:16:25.142 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-05-10T22:16:25.465 INFO:teuthology.orchestra.run.smithi063.stdout:Get:97 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-2555-gf72fecff-1jammy [112 kB] 2024-05-10T22:16:25.470 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-05-10T22:16:25.481 INFO:teuthology.orchestra.run.smithi152.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2555-gf72fecff-1jammy [14.1 kB] 2024-05-10T22:16:25.482 INFO:teuthology.orchestra.run.smithi152.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2555-gf72fecff-1jammy [869 kB] 2024-05-10T22:16:25.497 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-05-10T22:16:25.497 INFO:teuthology.orchestra.run.smithi063.stdout:Get:98 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-2555-gf72fecff-1jammy [466 kB] 2024-05-10T22:16:25.499 INFO:teuthology.orchestra.run.smithi152.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2555-gf72fecff-1jammy [2,437 kB] 2024-05-10T22:16:25.562 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-05-10T22:16:25.574 INFO:teuthology.orchestra.run.smithi063.stdout:Get:99 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-2555-gf72fecff-1jammy [25.6 MB] 2024-05-10T22:16:25.601 INFO:teuthology.orchestra.run.smithi152.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2555-gf72fecff-1jammy [791 kB] 2024-05-10T22:16:25.658 INFO:teuthology.orchestra.run.smithi152.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2555-gf72fecff-1jammy [148 kB] 2024-05-10T22:16:25.662 INFO:teuthology.orchestra.run.smithi152.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2555-gf72fecff-1jammy [2,331 kB] 2024-05-10T22:16:25.779 INFO:teuthology.orchestra.run.smithi152.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2555-gf72fecff-1jammy [8,625 kB] 2024-05-10T22:16:25.865 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-05-10T22:16:25.892 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-05-10T22:16:25.923 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-05-10T22:16:26.248 INFO:teuthology.orchestra.run.smithi152.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2555-gf72fecff-1jammy [14.2 kB] 2024-05-10T22:16:26.248 INFO:teuthology.orchestra.run.smithi152.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2555-gf72fecff-1jammy [50.7 MB] 2024-05-10T22:16:26.369 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-05-10T22:16:26.395 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:26.444 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:26.838 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-05-10T22:16:26.865 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:26.905 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:27.217 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-05-10T22:16:27.243 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:27.275 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:27.853 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-05-10T22:16:27.879 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-05-10T22:16:27.919 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-05-10T22:16:28.247 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package librados2. 2024-05-10T22:16:28.273 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../007-librados2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:28.314 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking librados2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:28.759 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package librbd1. 2024-05-10T22:16:28.767 INFO:teuthology.orchestra.run.smithi063.stdout:Get:100 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-2555-gf72fecff-1jammy [5,084 kB] 2024-05-10T22:16:28.785 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../008-librbd1_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:28.816 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking librbd1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:29.107 INFO:teuthology.orchestra.run.smithi063.stdout:Get:101 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-2555-gf72fecff-1jammy [244 kB] 2024-05-10T22:16:29.116 INFO:teuthology.orchestra.run.smithi063.stdout:Get:102 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-2555-gf72fecff-1jammy [124 kB] 2024-05-10T22:16:29.120 INFO:teuthology.orchestra.run.smithi063.stdout:Get:103 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-2555-gf72fecff-1jammy [1,526 kB] 2024-05-10T22:16:29.233 INFO:teuthology.orchestra.run.smithi063.stdout:Get:104 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-2555-gf72fecff-1jammy [6,246 kB] 2024-05-10T22:16:29.261 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libcephfs2. 2024-05-10T22:16:29.288 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:29.328 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libcephfs2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:29.444 INFO:teuthology.orchestra.run.smithi152.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2555-gf72fecff-1jammy [121 kB] 2024-05-10T22:16:29.446 INFO:teuthology.orchestra.run.smithi152.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2555-gf72fecff-1jammy [38.9 kB] 2024-05-10T22:16:29.447 INFO:teuthology.orchestra.run.smithi152.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2555-gf72fecff-1jammy [13.4 MB] 2024-05-10T22:16:29.613 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-rados. 2024-05-10T22:16:29.628 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:29.662 INFO:teuthology.orchestra.run.smithi063.stdout:Get:105 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-2555-gf72fecff-1jammy [22.7 MB] 2024-05-10T22:16:29.680 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-rados (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:30.008 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-05-10T22:16:30.035 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:30.075 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-ceph-argparse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:30.242 INFO:teuthology.orchestra.run.smithi152.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2555-gf72fecff-1jammy [91.6 kB] 2024-05-10T22:16:30.302 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-cephfs. 2024-05-10T22:16:30.329 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:30.360 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-cephfs (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:30.663 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-ceph-common. 2024-05-10T22:16:30.690 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:30.730 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:30.800 INFO:teuthology.orchestra.run.smithi152.stdout:Fetched 180 MB in 14s (12.4 MB/s) 2024-05-10T22:16:30.962 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-05-10T22:16:30.966 INFO:teuthology.orchestra.run.smithi063.stdout:Get:106 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-2555-gf72fecff-1jammy [14.1 kB] 2024-05-10T22:16:30.967 INFO:teuthology.orchestra.run.smithi063.stdout:Get:107 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-2555-gf72fecff-1jammy [869 kB] 2024-05-10T22:16:30.984 INFO:teuthology.orchestra.run.smithi063.stdout:Get:108 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-2555-gf72fecff-1jammy [2,437 kB] 2024-05-10T22:16:31.041 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-wcwidth. 2024-05-10T22:16:31.050 INFO:teuthology.orchestra.run.smithi063.stdout:Get:109 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-2555-gf72fecff-1jammy [791 kB] 2024-05-10T22:16:31.062 INFO:teuthology.orchestra.run.smithi152.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 ... 165990 files and directories currently installed.) 2024-05-10T22:16:31.068 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-05-10T22:16:31.068 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-05-10T22:16:31.083 INFO:teuthology.orchestra.run.smithi063.stdout:Get:110 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-2555-gf72fecff-1jammy [148 kB] 2024-05-10T22:16:31.086 INFO:teuthology.orchestra.run.smithi063.stdout:Get:111 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-2555-gf72fecff-1jammy [2,331 kB] 2024-05-10T22:16:31.108 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-05-10T22:16:31.152 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-05-10T22:16:31.185 INFO:teuthology.orchestra.run.smithi063.stdout:Get:112 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-2555-gf72fecff-1jammy [8,625 kB] 2024-05-10T22:16:31.427 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-prettytable. 2024-05-10T22:16:31.454 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-05-10T22:16:31.494 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-05-10T22:16:31.504 INFO:teuthology.orchestra.run.smithi063.stdout:Get:113 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-2555-gf72fecff-1jammy [14.2 kB] 2024-05-10T22:16:31.504 INFO:teuthology.orchestra.run.smithi063.stdout:Get:114 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-2555-gf72fecff-1jammy [50.7 MB] 2024-05-10T22:16:31.539 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-05-10T22:16:31.565 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-05-10T22:16:31.606 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-05-10T22:16:31.755 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-rbd. 2024-05-10T22:16:31.781 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:31.821 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-rbd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:31.950 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-05-10T22:16:31.977 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-05-10T22:16:32.017 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-05-10T22:16:32.158 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-05-10T22:16:32.184 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-05-10T22:16:32.216 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-05-10T22:16:32.396 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-05-10T22:16:32.422 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:32.470 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:32.485 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-05-10T22:16:32.512 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-05-10T22:16:32.552 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-05-10T22:16:32.875 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-05-10T22:16:32.901 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:32.941 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:33.005 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-05-10T22:16:33.020 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-05-10T22:16:33.063 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-05-10T22:16:33.270 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-05-10T22:16:33.297 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:33.336 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:33.404 INFO:teuthology.orchestra.run.smithi063.stdout:Get:115 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-2555-gf72fecff-1jammy [121 kB] 2024-05-10T22:16:33.407 INFO:teuthology.orchestra.run.smithi063.stdout:Get:116 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-2555-gf72fecff-1jammy [38.9 kB] 2024-05-10T22:16:33.408 INFO:teuthology.orchestra.run.smithi063.stdout:Get:117 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-2555-gf72fecff-1jammy [13.4 MB] 2024-05-10T22:16:33.425 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package lua5.1. 2024-05-10T22:16:33.451 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-05-10T22:16:33.516 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-05-10T22:16:33.665 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-05-10T22:16:33.692 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-05-10T22:16:33.731 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-05-10T22:16:33.754 INFO:teuthology.orchestra.run.smithi063.stdout:Get:118 https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-2555-gf72fecff-1jammy [91.6 kB] 2024-05-10T22:16:33.803 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package lua-any. 2024-05-10T22:16:33.818 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-05-10T22:16:33.853 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking lua-any (27ubuntu1) ... 2024-05-10T22:16:34.043 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package librados2. 2024-05-10T22:16:34.070 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../007-librados2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:34.072 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package zip. 2024-05-10T22:16:34.087 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-05-10T22:16:34.109 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking librados2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:34.130 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking zip (3.0-12build2) ... 2024-05-10T22:16:34.344 INFO:teuthology.orchestra.run.smithi063.stdout:Fetched 180 MB in 18s (9,984 kB/s) 2024-05-10T22:16:34.450 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package unzip. 2024-05-10T22:16:34.476 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-05-10T22:16:34.516 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-05-10T22:16:34.517 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-05-10T22:16:34.575 INFO:teuthology.orchestra.run.smithi063.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 ... 165990 files and directories currently installed.) 2024-05-10T22:16:34.580 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-05-10T22:16:34.596 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package librbd1. 2024-05-10T22:16:34.623 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../008-librbd1_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:34.663 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking librbd1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:34.664 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-05-10T22:16:34.912 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package luarocks. 2024-05-10T22:16:34.938 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-05-10T22:16:34.943 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-05-10T22:16:34.970 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-05-10T22:16:34.979 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-05-10T22:16:35.001 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-05-10T22:16:35.083 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libcephfs2. 2024-05-10T22:16:35.110 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:35.149 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libcephfs2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:35.303 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package librgw2. 2024-05-10T22:16:35.321 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-05-10T22:16:35.329 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../025-librgw2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:35.348 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-05-10T22:16:35.361 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking librgw2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:35.387 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-05-10T22:16:35.435 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-rados. 2024-05-10T22:16:35.451 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:35.493 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-rados (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:35.849 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-05-10T22:16:35.876 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:35.905 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-rgw. 2024-05-10T22:16:35.924 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:35.932 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:35.980 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-rgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:36.022 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-05-10T22:16:36.049 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:36.088 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-ceph-argparse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:36.261 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-05-10T22:16:36.284 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:36.325 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package liboath0:amd64. 2024-05-10T22:16:36.327 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:36.333 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-cephfs. 2024-05-10T22:16:36.351 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-05-10T22:16:36.359 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:36.392 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-05-10T22:16:36.399 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-cephfs (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:36.678 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libradosstriper1. 2024-05-10T22:16:36.681 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-05-10T22:16:36.704 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:36.707 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-05-10T22:16:36.711 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-ceph-common. 2024-05-10T22:16:36.736 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libradosstriper1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:36.738 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:36.747 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:16:36.777 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:37.109 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-05-10T22:16:37.114 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-wcwidth. 2024-05-10T22:16:37.136 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-05-10T22:16:37.141 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-05-10T22:16:37.164 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-common. 2024-05-10T22:16:37.175 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-05-10T22:16:37.181 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-05-10T22:16:37.191 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:37.231 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:37.445 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package librados2. 2024-05-10T22:16:37.471 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../007-librados2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:37.501 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-prettytable. 2024-05-10T22:16:37.503 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking librados2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:37.527 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-05-10T22:16:37.567 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-05-10T22:16:37.820 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-rbd. 2024-05-10T22:16:37.835 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:37.870 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-rbd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:37.948 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package librbd1. 2024-05-10T22:16:37.974 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../008-librbd1_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:38.014 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking librbd1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:38.232 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-05-10T22:16:38.259 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-05-10T22:16:38.298 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-05-10T22:16:38.434 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libcephfs2. 2024-05-10T22:16:38.461 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:38.500 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libcephfs2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:38.585 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-05-10T22:16:38.611 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-05-10T22:16:38.645 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-base. 2024-05-10T22:16:38.651 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-05-10T22:16:38.671 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:38.721 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-base (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:38.761 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-rados. 2024-05-10T22:16:38.777 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../010-python3-rados_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:38.811 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-rados (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:38.937 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-05-10T22:16:38.953 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-05-10T22:16:38.988 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-05-10T22:16:39.106 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-05-10T22:16:39.133 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:39.173 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-ceph-argparse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:39.316 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-05-10T22:16:39.316 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package lua5.1. 2024-05-10T22:16:39.342 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-05-10T22:16:39.343 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-05-10T22:16:39.382 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-05-10T22:16:39.383 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-05-10T22:16:39.392 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-cephfs. 2024-05-10T22:16:39.407 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:39.441 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-cephfs (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:39.636 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-cheroot. 2024-05-10T22:16:39.661 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-05-10T22:16:39.693 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-05-10T22:16:39.711 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-ceph-common. 2024-05-10T22:16:39.711 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package lua-any. 2024-05-10T22:16:39.727 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-05-10T22:16:39.738 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:39.769 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking lua-any (27ubuntu1) ... 2024-05-10T22:16:39.777 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:39.988 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-05-10T22:16:40.014 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-05-10T22:16:40.022 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package zip. 2024-05-10T22:16:40.038 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-05-10T22:16:40.054 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-05-10T22:16:40.072 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking zip (3.0-12build2) ... 2024-05-10T22:16:40.114 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-wcwidth. 2024-05-10T22:16:40.141 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-05-10T22:16:40.181 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-05-10T22:16:40.357 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-jaraco.text. 2024-05-10T22:16:40.359 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package unzip. 2024-05-10T22:16:40.384 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-05-10T22:16:40.386 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-05-10T22:16:40.424 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-05-10T22:16:40.426 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-05-10T22:16:40.492 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-prettytable. 2024-05-10T22:16:40.518 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-05-10T22:16:40.558 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-05-10T22:16:40.735 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-05-10T22:16:40.761 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-05-10T22:16:40.794 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-rbd. 2024-05-10T22:16:40.802 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-05-10T22:16:40.810 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:40.830 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package luarocks. 2024-05-10T22:16:40.844 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-rbd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:40.857 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-05-10T22:16:40.897 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-05-10T22:16:41.055 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-tempora. 2024-05-10T22:16:41.081 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-05-10T22:16:41.113 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-05-10T22:16:41.139 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-05-10T22:16:41.166 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-05-10T22:16:41.208 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-05-10T22:16:41.439 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package librgw2. 2024-05-10T22:16:41.441 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-portend. 2024-05-10T22:16:41.466 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../025-librgw2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:41.467 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-05-10T22:16:41.485 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-05-10T22:16:41.501 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-05-10T22:16:41.505 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking librgw2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:41.507 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-05-10T22:16:41.543 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-05-10T22:16:41.819 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-05-10T22:16:41.821 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-05-10T22:16:41.837 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-05-10T22:16:41.845 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-05-10T22:16:41.871 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-05-10T22:16:41.885 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-05-10T22:16:42.067 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-rgw. 2024-05-10T22:16:42.082 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:42.125 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-rgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:42.155 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-cherrypy3. 2024-05-10T22:16:42.166 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package lua5.1. 2024-05-10T22:16:42.181 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-05-10T22:16:42.193 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-05-10T22:16:42.221 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-05-10T22:16:42.232 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-05-10T22:16:42.420 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package liboath0:amd64. 2024-05-10T22:16:42.446 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-05-10T22:16:42.478 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-05-10T22:16:42.525 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-natsort. 2024-05-10T22:16:42.552 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-05-10T22:16:42.560 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package lua-any. 2024-05-10T22:16:42.587 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-05-10T22:16:42.591 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-05-10T22:16:42.627 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking lua-any (27ubuntu1) ... 2024-05-10T22:16:42.798 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libradosstriper1. 2024-05-10T22:16:42.813 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:42.856 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libradosstriper1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:42.871 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package zip. 2024-05-10T22:16:42.898 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-05-10T22:16:42.903 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-logutils. 2024-05-10T22:16:42.930 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-05-10T22:16:42.954 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking zip (3.0-12build2) ... 2024-05-10T22:16:42.969 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-05-10T22:16:43.216 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package unzip. 2024-05-10T22:16:43.242 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-05-10T22:16:43.272 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-markupsafe. 2024-05-10T22:16:43.273 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-05-10T22:16:43.293 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-common. 2024-05-10T22:16:43.299 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-05-10T22:16:43.320 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:43.339 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-05-10T22:16:43.359 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:43.686 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package luarocks. 2024-05-10T22:16:43.712 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-05-10T22:16:43.752 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-05-10T22:16:43.817 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-mako. 2024-05-10T22:16:43.844 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-05-10T22:16:43.883 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-05-10T22:16:44.076 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package librgw2. 2024-05-10T22:16:44.092 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../025-librgw2_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:44.126 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking librgw2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:44.212 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-simplegeneric. 2024-05-10T22:16:44.239 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-05-10T22:16:44.278 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-05-10T22:16:44.581 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-singledispatch. 2024-05-10T22:16:44.608 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-05-10T22:16:44.648 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-05-10T22:16:44.670 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-rgw. 2024-05-10T22:16:44.687 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:44.728 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-rgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:44.849 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-base. 2024-05-10T22:16:44.876 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:44.925 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-base (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:44.925 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-webob. 2024-05-10T22:16:44.952 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-05-10T22:16:44.992 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-05-10T22:16:45.081 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package liboath0:amd64. 2024-05-10T22:16:45.108 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-05-10T22:16:45.147 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-05-10T22:16:45.320 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-waitress. 2024-05-10T22:16:45.347 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-05-10T22:16:45.382 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-05-10T22:16:45.442 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libradosstriper1. 2024-05-10T22:16:45.458 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:45.487 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-05-10T22:16:45.492 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libradosstriper1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:45.514 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-05-10T22:16:45.554 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-05-10T22:16:45.673 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-tempita. 2024-05-10T22:16:45.700 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-05-10T22:16:45.739 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-05-10T22:16:45.857 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-cheroot. 2024-05-10T22:16:45.862 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-common. 2024-05-10T22:16:45.884 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-05-10T22:16:45.889 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../029-ceph-common_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:45.924 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-05-10T22:16:45.928 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:46.051 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-paste. 2024-05-10T22:16:46.078 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-05-10T22:16:46.117 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-05-10T22:16:46.227 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-05-10T22:16:46.242 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-05-10T22:16:46.277 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-05-10T22:16:46.404 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-05-10T22:16:46.427 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-05-10T22:16:46.462 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-05-10T22:16:46.738 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-jaraco.text. 2024-05-10T22:16:46.740 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pastedeploy. 2024-05-10T22:16:46.765 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-05-10T22:16:46.767 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-05-10T22:16:46.806 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-05-10T22:16:46.813 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-05-10T22:16:47.117 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-05-10T22:16:47.118 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-webtest. 2024-05-10T22:16:47.143 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-05-10T22:16:47.145 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-05-10T22:16:47.183 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-05-10T22:16:47.184 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-05-10T22:16:47.308 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-base. 2024-05-10T22:16:47.335 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../030-ceph-base_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:47.384 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-base (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:47.494 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-tempora. 2024-05-10T22:16:47.496 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pecan. 2024-05-10T22:16:47.522 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-05-10T22:16:47.522 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-05-10T22:16:47.561 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-05-10T22:16:47.562 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-05-10T22:16:47.926 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-certifi. 2024-05-10T22:16:47.937 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-05-10T22:16:47.952 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-05-10T22:16:47.964 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-05-10T22:16:47.992 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-05-10T22:16:48.004 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-05-10T22:16:48.265 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-cheroot. 2024-05-10T22:16:48.280 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-05-10T22:16:48.328 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-idna. 2024-05-10T22:16:48.356 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-05-10T22:16:48.395 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-idna (3.3-1) ... 2024-05-10T22:16:48.556 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-05-10T22:16:48.632 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-portend. 2024-05-10T22:16:48.659 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-05-10T22:16:48.664 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-urllib3. 2024-05-10T22:16:48.691 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-05-10T22:16:48.698 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-05-10T22:16:48.722 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-05-10T22:16:49.002 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-05-10T22:16:49.028 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-05-10T22:16:49.068 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-05-10T22:16:49.260 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-05-10T22:16:49.287 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-05-10T22:16:49.355 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-cherrypy3. 2024-05-10T22:16:49.382 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-05-10T22:16:49.421 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-05-10T22:16:49.577 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-05-10T22:16:49.767 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-natsort. 2024-05-10T22:16:49.794 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-05-10T22:16:49.833 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-05-10T22:16:49.852 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-requests. 2024-05-10T22:16:49.862 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-jaraco.text. 2024-05-10T22:16:49.878 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-05-10T22:16:49.889 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-05-10T22:16:49.918 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-05-10T22:16:49.929 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-05-10T22:16:50.145 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-logutils. 2024-05-10T22:16:50.172 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-05-10T22:16:50.187 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-werkzeug. 2024-05-10T22:16:50.209 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-05-10T22:16:50.212 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-05-10T22:16:50.232 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-05-10T22:16:50.237 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-05-10T22:16:50.258 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-05-10T22:16:50.298 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-05-10T22:16:50.482 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-markupsafe. 2024-05-10T22:16:50.509 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-05-10T22:16:50.524 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-05-10T22:16:50.539 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:50.540 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-05-10T22:16:50.559 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-tempora. 2024-05-10T22:16:50.574 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:50.575 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-05-10T22:16:50.609 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-05-10T22:16:50.810 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-mako. 2024-05-10T22:16:50.836 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-05-10T22:16:50.876 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-05-10T22:16:50.904 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-portend. 2024-05-10T22:16:50.930 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-05-10T22:16:50.964 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-05-10T22:16:50.970 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-05-10T22:16:50.991 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:51.031 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:51.213 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-simplegeneric. 2024-05-10T22:16:51.240 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-05-10T22:16:51.273 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-05-10T22:16:51.279 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-05-10T22:16:51.307 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-05-10T22:16:51.308 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-bcrypt. 2024-05-10T22:16:51.324 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-05-10T22:16:51.339 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-05-10T22:16:51.358 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-05-10T22:16:51.568 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-singledispatch. 2024-05-10T22:16:51.584 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-05-10T22:16:51.618 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-05-10T22:16:51.637 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-openssl. 2024-05-10T22:16:51.651 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-cherrypy3. 2024-05-10T22:16:51.663 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-05-10T22:16:51.677 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-05-10T22:16:51.703 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-05-10T22:16:51.717 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-05-10T22:16:51.896 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-webob. 2024-05-10T22:16:51.923 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-05-10T22:16:51.962 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-05-10T22:16:52.037 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-natsort. 2024-05-10T22:16:52.048 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-mgr. 2024-05-10T22:16:52.064 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-05-10T22:16:52.074 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:52.104 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-05-10T22:16:52.114 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-mgr (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:52.324 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-waitress. 2024-05-10T22:16:52.351 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-05-10T22:16:52.396 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-logutils. 2024-05-10T22:16:52.402 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-05-10T22:16:52.422 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-05-10T22:16:52.456 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-05-10T22:16:52.509 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-mon. 2024-05-10T22:16:52.536 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:52.576 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-mon (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:52.669 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-tempita. 2024-05-10T22:16:52.684 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-05-10T22:16:52.719 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-05-10T22:16:52.768 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-markupsafe. 2024-05-10T22:16:52.795 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-05-10T22:16:52.834 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-05-10T22:16:52.980 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-paste. 2024-05-10T22:16:53.007 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-05-10T22:16:53.047 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-05-10T22:16:53.145 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-mako. 2024-05-10T22:16:53.172 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-05-10T22:16:53.188 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-osd. 2024-05-10T22:16:53.212 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-05-10T22:16:53.215 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:53.254 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-osd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:53.367 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-05-10T22:16:53.382 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-05-10T22:16:53.433 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-05-10T22:16:53.548 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-simplegeneric. 2024-05-10T22:16:53.575 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-05-10T22:16:53.615 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-05-10T22:16:53.703 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pastedeploy. 2024-05-10T22:16:53.729 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-05-10T22:16:53.769 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-05-10T22:16:53.943 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-singledispatch. 2024-05-10T22:16:53.969 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-05-10T22:16:54.009 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-05-10T22:16:54.073 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-webtest. 2024-05-10T22:16:54.099 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-05-10T22:16:54.139 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-05-10T22:16:54.253 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-webob. 2024-05-10T22:16:54.280 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-05-10T22:16:54.312 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-05-10T22:16:54.449 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph. 2024-05-10T22:16:54.451 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pecan. 2024-05-10T22:16:54.476 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../066-ceph_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:54.477 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-05-10T22:16:54.516 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:54.517 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-05-10T22:16:54.606 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-waitress. 2024-05-10T22:16:54.633 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-05-10T22:16:54.693 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-05-10T22:16:54.844 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-fuse. 2024-05-10T22:16:54.871 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:54.889 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-certifi. 2024-05-10T22:16:54.910 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:54.916 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-05-10T22:16:54.955 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-05-10T22:16:54.992 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-tempita. 2024-05-10T22:16:55.019 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-05-10T22:16:55.059 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-05-10T22:16:55.275 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-idna. 2024-05-10T22:16:55.280 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-mds. 2024-05-10T22:16:55.302 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-05-10T22:16:55.307 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:55.342 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-idna (3.3-1) ... 2024-05-10T22:16:55.347 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-mds (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:55.370 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-paste. 2024-05-10T22:16:55.397 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-05-10T22:16:55.437 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-05-10T22:16:55.653 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-urllib3. 2024-05-10T22:16:55.680 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-05-10T22:16:55.720 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-05-10T22:16:55.742 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package cephadm. 2024-05-10T22:16:55.756 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-05-10T22:16:55.768 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../069-cephadm_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:55.783 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-05-10T22:16:55.808 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:55.822 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-05-10T22:16:56.031 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-requests. 2024-05-10T22:16:56.058 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-05-10T22:16:56.098 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-05-10T22:16:56.125 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pastedeploy. 2024-05-10T22:16:56.136 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-asyncssh. 2024-05-10T22:16:56.152 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-05-10T22:16:56.163 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-05-10T22:16:56.192 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-05-10T22:16:56.202 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-05-10T22:16:56.409 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-werkzeug. 2024-05-10T22:16:56.437 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-05-10T22:16:56.476 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-05-10T22:16:56.478 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-webtest. 2024-05-10T22:16:56.505 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-05-10T22:16:56.531 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python-babel-localedata. 2024-05-10T22:16:56.545 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-05-10T22:16:56.558 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-05-10T22:16:56.597 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-05-10T22:16:56.754 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-05-10T22:16:56.781 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:56.826 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:56.864 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pecan. 2024-05-10T22:16:56.891 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-05-10T22:16:56.931 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-05-10T22:16:57.294 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-certifi. 2024-05-10T22:16:57.321 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-05-10T22:16:57.359 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-05-10T22:16:57.360 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-05-10T22:16:57.386 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:57.425 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:57.627 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-babel. 2024-05-10T22:16:57.654 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-05-10T22:16:57.655 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-idna. 2024-05-10T22:16:57.681 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-05-10T22:16:57.694 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-05-10T22:16:57.695 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-bcrypt. 2024-05-10T22:16:57.712 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-05-10T22:16:57.712 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-idna (3.3-1) ... 2024-05-10T22:16:57.745 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-05-10T22:16:57.965 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-urllib3. 2024-05-10T22:16:57.992 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-05-10T22:16:58.023 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-05-10T22:16:58.030 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-jinja2. 2024-05-10T22:16:58.031 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-openssl. 2024-05-10T22:16:58.057 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-05-10T22:16:58.058 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-05-10T22:16:58.097 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-05-10T22:16:58.098 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-05-10T22:16:58.293 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-requests. 2024-05-10T22:16:58.317 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-05-10T22:16:58.352 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-05-10T22:16:58.433 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-05-10T22:16:58.460 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-mgr. 2024-05-10T22:16:58.460 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:58.487 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:58.499 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:58.526 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-mgr (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:58.621 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-werkzeug. 2024-05-10T22:16:58.648 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-05-10T22:16:58.690 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-05-10T22:16:58.837 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-repoze.lru. 2024-05-10T22:16:58.863 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-05-10T22:16:58.903 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-05-10T22:16:58.904 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-mon. 2024-05-10T22:16:58.931 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:58.971 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-mon (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:58.982 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-05-10T22:16:59.009 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:59.048 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-mgr-modules-core (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:59.206 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-routes. 2024-05-10T22:16:59.232 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-05-10T22:16:59.272 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-05-10T22:16:59.445 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-05-10T22:16:59.472 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:59.512 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:59.566 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-osd. 2024-05-10T22:16:59.593 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:16:59.609 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-05-10T22:16:59.632 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-osd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:59.636 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:16:59.675 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:16:59.822 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-bcrypt. 2024-05-10T22:16:59.849 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-05-10T22:16:59.889 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-05-10T22:17:00.192 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-openssl. 2024-05-10T22:17:00.219 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-05-10T22:17:00.258 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-05-10T22:17:00.545 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-mgr. 2024-05-10T22:17:00.572 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:00.602 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-mgr (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:00.653 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph. 2024-05-10T22:17:00.669 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../066-ceph_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:00.711 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:00.956 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-mon. 2024-05-10T22:17:00.964 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-05-10T22:17:00.980 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-05-10T22:17:00.982 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:01.022 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-05-10T22:17:01.022 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-mon (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:01.023 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-fuse. 2024-05-10T22:17:01.049 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:01.089 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:01.484 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-mds. 2024-05-10T22:17:01.509 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-joblib. 2024-05-10T22:17:01.512 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:01.536 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-05-10T22:17:01.550 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-mds (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:01.575 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-05-10T22:17:01.659 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-osd. 2024-05-10T22:17:01.686 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:01.725 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-osd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:01.946 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-05-10T22:17:01.954 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package cephadm. 2024-05-10T22:17:01.973 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-05-10T22:17:01.981 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../069-cephadm_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:02.012 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-05-10T22:17:02.020 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:02.315 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-sklearn. 2024-05-10T22:17:02.342 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-05-10T22:17:02.348 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-asyncssh. 2024-05-10T22:17:02.375 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-05-10T22:17:02.381 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-05-10T22:17:02.414 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-05-10T22:17:02.753 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph. 2024-05-10T22:17:02.770 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python-babel-localedata. 2024-05-10T22:17:02.770 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../066-ceph_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:02.795 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-05-10T22:17:02.803 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:02.834 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:03.064 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-fuse. 2024-05-10T22:17:03.080 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:03.082 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-05-10T22:17:03.111 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:03.114 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:03.242 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:03.467 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-mds. 2024-05-10T22:17:03.494 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:03.533 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-mds (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:03.898 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-babel. 2024-05-10T22:17:03.926 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-05-10T22:17:03.964 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:04.050 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package cephadm. 2024-05-10T22:17:04.077 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../069-cephadm_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:04.145 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:04.239 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-cachetools. 2024-05-10T22:17:04.266 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-05-10T22:17:04.284 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-jinja2. 2024-05-10T22:17:04.305 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-05-10T22:17:04.311 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-05-10T22:17:04.351 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-05-10T22:17:04.447 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-asyncssh. 2024-05-10T22:17:04.464 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-05-10T22:17:04.506 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-05-10T22:17:04.687 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-05-10T22:17:04.714 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:04.754 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:04.825 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python-babel-localedata. 2024-05-10T22:17:04.851 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-05-10T22:17:04.866 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pyasn1. 2024-05-10T22:17:04.891 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:04.894 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-05-10T22:17:04.933 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-05-10T22:17:05.082 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-repoze.lru. 2024-05-10T22:17:05.109 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-05-10T22:17:05.148 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-05-10T22:17:05.261 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-05-10T22:17:05.289 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-05-10T22:17:05.336 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-05-10T22:17:05.452 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-routes. 2024-05-10T22:17:05.478 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-05-10T22:17:05.518 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-05-10T22:17:05.631 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-rsa. 2024-05-10T22:17:05.658 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-05-10T22:17:05.697 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-rsa (4.8-1) ... 2024-05-10T22:17:05.863 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-05-10T22:17:05.890 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:05.921 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-babel. 2024-05-10T22:17:05.929 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:05.949 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-05-10T22:17:05.987 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:06.001 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-google-auth. 2024-05-10T22:17:06.028 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-05-10T22:17:06.067 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-05-10T22:17:06.324 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-jinja2. 2024-05-10T22:17:06.351 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-05-10T22:17:06.390 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-05-10T22:17:06.396 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-05-10T22:17:06.424 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-05-10T22:17:06.462 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-05-10T22:17:06.718 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-05-10T22:17:06.732 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-websocket. 2024-05-10T22:17:06.745 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:06.760 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-05-10T22:17:06.784 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-mgr-cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:06.882 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-05-10T22:17:07.186 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-kubernetes. 2024-05-10T22:17:07.213 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-05-10T22:17:07.252 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-05-10T22:17:07.255 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-repoze.lru. 2024-05-10T22:17:07.282 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-05-10T22:17:07.321 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-05-10T22:17:07.435 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-05-10T22:17:07.462 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-05-10T22:17:07.501 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-05-10T22:17:07.590 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-routes. 2024-05-10T22:17:07.618 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-05-10T22:17:07.648 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-05-10T22:17:07.908 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-05-10T22:17:07.936 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:07.963 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-joblib. 2024-05-10T22:17:07.974 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:07.990 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-05-10T22:17:08.001 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-05-10T22:17:08.022 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-05-10T22:17:08.029 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:08.068 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-mgr-dashboard (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:08.311 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libonig5:amd64. 2024-05-10T22:17:08.338 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-05-10T22:17:08.377 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-05-10T22:17:08.417 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-05-10T22:17:08.444 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-05-10T22:17:08.483 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-05-10T22:17:08.722 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libjq1:amd64. 2024-05-10T22:17:08.750 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-05-10T22:17:08.788 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-05-10T22:17:08.794 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-sklearn. 2024-05-10T22:17:08.822 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-05-10T22:17:08.861 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-05-10T22:17:09.033 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package jq. 2024-05-10T22:17:09.049 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-05-10T22:17:09.099 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-05-10T22:17:09.248 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-05-10T22:17:09.276 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-05-10T22:17:09.323 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-05-10T22:17:09.343 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package socat. 2024-05-10T22:17:09.360 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-05-10T22:17:09.402 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-05-10T22:17:09.595 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-05-10T22:17:09.624 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:09.672 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package xmlstarlet. 2024-05-10T22:17:09.688 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-05-10T22:17:09.722 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-05-10T22:17:09.755 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:09.818 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-joblib. 2024-05-10T22:17:09.845 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-05-10T22:17:09.884 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-05-10T22:17:10.110 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-test. 2024-05-10T22:17:10.126 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:10.167 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-test (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:10.246 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-05-10T22:17:10.274 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-05-10T22:17:10.312 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-05-10T22:17:10.623 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-sklearn. 2024-05-10T22:17:10.651 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-05-10T22:17:10.690 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-05-10T22:17:10.760 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-cachetools. 2024-05-10T22:17:10.787 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-05-10T22:17:10.826 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-05-10T22:17:11.129 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pyasn1. 2024-05-10T22:17:11.157 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-05-10T22:17:11.195 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-05-10T22:17:11.348 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-05-10T22:17:11.364 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:11.483 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:11.532 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-05-10T22:17:11.560 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-05-10T22:17:11.599 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-05-10T22:17:11.894 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-rsa. 2024-05-10T22:17:11.922 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-05-10T22:17:11.960 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-rsa (4.8-1) ... 2024-05-10T22:17:12.239 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-google-auth. 2024-05-10T22:17:12.267 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-05-10T22:17:12.297 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-05-10T22:17:12.428 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-cachetools. 2024-05-10T22:17:12.456 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-05-10T22:17:12.464 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package ceph-volume. 2024-05-10T22:17:12.492 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:12.494 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-05-10T22:17:12.522 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking ceph-volume (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:12.772 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pyasn1. 2024-05-10T22:17:12.784 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-05-10T22:17:12.802 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-05-10T22:17:12.811 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-05-10T22:17:12.826 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package libcephfs-dev. 2024-05-10T22:17:12.838 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-05-10T22:17:12.850 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-05-10T22:17:12.853 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:12.905 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking libcephfs-dev (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:13.125 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-05-10T22:17:13.142 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-05-10T22:17:13.162 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-websocket. 2024-05-10T22:17:13.175 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-05-10T22:17:13.190 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-05-10T22:17:13.221 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package lua-socket:amd64. 2024-05-10T22:17:13.228 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-05-10T22:17:13.249 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-05-10T22:17:13.287 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-05-10T22:17:13.453 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-rsa. 2024-05-10T22:17:13.481 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-05-10T22:17:13.511 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-rsa (4.8-1) ... 2024-05-10T22:17:13.549 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-kubernetes. 2024-05-10T22:17:13.577 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-05-10T22:17:13.606 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-05-10T22:17:13.617 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package lua-sec:amd64. 2024-05-10T22:17:13.645 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-05-10T22:17:13.683 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-05-10T22:17:13.831 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-google-auth. 2024-05-10T22:17:13.859 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-05-10T22:17:13.923 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-05-10T22:17:14.038 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package nvme-cli. 2024-05-10T22:17:14.066 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-05-10T22:17:14.104 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-05-10T22:17:14.243 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-05-10T22:17:14.270 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-05-10T22:17:14.309 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-05-10T22:17:14.312 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-05-10T22:17:14.329 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:14.371 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:14.509 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package pkg-config. 2024-05-10T22:17:14.537 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-05-10T22:17:14.576 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-05-10T22:17:14.699 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libonig5:amd64. 2024-05-10T22:17:14.726 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-05-10T22:17:14.782 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-05-10T22:17:14.829 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-05-10T22:17:14.846 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-05-10T22:17:14.862 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-websocket. 2024-05-10T22:17:14.887 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-05-10T22:17:14.890 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-05-10T22:17:14.928 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-05-10T22:17:15.077 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libjq1:amd64. 2024-05-10T22:17:15.105 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-05-10T22:17:15.135 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-05-10T22:17:15.248 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-kubernetes. 2024-05-10T22:17:15.273 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-iniconfig. 2024-05-10T22:17:15.276 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-05-10T22:17:15.290 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-05-10T22:17:15.314 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-05-10T22:17:15.332 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-05-10T22:17:15.405 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package jq. 2024-05-10T22:17:15.433 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-05-10T22:17:15.471 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-05-10T22:17:15.601 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pastescript. 2024-05-10T22:17:15.629 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-05-10T22:17:15.668 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-05-10T22:17:15.724 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package socat. 2024-05-10T22:17:15.740 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-05-10T22:17:15.774 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-05-10T22:17:15.988 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pluggy. 2024-05-10T22:17:15.995 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-05-10T22:17:16.016 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-05-10T22:17:16.023 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:16.054 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-05-10T22:17:16.060 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package xmlstarlet. 2024-05-10T22:17:16.061 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:16.077 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-05-10T22:17:16.110 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-05-10T22:17:16.366 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-psutil. 2024-05-10T22:17:16.389 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libonig5:amd64. 2024-05-10T22:17:16.394 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-05-10T22:17:16.417 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-05-10T22:17:16.432 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-05-10T22:17:16.455 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-05-10T22:17:16.464 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-test. 2024-05-10T22:17:16.481 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:16.523 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-test (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:16.725 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libjq1:amd64. 2024-05-10T22:17:16.753 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-05-10T22:17:16.783 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-05-10T22:17:16.802 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-py. 2024-05-10T22:17:16.830 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-05-10T22:17:16.868 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-py (1.10.0-1) ... 2024-05-10T22:17:17.077 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package jq. 2024-05-10T22:17:17.094 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-05-10T22:17:17.135 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-05-10T22:17:17.189 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pygments. 2024-05-10T22:17:17.217 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-05-10T22:17:17.255 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-05-10T22:17:17.389 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package socat. 2024-05-10T22:17:17.416 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-05-10T22:17:17.455 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-05-10T22:17:17.726 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pyinotify. 2024-05-10T22:17:17.754 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-05-10T22:17:17.758 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package xmlstarlet. 2024-05-10T22:17:17.774 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-05-10T22:17:17.792 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-05-10T22:17:17.816 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-05-10T22:17:18.104 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-toml. 2024-05-10T22:17:18.131 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-05-10T22:17:18.155 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-test. 2024-05-10T22:17:18.170 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-05-10T22:17:18.172 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../097-ceph-test_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:18.213 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-test (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:18.415 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-pytest. 2024-05-10T22:17:18.440 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-05-10T22:17:18.473 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-05-10T22:17:18.827 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package python3-simplejson. 2024-05-10T22:17:18.853 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package ceph-volume. 2024-05-10T22:17:18.854 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-05-10T22:17:18.881 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:18.893 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-05-10T22:17:18.911 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking ceph-volume (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:19.171 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-05-10T22:17:19.199 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-05-10T22:17:19.231 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package libcephfs-dev. 2024-05-10T22:17:19.237 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-05-10T22:17:19.259 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:19.298 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking libcephfs-dev (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:19.576 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package lua-socket:amd64. 2024-05-10T22:17:19.603 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-05-10T22:17:19.643 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-05-10T22:17:19.956 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package lua-sec:amd64. 2024-05-10T22:17:19.967 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package radosgw. 2024-05-10T22:17:19.983 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-05-10T22:17:19.994 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../116-radosgw_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:20.022 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-05-10T22:17:20.033 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking radosgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:20.402 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package nvme-cli. 2024-05-10T22:17:20.429 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-05-10T22:17:20.468 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-05-10T22:17:20.509 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package ceph-volume. 2024-05-10T22:17:20.537 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-2555-gf72fecff-1jammy_all.deb ... 2024-05-10T22:17:20.578 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking ceph-volume (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:20.871 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package libcephfs-dev. 2024-05-10T22:17:20.886 INFO:teuthology.orchestra.run.smithi169.stdout:Selecting previously unselected package rbd-fuse. 2024-05-10T22:17:20.887 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:20.914 INFO:teuthology.orchestra.run.smithi169.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:20.929 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking libcephfs-dev (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:20.931 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package pkg-config. 2024-05-10T22:17:20.952 INFO:teuthology.orchestra.run.smithi169.stdout:Unpacking rbd-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:20.959 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-05-10T22:17:20.998 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-05-10T22:17:21.226 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-05-10T22:17:21.242 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-05-10T22:17:21.248 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package lua-socket:amd64. 2024-05-10T22:17:21.265 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-05-10T22:17:21.277 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-05-10T22:17:21.284 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-05-10T22:17:21.315 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-05-10T22:17:21.524 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-05-10T22:17:21.651 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-05-10T22:17:21.652 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package lua-sec:amd64. 2024-05-10T22:17:21.681 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-05-10T22:17:21.713 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-iniconfig. 2024-05-10T22:17:21.719 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-05-10T22:17:21.740 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-05-10T22:17:21.771 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-05-10T22:17:21.938 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-05-10T22:17:22.048 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package nvme-cli. 2024-05-10T22:17:22.049 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pastescript. 2024-05-10T22:17:22.077 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-05-10T22:17:22.077 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-05-10T22:17:22.106 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-05-10T22:17:22.115 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-05-10T22:17:22.291 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-05-10T22:17:22.436 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pluggy. 2024-05-10T22:17:22.463 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-05-10T22:17:22.502 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-05-10T22:17:22.527 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package pkg-config. 2024-05-10T22:17:22.556 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-05-10T22:17:22.585 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-05-10T22:17:22.727 INFO:teuthology.orchestra.run.smithi169.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-05-10T22:17:22.814 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-psutil. 2024-05-10T22:17:22.830 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-05-10T22:17:22.836 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:22.841 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-05-10T22:17:22.858 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-05-10T22:17:22.880 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-05-10T22:17:22.896 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-05-10T22:17:23.308 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-iniconfig. 2024-05-10T22:17:23.336 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-05-10T22:17:23.374 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-05-10T22:17:23.420 INFO:teuthology.orchestra.run.smithi169.stdout:Adding system user cephadm....done 2024-05-10T22:17:23.500 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-py. 2024-05-10T22:17:23.527 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-05-10T22:17:23.566 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-py (1.10.0-1) ... 2024-05-10T22:17:23.585 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-05-10T22:17:23.644 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pastescript. 2024-05-10T22:17:23.672 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-05-10T22:17:23.710 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-05-10T22:17:23.895 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pygments. 2024-05-10T22:17:23.922 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-05-10T22:17:23.961 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-05-10T22:17:24.022 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pluggy. 2024-05-10T22:17:24.050 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-05-10T22:17:24.097 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-05-10T22:17:24.237 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-05-10T22:17:24.416 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-psutil. 2024-05-10T22:17:24.424 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pyinotify. 2024-05-10T22:17:24.445 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-05-10T22:17:24.451 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-05-10T22:17:24.482 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-05-10T22:17:24.488 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-05-10T22:17:24.490 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-05-10T22:17:24.589 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-05-10T22:17:24.802 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-py. 2024-05-10T22:17:24.818 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-toml. 2024-05-10T22:17:24.830 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-05-10T22:17:24.840 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-05-10T22:17:24.846 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-05-10T22:17:24.868 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-py (1.10.0-1) ... 2024-05-10T22:17:24.885 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-05-10T22:17:25.083 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-05-10T22:17:25.188 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pygments. 2024-05-10T22:17:25.204 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-pytest. 2024-05-10T22:17:25.209 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-py (1.10.0-1) ... 2024-05-10T22:17:25.217 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-05-10T22:17:25.232 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-05-10T22:17:25.254 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-05-10T22:17:25.271 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-05-10T22:17:25.511 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-05-10T22:17:25.616 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package python3-simplejson. 2024-05-10T22:17:25.644 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-05-10T22:17:25.682 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-05-10T22:17:25.709 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pyinotify. 2024-05-10T22:17:25.737 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-05-10T22:17:25.775 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-05-10T22:17:25.897 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-05-10T22:17:25.961 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-05-10T22:17:25.988 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-05-10T22:17:26.027 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-05-10T22:17:26.036 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-toml. 2024-05-10T22:17:26.052 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-05-10T22:17:26.086 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-05-10T22:17:26.140 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-05-10T22:17:26.414 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-pytest. 2024-05-10T22:17:26.415 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-05-10T22:17:26.441 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-05-10T22:17:26.488 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-05-10T22:17:26.642 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-05-10T22:17:26.764 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package radosgw. 2024-05-10T22:17:26.792 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../116-radosgw_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:26.831 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking radosgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:26.842 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package python3-simplejson. 2024-05-10T22:17:26.870 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-05-10T22:17:26.893 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-05-10T22:17:26.908 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-05-10T22:17:27.177 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-05-10T22:17:27.205 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-05-10T22:17:27.219 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-05-10T22:17:27.244 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-05-10T22:17:27.471 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-ceph-argparse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:27.634 INFO:teuthology.orchestra.run.smithi152.stdout:Selecting previously unselected package rbd-fuse. 2024-05-10T22:17:27.650 INFO:teuthology.orchestra.run.smithi152.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:27.684 INFO:teuthology.orchestra.run.smithi152.stdout:Unpacking rbd-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:27.713 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-05-10T22:17:27.814 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-05-10T22:17:27.915 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package radosgw. 2024-05-10T22:17:27.915 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-05-10T22:17:27.943 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../116-radosgw_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:27.963 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-05-10T22:17:27.981 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking radosgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:28.025 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-05-10T22:17:28.222 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-05-10T22:17:28.284 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-05-10T22:17:28.382 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-05-10T22:17:28.647 INFO:teuthology.orchestra.run.smithi169.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-05-10T22:17:28.650 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-05-10T22:17:28.673 INFO:teuthology.orchestra.run.smithi169.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-05-10T22:17:28.738 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-05-10T22:17:28.817 INFO:teuthology.orchestra.run.smithi063.stdout:Selecting previously unselected package rbd-fuse. 2024-05-10T22:17:28.845 INFO:teuthology.orchestra.run.smithi063.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-2555-gf72fecff-1jammy_amd64.deb ... 2024-05-10T22:17:28.880 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-05-10T22:17:28.883 INFO:teuthology.orchestra.run.smithi063.stdout:Unpacking rbd-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:28.971 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-05-10T22:17:29.173 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-05-10T22:17:29.223 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:29.349 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-05-10T22:17:29.391 INFO:teuthology.orchestra.run.smithi152.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-05-10T22:17:29.451 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:29.455 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-05-10T22:17:29.581 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-05-10T22:17:29.617 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-05-10T22:17:29.851 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-05-10T22:17:29.885 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-05-10T22:17:29.917 INFO:teuthology.orchestra.run.smithi152.stdout:Adding system user cephadm....done 2024-05-10T22:17:30.040 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-05-10T22:17:30.149 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-05-10T22:17:30.186 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up zip (3.0-12build2) ... 2024-05-10T22:17:30.316 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-05-10T22:17:30.320 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-05-10T22:17:30.551 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-05-10T22:17:30.556 INFO:teuthology.orchestra.run.smithi063.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-05-10T22:17:30.624 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:30.652 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-05-10T22:17:30.904 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-05-10T22:17:31.014 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-05-10T22:17:31.140 INFO:teuthology.orchestra.run.smithi063.stdout:Adding system user cephadm....done 2024-05-10T22:17:31.180 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-05-10T22:17:31.265 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-05-10T22:17:31.288 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-05-10T22:17:31.306 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-py (1.10.0-1) ... 2024-05-10T22:17:31.366 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-05-10T22:17:31.492 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-05-10T22:17:31.556 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-05-10T22:17:31.608 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-05-10T22:17:31.793 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-05-10T22:17:31.807 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-05-10T22:17:31.933 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-05-10T22:17:31.985 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-05-10T22:17:32.178 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-05-10T22:17:32.201 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-05-10T22:17:32.236 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-05-10T22:17:32.429 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-05-10T22:17:32.452 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-05-10T22:17:32.521 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-05-10T22:17:32.595 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-py (1.10.0-1) ... 2024-05-10T22:17:32.781 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-05-10T22:17:32.781 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-05-10T22:17:32.896 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-05-10T22:17:33.049 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-05-10T22:17:33.049 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-05-10T22:17:33.265 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-05-10T22:17:33.308 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-05-10T22:17:33.392 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-05-10T22:17:33.525 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-05-10T22:17:33.559 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-ceph-argparse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:33.643 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-05-10T22:17:33.769 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:33.809 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-05-10T22:17:33.854 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-05-10T22:17:33.980 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-05-10T22:17:34.052 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-05-10T22:17:34.071 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-idna (3.3-1) ... 2024-05-10T22:17:34.106 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-05-10T22:17:34.231 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-05-10T22:17:34.303 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-05-10T22:17:34.372 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-05-10T22:17:34.482 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-05-10T22:17:34.571 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-05-10T22:17:34.830 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-ceph-argparse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:34.881 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-05-10T22:17:34.914 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-05-10T22:17:34.969 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-05-10T22:17:35.111 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-05-10T22:17:35.190 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-05-10T22:17:35.315 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-05-10T22:17:35.458 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-05-10T22:17:35.488 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:35.544 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-05-10T22:17:35.584 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-05-10T22:17:35.613 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-05-10T22:17:35.764 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:35.843 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-05-10T22:17:35.890 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-05-10T22:17:35.898 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-toml (0.10.2-1) ... 2024-05-10T22:17:36.157 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-05-10T22:17:36.251 INFO:teuthology.orchestra.run.smithi063.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-05-10T22:17:36.282 INFO:teuthology.orchestra.run.smithi063.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-05-10T22:17:36.338 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-05-10T22:17:36.447 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-05-10T22:17:36.458 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-05-10T22:17:36.458 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up zip (3.0-12build2) ... 2024-05-10T22:17:36.567 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-05-10T22:17:36.584 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-05-10T22:17:36.693 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-05-10T22:17:36.807 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:36.933 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-05-10T22:17:37.028 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-05-10T22:17:37.203 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-05-10T22:17:37.234 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-05-10T22:17:37.271 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-05-10T22:17:37.462 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-05-10T22:17:37.509 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-05-10T22:17:37.513 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:37.588 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-05-10T22:17:37.639 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-05-10T22:17:37.722 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-05-10T22:17:37.802 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up zip (3.0-12build2) ... 2024-05-10T22:17:37.903 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-05-10T22:17:37.941 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-05-10T22:17:38.015 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-05-10T22:17:38.200 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-05-10T22:17:38.416 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-05-10T22:17:38.468 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-05-10T22:17:38.664 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-05-10T22:17:38.719 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-05-10T22:17:38.867 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-05-10T22:17:38.923 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-05-10T22:17:38.954 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-05-10T22:17:39.041 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-05-10T22:17:39.167 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-05-10T22:17:39.204 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-05-10T22:17:39.252 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-05-10T22:17:39.331 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-05-10T22:17:39.476 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-05-10T22:17:39.553 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-05-10T22:17:39.615 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-05-10T22:17:39.741 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-05-10T22:17:39.868 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-05-10T22:17:39.905 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-05-10T22:17:40.050 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-05-10T22:17:40.119 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-05-10T22:17:40.189 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-05-10T22:17:40.315 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:40.377 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-05-10T22:17:40.504 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-05-10T22:17:40.616 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-idna (3.3-1) ... 2024-05-10T22:17:40.636 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-05-10T22:17:40.745 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-05-10T22:17:40.806 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-05-10T22:17:40.879 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:40.933 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-05-10T22:17:40.969 INFO:teuthology.orchestra.run.smithi169.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-05-10T22:17:41.149 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-05-10T22:17:41.206 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-05-10T22:17:41.349 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-05-10T22:17:41.408 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-05-10T22:17:41.559 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:41.742 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-05-10T22:17:41.852 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-idna (3.3-1) ... 2024-05-10T22:17:42.002 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up lua-any (27ubuntu1) ... 2024-05-10T22:17:42.089 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-05-10T22:17:42.127 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-portend (3.0.0-1) ... 2024-05-10T22:17:42.194 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-05-10T22:17:42.349 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:42.378 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:42.483 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-toml (0.10.2-1) ... 2024-05-10T22:17:42.496 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-05-10T22:17:42.725 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-05-10T22:17:42.835 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-05-10T22:17:42.839 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-05-10T22:17:42.944 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-05-10T22:17:43.132 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-05-10T22:17:43.245 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-05-10T22:17:43.417 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-05-10T22:17:43.425 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-05-10T22:17:43.505 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-05-10T22:17:43.542 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-rsa (4.8-1) ... 2024-05-10T22:17:43.676 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:43.756 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:43.785 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-toml (0.10.2-1) ... 2024-05-10T22:17:43.835 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-05-10T22:17:43.881 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-05-10T22:17:44.028 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-05-10T22:17:44.119 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-05-10T22:17:44.154 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-05-10T22:17:44.183 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-05-10T22:17:44.263 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-05-10T22:17:44.417 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-05-10T22:17:44.456 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-05-10T22:17:44.590 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-05-10T22:17:44.660 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-05-10T22:17:44.841 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-05-10T22:17:44.866 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-05-10T22:17:44.911 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-05-10T22:17:45.133 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:45.134 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-05-10T22:17:45.195 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-05-10T22:17:45.251 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-05-10T22:17:45.478 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-05-10T22:17:45.480 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-05-10T22:17:45.536 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-05-10T22:17:45.596 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up librados2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:45.605 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-05-10T22:17:45.697 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:45.787 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-05-10T22:17:45.831 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-05-10T22:17:45.890 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-05-10T22:17:46.016 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-05-10T22:17:46.046 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-05-10T22:17:46.168 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libcephfs2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:46.289 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-05-10T22:17:46.293 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libradosstriper1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:46.309 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-05-10T22:17:46.420 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-05-10T22:17:46.523 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-05-10T22:17:46.585 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-05-10T22:17:46.713 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up librbd1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:46.783 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-05-10T22:17:46.827 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-05-10T22:17:46.831 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-mgr-modules-core (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:46.909 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-05-10T22:17:46.957 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:46.962 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-05-10T22:17:47.088 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:47.169 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-05-10T22:17:47.169 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-05-10T22:17:47.176 INFO:teuthology.orchestra.run.smithi152.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-05-10T22:17:47.210 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-05-10T22:17:47.336 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-05-10T22:17:47.414 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-05-10T22:17:47.540 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-05-10T22:17:47.628 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-05-10T22:17:47.666 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up libcephfs-dev (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:47.792 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-rados (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:47.910 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up librgw2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:47.916 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-05-10T22:17:47.979 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-05-10T22:17:48.027 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-05-10T22:17:48.159 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up lua-any (27ubuntu1) ... 2024-05-10T22:17:48.247 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-05-10T22:17:48.260 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-portend (3.0.0-1) ... 2024-05-10T22:17:48.373 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-05-10T22:17:48.499 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-05-10T22:17:48.536 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:48.589 INFO:teuthology.orchestra.run.smithi063.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-05-10T22:17:48.662 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-05-10T22:17:48.851 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-05-10T22:17:48.977 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-05-10T22:17:48.988 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-05-10T22:17:49.289 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-rbd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:49.314 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-05-10T22:17:49.378 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-05-10T22:17:49.415 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up rbd-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:49.541 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-rgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:49.599 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-05-10T22:17:49.646 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up lua-any (27ubuntu1) ... 2024-05-10T22:17:49.667 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up python3-cephfs (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:49.724 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-rsa (4.8-1) ... 2024-05-10T22:17:49.771 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-portend (3.0.0-1) ... 2024-05-10T22:17:49.802 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:49.992 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-05-10T22:17:50.031 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-05-10T22:17:50.157 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-05-10T22:17:50.243 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-05-10T22:17:50.311 INFO:teuthology.orchestra.run.smithi169.stdout:Adding group ceph....done 2024-05-10T22:17:50.475 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-05-10T22:17:50.588 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-05-10T22:17:50.688 INFO:teuthology.orchestra.run.smithi169.stdout:Adding system user ceph....done 2024-05-10T22:17:50.822 INFO:teuthology.orchestra.run.smithi169.stdout:Setting system user ceph properties....done 2024-05-10T22:17:50.839 INFO:teuthology.orchestra.run.smithi169.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-05-10T22:17:50.965 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-05-10T22:17:50.976 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-05-10T22:17:51.117 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-05-10T22:17:51.266 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-05-10T22:17:51.354 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-05-10T22:17:51.385 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-05-10T22:17:51.511 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-rsa (4.8-1) ... 2024-05-10T22:17:51.593 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-05-10T22:17:51.753 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up librados2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:51.787 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-05-10T22:17:51.879 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:52.005 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-05-10T22:17:52.020 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-test (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:52.088 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-05-10T22:17:52.146 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up radosgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:52.341 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libcephfs2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:52.433 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-05-10T22:17:52.458 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libradosstriper1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:52.568 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-05-10T22:17:52.612 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-05-10T22:17:52.612 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-05-10T22:17:52.827 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up librbd1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:52.843 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-05-10T22:17:52.954 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-mgr-modules-core (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:53.079 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:53.089 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-base (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:53.119 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-05-10T22:17:53.290 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-05-10T22:17:53.290 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-05-10T22:17:53.439 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-05-10T22:17:53.455 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-05-10T22:17:53.581 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up librados2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:53.707 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libsqlite3-mod-ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:53.772 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up libcephfs-dev (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:53.858 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-05-10T22:17:53.898 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-rados (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:53.924 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-mds (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:54.024 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up librgw2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:54.142 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-05-10T22:17:54.160 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-05-10T22:17:54.160 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-05-10T22:17:54.194 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libcephfs2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:54.321 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libradosstriper1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:54.463 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-05-10T22:17:54.651 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-mgr (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:54.739 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up librbd1 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:54.852 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-05-10T22:17:54.853 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-05-10T22:17:54.865 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-mgr-modules-core (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:54.991 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.210 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-05-10T22:17:55.210 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-05-10T22:17:55.297 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-rbd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.335 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-osd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.421 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up rbd-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.550 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-rgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.613 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-05-10T22:17:55.613 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-05-10T22:17:55.673 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up python3-cephfs (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.685 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up libcephfs-dev (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.799 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.802 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-rados (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:55.903 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up librgw2 (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:56.021 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-05-10T22:17:56.112 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:56.238 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:56.291 INFO:teuthology.orchestra.run.smithi152.stdout:Adding group ceph....done 2024-05-10T22:17:56.397 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-mon (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:56.635 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-05-10T22:17:56.636 INFO:teuthology.orchestra.run.smithi169.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-05-10T22:17:56.676 INFO:teuthology.orchestra.run.smithi152.stdout:Adding system user ceph....done 2024-05-10T22:17:56.845 INFO:teuthology.orchestra.run.smithi152.stdout:Setting system user ceph properties....done 2024-05-10T22:17:56.864 INFO:teuthology.orchestra.run.smithi152.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-05-10T22:17:57.000 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-05-10T22:17:57.133 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-mgr-cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.284 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.299 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-05-10T22:17:57.310 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-rbd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.410 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-mgr-dashboard (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.436 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up rbd-fuse (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.561 INFO:teuthology.orchestra.run.smithi169.stdout:Setting up ceph-volume (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.562 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-rgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.680 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up python3-cephfs (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.781 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-common (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.782 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-test (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.884 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up radosgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:57.897 INFO:teuthology.orchestra.run.smithi169.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-05-10T22:17:58.006 INFO:teuthology.orchestra.run.smithi169.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-05-10T22:17:58.159 INFO:teuthology.orchestra.run.smithi169.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-05-10T22:17:58.274 INFO:teuthology.orchestra.run.smithi063.stdout:Adding group ceph....done 2024-05-10T22:17:58.334 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-05-10T22:17:58.335 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-05-10T22:17:58.650 INFO:teuthology.orchestra.run.smithi063.stdout:Adding system user ceph....done 2024-05-10T22:17:58.802 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-base (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:58.819 INFO:teuthology.orchestra.run.smithi063.stdout:Setting system user ceph properties....done 2024-05-10T22:17:58.835 INFO:teuthology.orchestra.run.smithi063.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-05-10T22:17:58.978 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-05-10T22:17:59.153 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-05-10T22:17:59.243 INFO:teuthology.orchestra.run.smithi169.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-05-10T22:17:59.292 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-05-10T22:17:59.629 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-mds (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:59.740 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-test (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:59.836 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-05-10T22:17:59.836 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-05-10T22:17:59.866 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up radosgw (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:17:59.890 INFO:teuthology.orchestra.run.smithi169.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-05-10T22:17:59.896 DEBUG:teuthology.parallel:result is None 2024-05-10T22:18:00.306 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-mgr (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:00.372 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-05-10T22:18:00.372 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-05-10T22:18:00.569 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-05-10T22:18:00.569 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-05-10T22:18:00.809 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-base (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:01.171 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-05-10T22:18:01.199 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-osd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:01.480 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-05-10T22:18:01.480 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-05-10T22:18:01.620 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-mds (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:01.863 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-05-10T22:18:01.863 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-05-10T22:18:01.934 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:02.043 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:02.195 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-mon (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:02.313 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-mgr (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:02.412 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-05-10T22:18:02.412 INFO:teuthology.orchestra.run.smithi152.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-05-10T22:18:02.524 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-05-10T22:18:02.524 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-05-10T22:18:02.904 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-mgr-cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:02.989 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-osd (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:03.056 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:03.190 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-mgr-dashboard (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:03.285 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-05-10T22:18:03.285 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-05-10T22:18:03.341 INFO:teuthology.orchestra.run.smithi152.stdout:Setting up ceph-volume (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:03.749 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-mgr-k8sevents (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:03.788 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-05-10T22:18:03.875 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:04.018 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-mon (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:04.089 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-05-10T22:18:04.222 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-05-10T22:18:04.222 INFO:teuthology.orchestra.run.smithi063.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-05-10T22:18:04.702 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-mgr-cephadm (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:04.746 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-05-10T22:18:04.836 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:04.962 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-mgr-dashboard (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:05.105 INFO:teuthology.orchestra.run.smithi063.stdout:Setting up ceph-volume (19.0.0-2555-gf72fecff-1jammy) ... 2024-05-10T22:18:05.441 INFO:teuthology.orchestra.run.smithi063.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-05-10T22:18:05.542 INFO:teuthology.orchestra.run.smithi063.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-05-10T22:18:05.753 INFO:teuthology.orchestra.run.smithi063.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-05-10T22:18:05.924 INFO:teuthology.orchestra.run.smithi152.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-05-10T22:18:06.453 INFO:teuthology.orchestra.run.smithi063.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-05-10T22:18:06.550 INFO:teuthology.orchestra.run.smithi152.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-05-10T22:18:06.556 DEBUG:teuthology.parallel:result is None 2024-05-10T22:18:07.076 INFO:teuthology.orchestra.run.smithi063.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-05-10T22:18:07.081 DEBUG:teuthology.parallel:result is None 2024-05-10T22:18:07.081 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:07.326 DEBUG:teuthology.orchestra.run.smithi063:> dpkg-query -W -f '${Version}' ceph 2024-05-10T22:18:07.347 INFO:teuthology.orchestra.run.smithi063.stdout:19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:18:07.347 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:18:07.347 INFO:teuthology.task.install:The correct ceph version 19.0.0-2555-gf72fecff-1jammy is installed. 2024-05-10T22:18:07.349 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:07.491 DEBUG:teuthology.orchestra.run.smithi152:> dpkg-query -W -f '${Version}' ceph 2024-05-10T22:18:07.510 INFO:teuthology.orchestra.run.smithi152.stdout:19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:18:07.510 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:18:07.510 INFO:teuthology.task.install:The correct ceph version 19.0.0-2555-gf72fecff-1jammy is installed. 2024-05-10T22:18:07.512 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:07.822 DEBUG:teuthology.orchestra.run.smithi169:> dpkg-query -W -f '${Version}' ceph 2024-05-10T22:18:07.841 INFO:teuthology.orchestra.run.smithi169.stdout:19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:18:07.842 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2555-gf72fecff-1jammy 2024-05-10T22:18:07.842 INFO:teuthology.task.install:The correct ceph version 19.0.0-2555-gf72fecff-1jammy is installed. 2024-05-10T22:18:07.845 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-05-10T22:18:07.845 DEBUG:teuthology.orchestra.run.smithi063:> set -ex 2024-05-10T22:18:07.845 DEBUG:teuthology.orchestra.run.smithi063:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-05-10T22:18:07.860 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-05-10T22:18:07.860 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-05-10T22:18:07.874 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-05-10T22:18:07.874 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-05-10T22:18:07.895 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-05-10T22:18:07.895 DEBUG:teuthology.orchestra.run.smithi063:> set -ex 2024-05-10T22:18:07.895 DEBUG:teuthology.orchestra.run.smithi063:> sudo dd of=/usr/bin/daemon-helper 2024-05-10T22:18:07.917 DEBUG:teuthology.orchestra.run.smithi063:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-05-10T22:18:07.973 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-05-10T22:18:07.973 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/usr/bin/daemon-helper 2024-05-10T22:18:07.987 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-05-10T22:18:08.041 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-05-10T22:18:08.042 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/usr/bin/daemon-helper 2024-05-10T22:18:08.055 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-05-10T22:18:08.110 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-05-10T22:18:08.110 DEBUG:teuthology.orchestra.run.smithi063:> set -ex 2024-05-10T22:18:08.110 DEBUG:teuthology.orchestra.run.smithi063:> sudo dd of=/usr/bin/adjust-ulimits 2024-05-10T22:18:08.124 DEBUG:teuthology.orchestra.run.smithi063:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-05-10T22:18:08.177 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-05-10T22:18:08.177 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/usr/bin/adjust-ulimits 2024-05-10T22:18:08.190 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-05-10T22:18:08.245 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-05-10T22:18:08.245 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/usr/bin/adjust-ulimits 2024-05-10T22:18:08.259 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-05-10T22:18:08.313 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-05-10T22:18:08.314 DEBUG:teuthology.orchestra.run.smithi063:> set -ex 2024-05-10T22:18:08.314 DEBUG:teuthology.orchestra.run.smithi063:> sudo dd of=/usr/bin/stdin-killer 2024-05-10T22:18:08.328 DEBUG:teuthology.orchestra.run.smithi063:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-05-10T22:18:08.381 DEBUG:teuthology.orchestra.run.smithi152:> set -ex 2024-05-10T22:18:08.381 DEBUG:teuthology.orchestra.run.smithi152:> sudo dd of=/usr/bin/stdin-killer 2024-05-10T22:18:08.395 DEBUG:teuthology.orchestra.run.smithi152:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-05-10T22:18:08.450 DEBUG:teuthology.orchestra.run.smithi169:> set -ex 2024-05-10T22:18:08.450 DEBUG:teuthology.orchestra.run.smithi169:> sudo dd of=/usr/bin/stdin-killer 2024-05-10T22:18:08.463 DEBUG:teuthology.orchestra.run.smithi169:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-05-10T22:18:08.519 INFO:teuthology.run_tasks:Running task cephadm... 2024-05-10T22:18:08.618 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': True}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN'], 'log-only-match': ['CEPHADM_'], 'sha1': 'f72fecff68e1d400c4568684327c900485c20d6a'} 2024-05-10T22:18:08.618 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:08.618 INFO:tasks.cephadm:Cluster fsid is 2e3efb40-0f1b-11ef-bc98-c7b262605968 2024-05-10T22:18:08.619 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-05-10T22:18:08.619 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.63', 'mon.b': '172.21.15.152', 'mon.c': '172.21.15.169'} 2024-05-10T22:18:08.619 INFO:tasks.cephadm:First mon is mon.a on smithi063 2024-05-10T22:18:08.619 INFO:tasks.cephadm:First mgr is a 2024-05-10T22:18:08.619 INFO:tasks.cephadm:Normalizing hostnames... 2024-05-10T22:18:08.619 DEBUG:teuthology.orchestra.run.smithi063:> sudo hostname $(hostname -s) 2024-05-10T22:18:08.635 DEBUG:teuthology.orchestra.run.smithi152:> sudo hostname $(hostname -s) 2024-05-10T22:18:08.649 DEBUG:teuthology.orchestra.run.smithi169:> sudo hostname $(hostname -s) 2024-05-10T22:18:08.663 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-05-10T22:18:08.664 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:08.807 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'f72fecff68e1d400c4568684327c900485c20d6a', '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/55120/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2555-gf72fecff', 'node_name': '172.21.2.17+braggi17', '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-2555-gf72fecff-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-05-10 16:57:05.378594', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-05-10T22:18:08.949 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 f72fecff68e1d400c4568684327c900485c20d6a from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:08.951 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-05-10T22:18:08.952 DEBUG:teuthology.orchestra.run.smithi063:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:09.456 INFO:teuthology.orchestra.run.smithi063.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789299 May 10 22:18 /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:09.456 DEBUG:teuthology.orchestra.run.smithi152:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:10.117 INFO:teuthology.orchestra.run.smithi152.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789299 May 10 22:18 /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:10.117 DEBUG:teuthology.orchestra.run.smithi169:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:10.813 INFO:teuthology.orchestra.run.smithi169.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789299 May 10 22:18 /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:10.814 DEBUG:teuthology.orchestra.run.smithi063:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:10.822 DEBUG:teuthology.orchestra.run.smithi152:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:10.830 DEBUG:teuthology.orchestra.run.smithi169:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:10.847 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a on all hosts... 2024-05-10T22:18:10.848 DEBUG:teuthology.orchestra.run.smithi063:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull 2024-05-10T22:18:10.866 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull 2024-05-10T22:18:10.875 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull 2024-05-10T22:18:11.035 INFO:teuthology.orchestra.run.smithi063.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a... 2024-05-10T22:18:11.042 INFO:teuthology.orchestra.run.smithi152.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a... 2024-05-10T22:18:11.049 INFO:teuthology.orchestra.run.smithi169.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a... 2024-05-10T22:18:11.243 INFO:teuthology.orchestra.run.smithi152.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:11.243 INFO:teuthology.orchestra.run.smithi152.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a not found: manifest unknown: manifest unknown 2024-05-10T22:18:11.244 INFO:teuthology.orchestra.run.smithi152.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:11.245 INFO:teuthology.orchestra.run.smithi169.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:11.245 INFO:teuthology.orchestra.run.smithi169.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a not found: manifest unknown: manifest unknown 2024-05-10T22:18:11.245 INFO:teuthology.orchestra.run.smithi169.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:11.253 INFO:teuthology.orchestra.run.smithi063.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:11.253 INFO:teuthology.orchestra.run.smithi063.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a not found: manifest unknown: manifest unknown 2024-05-10T22:18:11.253 INFO:teuthology.orchestra.run.smithi063.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T22:18:11.282 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T22:18:11.283 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi063 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull' 2024-05-10T22:18:11.284 INFO:tasks.cephadm:Archiving crash dumps... 2024-05-10T22:18:11.286 DEBUG:teuthology.misc:Transferring archived files from smithi063:/var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi063/crash 2024-05-10T22:18:11.286 DEBUG:teuthology.orchestra.run.smithi063:> sudo tar c -f - -C /var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash -- . 2024-05-10T22:18:11.298 INFO:teuthology.orchestra.run.smithi063.stderr:tar: /var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash: Cannot open: No such file or directory 2024-05-10T22:18:11.299 INFO:teuthology.orchestra.run.smithi063.stderr:tar: Error is not recoverable: exiting now 2024-05-10T22:18:11.300 DEBUG:teuthology.misc:Transferring archived files from smithi152:/var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi152/crash 2024-05-10T22:18:11.301 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash -- . 2024-05-10T22:18:11.314 INFO:teuthology.orchestra.run.smithi152.stderr:tar: /var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash: Cannot open: No such file or directory 2024-05-10T22:18:11.314 INFO:teuthology.orchestra.run.smithi152.stderr:tar: Error is not recoverable: exiting now 2024-05-10T22:18:11.316 DEBUG:teuthology.misc:Transferring archived files from smithi169:/var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi169/crash 2024-05-10T22:18:11.316 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash -- . 2024-05-10T22:18:11.330 INFO:teuthology.orchestra.run.smithi169.stderr:tar: /var/lib/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/crash: Cannot open: No such file or directory 2024-05-10T22:18:11.330 INFO:teuthology.orchestra.run.smithi169.stderr:tar: Error is not recoverable: exiting now 2024-05-10T22:18:11.331 INFO:tasks.cephadm:Checking cluster log for badness... 2024-05-10T22:18:11.331 DEBUG:teuthology.orchestra.run.smithi063:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-05-10T22:18:11.352 INFO:teuthology.orchestra.run.smithi063.stderr:grep: /var/log/ceph/2e3efb40-0f1b-11ef-bc98-c7b262605968/ceph.log: No such file or directory 2024-05-10T22:18:11.353 INFO:tasks.cephadm:Compressing logs... 2024-05-10T22:18:11.353 DEBUG:teuthology.orchestra.run.smithi063:> 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-05-10T22:18:11.399 DEBUG:teuthology.orchestra.run.smithi152:> 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-05-10T22:18:11.402 DEBUG:teuthology.orchestra.run.smithi169:> 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-05-10T22:18:11.408 INFO:teuthology.orchestra.run.smithi063.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-05-10T22:18:11.412 INFO:teuthology.orchestra.run.smithi063.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-05-10T22:18:11.413 INFO:teuthology.orchestra.run.smithi063.stderr:/var/log/ceph/cephadm.log: 70.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-05-10T22:18:11.414 INFO:teuthology.orchestra.run.smithi152.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-05-10T22:18:11.414 INFO:teuthology.orchestra.run.smithi152.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-05-10T22:18:11.414 INFO:teuthology.orchestra.run.smithi152.stderr:/var/log/ceph/cephadm.log: 70.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-05-10T22:18:11.417 INFO:teuthology.orchestra.run.smithi152.stderr: 2024-05-10T22:18:11.418 INFO:teuthology.orchestra.run.smithi152.stderr:real 0m0.011s 2024-05-10T22:18:11.418 INFO:teuthology.orchestra.run.smithi152.stderr:user 0m0.015s 2024-05-10T22:18:11.418 INFO:teuthology.orchestra.run.smithi152.stderr:sys 0m0.005s 2024-05-10T22:18:11.418 INFO:teuthology.orchestra.run.smithi063.stderr: 2024-05-10T22:18:11.418 INFO:teuthology.orchestra.run.smithi063.stderr:real 0m0.014s 2024-05-10T22:18:11.418 INFO:teuthology.orchestra.run.smithi063.stderr:user 0m0.012s 2024-05-10T22:18:11.419 INFO:teuthology.orchestra.run.smithi063.stderr:sys 0m0.007s 2024-05-10T22:18:11.421 INFO:teuthology.orchestra.run.smithi169.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-05-10T22:18:11.421 INFO:teuthology.orchestra.run.smithi169.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-05-10T22:18:11.421 INFO:teuthology.orchestra.run.smithi169.stderr:/var/log/ceph/cephadm.log: 69.9% -- replaced with /var/log/ceph/cephadm.log.gz 2024-05-10T22:18:11.421 INFO:teuthology.orchestra.run.smithi169.stderr: 2024-05-10T22:18:11.422 INFO:teuthology.orchestra.run.smithi169.stderr:real 0m0.012s 2024-05-10T22:18:11.422 INFO:teuthology.orchestra.run.smithi169.stderr:user 0m0.011s 2024-05-10T22:18:11.422 INFO:teuthology.orchestra.run.smithi169.stderr:sys 0m0.010s 2024-05-10T22:18:11.425 INFO:tasks.cephadm:Archiving logs... 2024-05-10T22:18:11.426 DEBUG:teuthology.misc:Transferring archived files from smithi063:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi063/log 2024-05-10T22:18:11.427 DEBUG:teuthology.orchestra.run.smithi063:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-10T22:18:11.472 DEBUG:teuthology.misc:Transferring archived files from smithi152:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi152/log 2024-05-10T22:18:11.473 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-10T22:18:11.486 DEBUG:teuthology.misc:Transferring archived files from smithi169:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi169/log 2024-05-10T22:18:11.487 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-10T22:18:11.501 INFO:tasks.cephadm:Removing cluster... 2024-05-10T22:18:11.502 DEBUG:teuthology.orchestra.run.smithi063:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 2e3efb40-0f1b-11ef-bc98-c7b262605968 --force 2024-05-10T22:18:11.684 INFO:teuthology.orchestra.run.smithi063.stdout:Deleting cluster with fsid: 2e3efb40-0f1b-11ef-bc98-c7b262605968 2024-05-10T22:18:13.005 DEBUG:teuthology.orchestra.run.smithi152:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 2e3efb40-0f1b-11ef-bc98-c7b262605968 --force 2024-05-10T22:18:13.171 INFO:teuthology.orchestra.run.smithi152.stdout:Deleting cluster with fsid: 2e3efb40-0f1b-11ef-bc98-c7b262605968 2024-05-10T22:18:14.487 DEBUG:teuthology.orchestra.run.smithi169:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 2e3efb40-0f1b-11ef-bc98-c7b262605968 --force 2024-05-10T22:18:14.656 INFO:teuthology.orchestra.run.smithi169.stdout:Deleting cluster with fsid: 2e3efb40-0f1b-11ef-bc98-c7b262605968 2024-05-10T22:18:15.984 INFO:tasks.cephadm:Removing cephadm ... 2024-05-10T22:18:15.984 DEBUG:teuthology.orchestra.run.smithi063:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:15.991 DEBUG:teuthology.orchestra.run.smithi152:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:15.997 DEBUG:teuthology.orchestra.run.smithi169:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-10T22:18:16.003 INFO:tasks.cephadm:Teardown complete 2024-05-10T22:18:16.003 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 2204, 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_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 1833, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi063 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull' 2024-05-10T22:18:16.215 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=4c5df92a401b419bbb65597b03efd5e7 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 2204, 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_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 1833, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi063 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull' 2024-05-10T22:18:16.219 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-05-10T22:18:16.227 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-05-10T22:18:16.243 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-05-10T22:18:16.243 DEBUG:teuthology.orchestra.run.smithi063:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-05-10T22:18:16.256 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-05-10T22:18:16.260 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-05-10T22:18:16.342 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-05-10T22:18:16.350 INFO:teuthology.task.clock:Checking final clock skew... 2024-05-10T22:18:16.350 DEBUG:teuthology.orchestra.run.smithi063:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-10T22:18:16.352 DEBUG:teuthology.orchestra.run.smithi152:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-10T22:18:16.355 DEBUG:teuthology.orchestra.run.smithi169:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-10T22:18:16.364 INFO:teuthology.orchestra.run.smithi063.stdout: remote refid st t when poll reach delay offset jitter 2024-05-10T22:18:16.364 INFO:teuthology.orchestra.run.smithi063.stdout:============================================================================== 2024-05-10T22:18:16.364 INFO:teuthology.orchestra.run.smithi063.stdout: hv01.front.sepi 67.205.162.81 3 u 55 64 3 0.142 -1.331 0.034 2024-05-10T22:18:16.364 INFO:teuthology.orchestra.run.smithi063.stdout: hv02.front.sepi 63.231.80.2 3 u 53 64 3 0.063 +0.850 0.067 2024-05-10T22:18:16.364 INFO:teuthology.orchestra.run.smithi063.stdout: hv03.front.sepi 74.6.168.72 3 u 53 64 3 0.137 -0.046 0.038 2024-05-10T22:18:16.365 INFO:teuthology.orchestra.run.smithi063.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:18:16.365 INFO:teuthology.orchestra.run.smithi152.stdout: remote refid st t when poll reach delay offset jitter 2024-05-10T22:18:16.365 INFO:teuthology.orchestra.run.smithi152.stdout:============================================================================== 2024-05-10T22:18:16.365 INFO:teuthology.orchestra.run.smithi152.stdout: hv01.front.sepi 67.205.162.81 3 u 57 64 3 0.129 -0.132 1.718 2024-05-10T22:18:16.366 INFO:teuthology.orchestra.run.smithi152.stdout: hv02.front.sepi 63.231.80.2 3 u 56 64 3 0.086 +2.033 0.682 2024-05-10T22:18:16.366 INFO:teuthology.orchestra.run.smithi152.stdout: hv03.front.sepi 74.6.168.72 3 u 58 64 3 0.142 +1.143 1.209 2024-05-10T22:18:16.366 INFO:teuthology.orchestra.run.smithi152.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:18:16.368 INFO:teuthology.orchestra.run.smithi169.stdout: remote refid st t when poll reach delay offset jitter 2024-05-10T22:18:16.369 INFO:teuthology.orchestra.run.smithi169.stdout:============================================================================== 2024-05-10T22:18:16.369 INFO:teuthology.orchestra.run.smithi169.stdout: hv01.front.sepi 67.205.162.81 3 u 54 64 3 0.080 -3.000 0.734 2024-05-10T22:18:16.369 INFO:teuthology.orchestra.run.smithi169.stdout: hv02.front.sepi 63.231.80.2 3 u 56 64 3 0.109 -0.774 0.748 2024-05-10T22:18:16.369 INFO:teuthology.orchestra.run.smithi169.stdout: hv03.front.sepi 74.6.168.72 3 u 54 64 3 0.064 -1.721 0.736 2024-05-10T22:18:16.369 INFO:teuthology.orchestra.run.smithi169.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-10T22:18:16.370 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-05-10T22:18:16.378 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-05-10T22:18:16.379 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-05-10T22:18:16.390 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-05-10T22:18:16.398 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-05-10T22:18:16.409 INFO:teuthology.task.internal:Duration was 564.648718 seconds 2024-05-10T22:18:16.409 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-05-10T22:18:16.420 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-05-10T22:18:16.421 DEBUG:teuthology.orchestra.run.smithi063:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-10T22:18:16.423 DEBUG:teuthology.orchestra.run.smithi152:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-10T22:18:16.425 DEBUG:teuthology.orchestra.run.smithi169:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-10T22:18:16.461 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-05-10T22:18:16.461 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi063.front.sepia.ceph.com 2024-05-10T22:18:16.461 DEBUG:teuthology.orchestra.run.smithi063:> 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-05-10T22:18:16.510 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi152.front.sepia.ceph.com 2024-05-10T22:18:16.510 DEBUG:teuthology.orchestra.run.smithi152:> 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-05-10T22:18:16.520 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi169.front.sepia.ceph.com 2024-05-10T22:18:16.520 DEBUG:teuthology.orchestra.run.smithi169:> 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-05-10T22:18:16.530 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-05-10T22:18:16.530 DEBUG:teuthology.orchestra.run.smithi063:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-10T22:18:16.554 DEBUG:teuthology.orchestra.run.smithi152:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-10T22:18:16.563 DEBUG:teuthology.orchestra.run.smithi169:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-10T22:18:16.596 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-05-10T22:18:16.596 DEBUG:teuthology.orchestra.run.smithi063:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-10T22:18:16.622 DEBUG:teuthology.orchestra.run.smithi152:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-10T22:18:16.631 DEBUG:teuthology.orchestra.run.smithi169:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-10T22:18:16.691 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-05-10T22:18:16.700 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-05-10T22:18:16.701 DEBUG:teuthology.orchestra.run.smithi063:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-10T22:18:16.714 DEBUG:teuthology.orchestra.run.smithi152:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-10T22:18:16.726 DEBUG:teuthology.orchestra.run.smithi169:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-10T22:18:16.738 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-05-10T22:18:16.749 DEBUG:teuthology.orchestra.run.smithi063:> 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-05-10T22:18:16.758 DEBUG:teuthology.orchestra.run.smithi152:> 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-05-10T22:18:16.767 INFO:teuthology.orchestra.run.smithi063.stdout:kernel.core_pattern = core 2024-05-10T22:18:16.771 DEBUG:teuthology.orchestra.run.smithi169:> 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-05-10T22:18:16.779 INFO:teuthology.orchestra.run.smithi152.stdout:kernel.core_pattern = core 2024-05-10T22:18:16.792 INFO:teuthology.orchestra.run.smithi169.stdout:kernel.core_pattern = core 2024-05-10T22:18:16.814 DEBUG:teuthology.orchestra.run.smithi063:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-10T22:18:16.832 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T22:18:16.833 DEBUG:teuthology.orchestra.run.smithi152:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-10T22:18:16.849 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T22:18:16.850 DEBUG:teuthology.orchestra.run.smithi169:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-10T22:18:16.862 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T22:18:16.863 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-05-10T22:18:16.871 INFO:teuthology.task.internal:Transferring archived files... 2024-05-10T22:18:16.872 DEBUG:teuthology.misc:Transferring archived files from smithi063:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi063 2024-05-10T22:18:16.872 DEBUG:teuthology.orchestra.run.smithi063:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-10T22:18:16.899 DEBUG:teuthology.misc:Transferring archived files from smithi152:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi152 2024-05-10T22:18:16.899 DEBUG:teuthology.orchestra.run.smithi152:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-10T22:18:16.919 DEBUG:teuthology.misc:Transferring archived files from smithi169:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782/remote/smithi169 2024-05-10T22:18:16.919 DEBUG:teuthology.orchestra.run.smithi169:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-10T22:18:16.939 INFO:teuthology.task.internal:Removing archive directory... 2024-05-10T22:18:16.939 DEBUG:teuthology.orchestra.run.smithi063:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-10T22:18:16.942 DEBUG:teuthology.orchestra.run.smithi152:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-10T22:18:16.963 DEBUG:teuthology.orchestra.run.smithi169:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-10T22:18:16.983 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-05-10T22:18:16.993 INFO:teuthology.task.internal:Not uploading archives. 2024-05-10T22:18:16.993 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-05-10T22:18:17.032 INFO:teuthology.task.internal:Tidying up after the test... 2024-05-10T22:18:17.032 DEBUG:teuthology.orchestra.run.smithi063:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-10T22:18:17.035 DEBUG:teuthology.orchestra.run.smithi152:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-10T22:18:17.037 DEBUG:teuthology.orchestra.run.smithi169:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-10T22:18:17.039 INFO:teuthology.orchestra.run.smithi063.stdout: 658613 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 10 22:18 /home/ubuntu/cephtest 2024-05-10T22:18:17.040 INFO:teuthology.orchestra.run.smithi152.stdout: 658466 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 10 22:18 /home/ubuntu/cephtest 2024-05-10T22:18:17.043 INFO:teuthology.orchestra.run.smithi169.stdout: 658622 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 10 22:18 /home/ubuntu/cephtest 2024-05-10T22:18:17.044 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-05-10T22:18:17.079 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-05-10T22:18:17.126 INFO:teuthology.nuke:Checking targets against current locks 2024-05-10T22:18:17.153 DEBUG:teuthology.nuke:shortname: smithi063 2024-05-10T22:18:17.153 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-10T22:18:17.176 DEBUG:teuthology.nuke:shortname: smithi152 2024-05-10T22:18:17.176 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-10T22:18:17.181 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi063.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782', '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-05-10 21:58:42.460049', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBJL3/bhPSgB5tsElLgikKifaqf48w12vn1BDzV1YSR5zuTL4X3YsY0Wb4bzMIg7A1HBNZogU/5bH+tS2mMXVok='} 2024-05-10T22:18:17.201 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi152.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782', '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-05-10 21:58:42.461802', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLYBtzIjNcwA5WXdUDslvojpHO5fM0ODlElnnZyGQ5aCDE4t/g07q1CKfoksUozWTW2TZLCGlpXEtj6XuTUAZKs='} 2024-05-10T22:18:17.207 DEBUG:teuthology.nuke:shortname: smithi169 2024-05-10T22:18:17.207 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-10T22:18:17.234 INFO:teuthology.orchestra.console.smithi063:Power off 2024-05-10T22:18:17.235 DEBUG:teuthology.orchestra.console.smithi063:pexpect command: ipmitool -H smithi063.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-05-10T22:18:17.243 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi169.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701782', '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-05-10 21:58:42.462937', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLeito1DMwSzYxMnemJSwn6H2A9QFSoWOZxdCRx6PR3Pjr6iA4xipUVhpTFWahv0+RtSiHs3ZwMfte4rDa4G/J0='} 2024-05-10T22:18:17.257 DEBUG:teuthology.orchestra.console.smithi063:power off output: Chassis Power Control: Down/Off 2024-05-10T22:18:17.257 DEBUG:teuthology.orchestra.console.smithi063:pexpect command: ipmitool -H smithi063.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:17.280 INFO:teuthology.orchestra.console.smithi152:Power off 2024-05-10T22:18:17.280 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-05-10T22:18:17.291 DEBUG:teuthology.orchestra.console.smithi063:check power output: Chassis Power is on 2024-05-10T22:18:17.303 DEBUG:teuthology.orchestra.console.smithi152:power off output: Chassis Power Control: Down/Off 2024-05-10T22:18:17.304 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:17.319 INFO:teuthology.orchestra.console.smithi169:Power off 2024-05-10T22:18:17.319 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-05-10T22:18:17.341 DEBUG:teuthology.orchestra.console.smithi169:power off output: Chassis Power Control: Down/Off 2024-05-10T22:18:17.341 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:17.350 DEBUG:teuthology.orchestra.console.smithi152:check power output: Chassis Power is on 2024-05-10T22:18:17.363 DEBUG:teuthology.orchestra.console.smithi169:check power output: Chassis Power is on 2024-05-10T22:18:21.292 DEBUG:teuthology.orchestra.console.smithi063:pexpect command: ipmitool -H smithi063.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:21.351 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:21.363 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:21.401 DEBUG:teuthology.orchestra.console.smithi063:check power output: Chassis Power is on 2024-05-10T22:18:21.460 DEBUG:teuthology.orchestra.console.smithi152:check power output: Chassis Power is on 2024-05-10T22:18:21.472 DEBUG:teuthology.orchestra.console.smithi169:check power output: Chassis Power is on 2024-05-10T22:18:25.406 DEBUG:teuthology.orchestra.console.smithi063:pexpect command: ipmitool -H smithi063.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:25.461 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:25.473 DEBUG:teuthology.orchestra.console.smithi169:pexpect command: ipmitool -H smithi169.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:25.517 DEBUG:teuthology.orchestra.console.smithi063:check power output: Chassis Power is off 2024-05-10T22:18:25.571 DEBUG:teuthology.orchestra.console.smithi152:check power output: Chassis Power is on 2024-05-10T22:18:25.582 DEBUG:teuthology.orchestra.console.smithi169:check power output: Chassis Power is off 2024-05-10T22:18:25.618 INFO:teuthology.orchestra.console.smithi063:Power off completed 2024-05-10T22:18:25.683 INFO:teuthology.orchestra.console.smithi169:Power off completed 2024-05-10T22:18:29.574 DEBUG:teuthology.orchestra.console.smithi152:pexpect command: ipmitool -H smithi152.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T22:18:29.684 DEBUG:teuthology.orchestra.console.smithi152:check power output: Chassis Power is off 2024-05-10T22:18:29.785 INFO:teuthology.orchestra.console.smithi152:Power off completed 2024-05-10T22:18:29.890 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/connectivity task/test_host_drain} duration: 564.6487183570862 failure_reason: 'Command failed on smithi063 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull''' flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=4c5df92a401b419bbb65597b03efd5e7 status: fail success: false 2024-05-10T22:18:29.891 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-10T22:18:29.972 INFO:teuthology.run:FAIL