2024-06-30T12:42:56.771 INFO:root:teuthology version: 0.0.1.dev303+g861a8dc 2024-06-30T12:42:56.771 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552 --description orch/cephadm/workunits/{0-distro/ubuntu_20.04 agent/on mon_election/connectivity task/test_host_drain} --owner scheduled_teuthology@teuthology --verbose --name teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi -- /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552/orig.config.yaml 2024-06-30T12:42:56.801 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-06-30T12:42:56.877 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552 branch: reef description: orch/cephadm/workunits/{0-distro/ubuntu_20.04 agent/on mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7749552' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '20.04' overrides: admin_socket: branch: reef 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\) sha1: f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 kernel: hwe: true workunit: branch: reef sha1: 16b16b98599950a27899283412b0a32cd03699ac owner: scheduled_teuthology@teuthology priority: 930 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: 9459 sha1: f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 sleep_before_teardown: 0 subset: 38/64 suite: orch suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_16b16b98599950a27899283412b0a32cd03699ac/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 16b16b98599950a27899283412b0a32cd03699ac targets: smithi100.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi119.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi183.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= 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: 861a8dcf7aa816a26e13f039336f7ed0a9aec0fa timestamp: 2024-06-10_22:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2698093 2024-06-30T12:42:56.878 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_16b16b98599950a27899283412b0a32cd03699ac/qa; will attempt to use it 2024-06-30T12:42:56.878 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_16b16b98599950a27899283412b0a32cd03699ac/qa/tasks 2024-06-30T12:42:56.878 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-06-30T12:42:56.880 INFO:teuthology.task.internal:Checking packages... 2024-06-30T12:42:56.900 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65' 2024-06-30T12:42:56.900 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-06-30T12:42:56.900 INFO:teuthology.packaging:ref: None 2024-06-30T12:42:56.900 INFO:teuthology.packaging:tag: None 2024-06-30T12:42:56.900 INFO:teuthology.packaging:branch: reef 2024-06-30T12:42:56.900 INFO:teuthology.packaging:sha1: f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T12:42:56.900 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&ref=reef 2024-06-30T12:42:57.122 INFO:teuthology.task.internal:Found packages for ceph version 18.2.2-1561-gbec9e3ef-1focal 2024-06-30T12:42:57.124 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-06-30T12:42:57.130 INFO:teuthology.task.internal:no buildpackages task found 2024-06-30T12:42:57.130 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-06-30T12:42:57.213 INFO:teuthology.task.internal:Saving configuration 2024-06-30T12:42:57.225 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-06-30T12:42:57.298 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-06-30T12:42:57.325 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi100.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-06-30 12:37:09.462405', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-06-30T12:42:57.347 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi119.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-06-30 12:37:09.464160', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-06-30T12:42:57.365 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi183.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-06-30 12:37:09.465230', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-06-30T12:42:57.365 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-06-30T12:42:57.451 INFO:teuthology.task.internal:roles: ubuntu@smithi100.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-06-30T12:42:57.451 INFO:teuthology.task.internal:roles: ubuntu@smithi119.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-06-30T12:42:57.451 INFO:teuthology.task.internal:roles: ubuntu@smithi183.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-06-30T12:42:57.451 INFO:teuthology.run_tasks:Running task console_log... 2024-06-30T12:42:57.635 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f4eace44f70>, signals=[15]) 2024-06-30T12:42:57.636 INFO:teuthology.run_tasks:Running task internal.connect... 2024-06-30T12:42:57.642 INFO:teuthology.task.internal:Opening connections... 2024-06-30T12:42:57.643 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi100.front.sepia.ceph.com 2024-06-30T12:42:57.644 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:42:57.750 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi119.front.sepia.ceph.com 2024-06-30T12:42:57.751 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:42:57.850 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi183.front.sepia.ceph.com 2024-06-30T12:42:57.851 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:42:57.937 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-06-30T12:42:57.946 DEBUG:teuthology.orchestra.run.smithi100:> uname -m 2024-06-30T12:42:57.952 INFO:teuthology.orchestra.run.smithi100.stdout:x86_64 2024-06-30T12:42:57.953 DEBUG:teuthology.orchestra.run.smithi100:> cat /etc/os-release 2024-06-30T12:42:58.001 INFO:teuthology.orchestra.run.smithi100.stdout:NAME="Ubuntu" 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:ID=ubuntu 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:ID_LIKE=debian 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION_ID="20.04" 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:HOME_URL="https://www.ubuntu.com/" 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION_CODENAME=focal 2024-06-30T12:42:58.002 INFO:teuthology.orchestra.run.smithi100.stdout:UBUNTU_CODENAME=focal 2024-06-30T12:42:58.003 INFO:teuthology.lock.ops:Updating smithi100.front.sepia.ceph.com on lock server 2024-06-30T12:42:58.030 DEBUG:teuthology.orchestra.run.smithi119:> uname -m 2024-06-30T12:42:58.037 INFO:teuthology.orchestra.run.smithi119.stdout:x86_64 2024-06-30T12:42:58.037 DEBUG:teuthology.orchestra.run.smithi119:> cat /etc/os-release 2024-06-30T12:42:58.086 INFO:teuthology.orchestra.run.smithi119.stdout:NAME="Ubuntu" 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:ID=ubuntu 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:ID_LIKE=debian 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:VERSION_ID="20.04" 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:HOME_URL="https://www.ubuntu.com/" 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-06-30T12:42:58.087 INFO:teuthology.orchestra.run.smithi119.stdout:VERSION_CODENAME=focal 2024-06-30T12:42:58.088 INFO:teuthology.orchestra.run.smithi119.stdout:UBUNTU_CODENAME=focal 2024-06-30T12:42:58.088 INFO:teuthology.lock.ops:Updating smithi119.front.sepia.ceph.com on lock server 2024-06-30T12:42:58.113 DEBUG:teuthology.orchestra.run.smithi183:> uname -m 2024-06-30T12:42:58.120 INFO:teuthology.orchestra.run.smithi183.stdout:x86_64 2024-06-30T12:42:58.120 DEBUG:teuthology.orchestra.run.smithi183:> cat /etc/os-release 2024-06-30T12:42:58.169 INFO:teuthology.orchestra.run.smithi183.stdout:NAME="Ubuntu" 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:ID=ubuntu 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:ID_LIKE=debian 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION_ID="20.04" 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:HOME_URL="https://www.ubuntu.com/" 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION_CODENAME=focal 2024-06-30T12:42:58.170 INFO:teuthology.orchestra.run.smithi183.stdout:UBUNTU_CODENAME=focal 2024-06-30T12:42:58.171 INFO:teuthology.lock.ops:Updating smithi183.front.sepia.ceph.com on lock server 2024-06-30T12:42:58.198 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-06-30T12:42:58.208 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-06-30T12:42:58.288 INFO:teuthology.task.internal:Checking for old test directory... 2024-06-30T12:42:58.288 DEBUG:teuthology.orchestra.run.smithi100:> test '!' -e /home/ubuntu/cephtest 2024-06-30T12:42:58.290 DEBUG:teuthology.orchestra.run.smithi119:> test '!' -e /home/ubuntu/cephtest 2024-06-30T12:42:58.293 DEBUG:teuthology.orchestra.run.smithi183:> test '!' -e /home/ubuntu/cephtest 2024-06-30T12:42:58.298 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-06-30T12:42:58.309 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-06-30T12:42:58.309 DEBUG:teuthology.orchestra.run.smithi100:> test -z $(ls -A /var/lib/ceph) 2024-06-30T12:42:58.312 DEBUG:teuthology.orchestra.run.smithi119:> test -z $(ls -A /var/lib/ceph) 2024-06-30T12:42:58.314 DEBUG:teuthology.orchestra.run.smithi183:> test -z $(ls -A /var/lib/ceph) 2024-06-30T12:42:58.347 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-06-30T12:42:58.459 INFO:teuthology.run_tasks:Running task kernel... 2024-06-30T12:42:58.473 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-06-30T12:42:58.473 INFO:teuthology.task.kernel:normalize config orig: {'hwe': True} 2024-06-30T12:42:58.473 DEBUG:teuthology.task.kernel:normalized overrides {'host.a': {'hwe': True}, 'mon.a': {'hwe': True}, 'mgr.a': {'hwe': True}, 'osd.0': {'hwe': True}, 'osd.1': {'hwe': True}, 'host.b': {'hwe': True}, 'mon.b': {'hwe': True}, 'mgr.b': {'hwe': True}, 'osd.2': {'hwe': True}, 'osd.3': {'hwe': True}, 'host.c': {'hwe': True}, 'mon.c': {'hwe': True}, 'osd.4': {'hwe': True}, 'osd.5': {'hwe': True}} 2024-06-30T12:42:58.473 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro', 'hwe': True}, 'host.b': {'kdb': 1, 'sha1': 'distro', 'hwe': True}, 'host.c': {'kdb': 1, 'sha1': 'distro', 'hwe': True}}, timeout 300 2024-06-30T12:42:58.473 DEBUG:teuthology.orchestra.run.smithi100:> test -f /run/.containerenv -o -f /.dockerenv 2024-06-30T12:42:58.474 DEBUG:teuthology.orchestra.run.smithi119:> test -f /run/.containerenv -o -f /.dockerenv 2024-06-30T12:42:58.474 DEBUG:teuthology.orchestra.run.smithi183:> test -f /run/.containerenv -o -f /.dockerenv 2024-06-30T12:42:58.479 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T12:42:58.480 DEBUG:teuthology.orchestra.run.smithi119:> uname -r 2024-06-30T12:42:58.480 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T12:42:58.481 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T12:42:58.481 DEBUG:teuthology.orchestra.run.smithi183:> uname -r 2024-06-30T12:42:58.482 DEBUG:teuthology.orchestra.run.smithi100:> uname -r 2024-06-30T12:42:58.488 INFO:teuthology.orchestra.run.smithi119.stdout:5.4.0-124-generic 2024-06-30T12:42:58.488 INFO:teuthology.task.kernel:Running kernel on smithi119: 5.4.0-124-generic 2024-06-30T12:42:58.488 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-get clean 2024-06-30T12:42:58.489 INFO:teuthology.orchestra.run.smithi100.stdout:5.4.0-124-generic 2024-06-30T12:42:58.489 INFO:teuthology.task.kernel:Running kernel on smithi100: 5.4.0-124-generic 2024-06-30T12:42:58.489 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-get clean 2024-06-30T12:42:58.529 INFO:teuthology.orchestra.run.smithi183.stdout:5.4.0-124-generic 2024-06-30T12:42:58.529 INFO:teuthology.task.kernel:Running kernel on smithi183: 5.4.0-124-generic 2024-06-30T12:42:58.530 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-get clean 2024-06-30T12:42:58.628 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-get update 2024-06-30T12:42:58.636 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-get update 2024-06-30T12:42:58.637 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-get update 2024-06-30T12:42:58.810 INFO:teuthology.orchestra.run.smithi183.stdout:Get:1 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] 2024-06-30T12:42:58.832 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-06-30T12:42:58.847 INFO:teuthology.orchestra.run.smithi100.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] 2024-06-30T12:42:58.917 INFO:teuthology.orchestra.run.smithi100.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] 2024-06-30T12:42:58.918 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-06-30T12:42:58.921 INFO:teuthology.orchestra.run.smithi100.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] 2024-06-30T12:42:58.953 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-06-30T12:42:58.954 INFO:teuthology.orchestra.run.smithi119.stdout:Get:2 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] 2024-06-30T12:42:59.001 INFO:teuthology.orchestra.run.smithi183.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] 2024-06-30T12:42:59.003 INFO:teuthology.orchestra.run.smithi119.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] 2024-06-30T12:42:59.122 INFO:teuthology.orchestra.run.smithi183.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [769 kB] 2024-06-30T12:42:59.214 INFO:teuthology.orchestra.run.smithi100.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [993 kB] 2024-06-30T12:42:59.218 INFO:teuthology.orchestra.run.smithi183.stdout:Get:5 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3,020 kB] 2024-06-30T12:42:59.273 INFO:teuthology.orchestra.run.smithi183.stdout:Get:6 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [452 kB] 2024-06-30T12:42:59.278 INFO:teuthology.orchestra.run.smithi183.stdout:Get:7 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-06-30T12:42:59.278 INFO:teuthology.orchestra.run.smithi183.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [38.1 kB] 2024-06-30T12:42:59.279 INFO:teuthology.orchestra.run.smithi183.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,924 kB] 2024-06-30T12:42:59.310 INFO:teuthology.orchestra.run.smithi183.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [409 kB] 2024-06-30T12:42:59.315 INFO:teuthology.orchestra.run.smithi183.stdout:Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-06-30T12:42:59.315 INFO:teuthology.orchestra.run.smithi183.stdout:Get:12 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [665 kB] 2024-06-30T12:42:59.322 INFO:teuthology.orchestra.run.smithi183.stdout:Get:13 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [980 kB] 2024-06-30T12:42:59.323 INFO:teuthology.orchestra.run.smithi100.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,392 kB] 2024-06-30T12:42:59.340 INFO:teuthology.orchestra.run.smithi183.stdout:Get:14 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [207 kB] 2024-06-30T12:42:59.343 INFO:teuthology.orchestra.run.smithi183.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-06-30T12:42:59.346 INFO:teuthology.orchestra.run.smithi183.stdout:Get:16 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,204 B] 2024-06-30T12:42:59.346 INFO:teuthology.orchestra.run.smithi183.stdout:Get:17 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [24.8 kB] 2024-06-30T12:42:59.347 INFO:teuthology.orchestra.run.smithi183.stdout:Get:18 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,968 B] 2024-06-30T12:42:59.354 INFO:teuthology.orchestra.run.smithi183.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] 2024-06-30T12:42:59.359 INFO:teuthology.orchestra.run.smithi119.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] 2024-06-30T12:42:59.367 INFO:teuthology.orchestra.run.smithi183.stdout:Get:20 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-06-30T12:42:59.380 INFO:teuthology.orchestra.run.smithi100.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [531 kB] 2024-06-30T12:42:59.386 INFO:teuthology.orchestra.run.smithi100.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-06-30T12:42:59.386 INFO:teuthology.orchestra.run.smithi100.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [39.4 kB] 2024-06-30T12:42:59.387 INFO:teuthology.orchestra.run.smithi100.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [3,040 kB] 2024-06-30T12:42:59.422 INFO:teuthology.orchestra.run.smithi100.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [425 kB] 2024-06-30T12:42:59.422 INFO:teuthology.orchestra.run.smithi100.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-06-30T12:42:59.422 INFO:teuthology.orchestra.run.smithi100.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [791 kB] 2024-06-30T12:42:59.431 INFO:teuthology.orchestra.run.smithi100.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,199 kB] 2024-06-30T12:42:59.441 INFO:teuthology.orchestra.run.smithi119.stdout:Get:5 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [769 kB] 2024-06-30T12:42:59.443 INFO:teuthology.orchestra.run.smithi100.stdout:Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [289 kB] 2024-06-30T12:42:59.446 INFO:teuthology.orchestra.run.smithi100.stdout:Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-06-30T12:42:59.453 INFO:teuthology.orchestra.run.smithi100.stdout:Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,440 B] 2024-06-30T12:42:59.454 INFO:teuthology.orchestra.run.smithi100.stdout:Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [27.1 kB] 2024-06-30T12:42:59.454 INFO:teuthology.orchestra.run.smithi100.stdout:Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,936 B] 2024-06-30T12:42:59.464 INFO:teuthology.orchestra.run.smithi100.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-06-30T12:42:59.464 INFO:teuthology.orchestra.run.smithi100.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-06-30T12:42:59.464 INFO:teuthology.orchestra.run.smithi100.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-06-30T12:42:59.465 INFO:teuthology.orchestra.run.smithi100.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-06-30T12:42:59.465 INFO:teuthology.orchestra.run.smithi100.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-06-30T12:42:59.483 INFO:teuthology.orchestra.run.smithi100.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-06-30T12:42:59.484 INFO:teuthology.orchestra.run.smithi100.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-06-30T12:42:59.495 INFO:teuthology.orchestra.run.smithi183.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,392 kB] 2024-06-30T12:42:59.536 INFO:teuthology.orchestra.run.smithi100.stdout:Get:27 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3,020 kB] 2024-06-30T12:42:59.587 INFO:teuthology.orchestra.run.smithi119.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,392 kB] 2024-06-30T12:42:59.802 INFO:teuthology.orchestra.run.smithi119.stdout:Get:7 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3,020 kB] 2024-06-30T12:42:59.874 INFO:teuthology.orchestra.run.smithi183.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [993 kB] 2024-06-30T12:42:59.902 INFO:teuthology.orchestra.run.smithi183.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [531 kB] 2024-06-30T12:42:59.915 INFO:teuthology.orchestra.run.smithi183.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-06-30T12:42:59.916 INFO:teuthology.orchestra.run.smithi183.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [3,040 kB] 2024-06-30T12:42:59.994 INFO:teuthology.orchestra.run.smithi119.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [452 kB] 2024-06-30T12:43:00.004 INFO:teuthology.orchestra.run.smithi183.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [39.4 kB] 2024-06-30T12:43:00.005 INFO:teuthology.orchestra.run.smithi183.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [425 kB] 2024-06-30T12:43:00.008 INFO:teuthology.orchestra.run.smithi119.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-06-30T12:43:00.008 INFO:teuthology.orchestra.run.smithi119.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,924 kB] 2024-06-30T12:43:00.010 INFO:teuthology.orchestra.run.smithi183.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-06-30T12:43:00.011 INFO:teuthology.orchestra.run.smithi183.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [791 kB] 2024-06-30T12:43:00.016 INFO:teuthology.orchestra.run.smithi100.stdout:Get:28 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [769 kB] 2024-06-30T12:43:00.023 INFO:teuthology.orchestra.run.smithi183.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,199 kB] 2024-06-30T12:43:00.030 INFO:teuthology.orchestra.run.smithi100.stdout:Get:29 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [452 kB] 2024-06-30T12:43:00.038 INFO:teuthology.orchestra.run.smithi100.stdout:Get:30 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-06-30T12:43:00.039 INFO:teuthology.orchestra.run.smithi100.stdout:Get:31 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [38.1 kB] 2024-06-30T12:43:00.039 INFO:teuthology.orchestra.run.smithi100.stdout:Get:32 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,924 kB] 2024-06-30T12:43:00.047 INFO:teuthology.orchestra.run.smithi119.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [993 kB] 2024-06-30T12:43:00.060 INFO:teuthology.orchestra.run.smithi183.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [289 kB] 2024-06-30T12:43:00.064 INFO:teuthology.orchestra.run.smithi119.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [531 kB] 2024-06-30T12:43:00.068 INFO:teuthology.orchestra.run.smithi183.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-06-30T12:43:00.068 INFO:teuthology.orchestra.run.smithi183.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [27.1 kB] 2024-06-30T12:43:00.069 INFO:teuthology.orchestra.run.smithi183.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,440 B] 2024-06-30T12:43:00.072 INFO:teuthology.orchestra.run.smithi119.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-06-30T12:43:00.073 INFO:teuthology.orchestra.run.smithi119.stdout:Get:14 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [3,040 kB] 2024-06-30T12:43:00.084 INFO:teuthology.orchestra.run.smithi119.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [38.1 kB] 2024-06-30T12:43:00.085 INFO:teuthology.orchestra.run.smithi119.stdout:Get:16 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [409 kB] 2024-06-30T12:43:00.098 INFO:teuthology.orchestra.run.smithi119.stdout:Get:17 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-06-30T12:43:00.098 INFO:teuthology.orchestra.run.smithi119.stdout:Get:18 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [665 kB] 2024-06-30T12:43:00.121 INFO:teuthology.orchestra.run.smithi119.stdout:Get:19 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [980 kB] 2024-06-30T12:43:00.125 INFO:teuthology.orchestra.run.smithi100.stdout:Get:33 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [409 kB] 2024-06-30T12:43:00.128 INFO:teuthology.orchestra.run.smithi183.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,936 B] 2024-06-30T12:43:00.128 INFO:teuthology.orchestra.run.smithi183.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-06-30T12:43:00.129 INFO:teuthology.orchestra.run.smithi183.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-06-30T12:43:00.129 INFO:teuthology.orchestra.run.smithi183.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-06-30T12:43:00.130 INFO:teuthology.orchestra.run.smithi183.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-06-30T12:43:00.132 INFO:teuthology.orchestra.run.smithi100.stdout:Get:34 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-06-30T12:43:00.132 INFO:teuthology.orchestra.run.smithi100.stdout:Get:35 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [665 kB] 2024-06-30T12:43:00.144 INFO:teuthology.orchestra.run.smithi100.stdout:Get:36 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [980 kB] 2024-06-30T12:43:00.153 INFO:teuthology.orchestra.run.smithi119.stdout:Get:20 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [207 kB] 2024-06-30T12:43:00.155 INFO:teuthology.orchestra.run.smithi119.stdout:Get:21 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-06-30T12:43:00.158 INFO:teuthology.orchestra.run.smithi119.stdout:Get:22 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [24.8 kB] 2024-06-30T12:43:00.158 INFO:teuthology.orchestra.run.smithi119.stdout:Get:23 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,204 B] 2024-06-30T12:43:00.160 INFO:teuthology.orchestra.run.smithi119.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [39.4 kB] 2024-06-30T12:43:00.161 INFO:teuthology.orchestra.run.smithi119.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [425 kB] 2024-06-30T12:43:00.168 INFO:teuthology.orchestra.run.smithi119.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-06-30T12:43:00.168 INFO:teuthology.orchestra.run.smithi119.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [791 kB] 2024-06-30T12:43:00.180 INFO:teuthology.orchestra.run.smithi100.stdout:Get:37 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [207 kB] 2024-06-30T12:43:00.181 INFO:teuthology.orchestra.run.smithi119.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,199 kB] 2024-06-30T12:43:00.187 INFO:teuthology.orchestra.run.smithi100.stdout:Get:38 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-06-30T12:43:00.193 INFO:teuthology.orchestra.run.smithi100.stdout:Get:39 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [24.8 kB] 2024-06-30T12:43:00.194 INFO:teuthology.orchestra.run.smithi100.stdout:Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,204 B] 2024-06-30T12:43:00.194 INFO:teuthology.orchestra.run.smithi100.stdout:Get:41 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,968 B] 2024-06-30T12:43:00.210 INFO:teuthology.orchestra.run.smithi183.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-06-30T12:43:00.211 INFO:teuthology.orchestra.run.smithi183.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-06-30T12:43:00.211 INFO:teuthology.orchestra.run.smithi183.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-06-30T12:43:00.224 INFO:teuthology.orchestra.run.smithi119.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [289 kB] 2024-06-30T12:43:00.240 INFO:teuthology.orchestra.run.smithi119.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-06-30T12:43:00.240 INFO:teuthology.orchestra.run.smithi119.stdout:Get:31 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,968 B] 2024-06-30T12:43:00.240 INFO:teuthology.orchestra.run.smithi119.stdout:Get:32 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-06-30T12:43:00.241 INFO:teuthology.orchestra.run.smithi119.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [27.1 kB] 2024-06-30T12:43:00.241 INFO:teuthology.orchestra.run.smithi119.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,440 B] 2024-06-30T12:43:00.275 INFO:teuthology.orchestra.run.smithi100.stdout:Get:42 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-06-30T12:43:00.306 INFO:teuthology.orchestra.run.smithi119.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,936 B] 2024-06-30T12:43:00.306 INFO:teuthology.orchestra.run.smithi119.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-06-30T12:43:00.307 INFO:teuthology.orchestra.run.smithi119.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-06-30T12:43:00.308 INFO:teuthology.orchestra.run.smithi119.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-06-30T12:43:00.309 INFO:teuthology.orchestra.run.smithi119.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-06-30T12:43:00.318 INFO:teuthology.orchestra.run.smithi119.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-06-30T12:43:00.400 INFO:teuthology.orchestra.run.smithi119.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-06-30T12:43:00.400 INFO:teuthology.orchestra.run.smithi119.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-06-30T12:43:03.453 INFO:teuthology.orchestra.run.smithi183.stdout:Fetched 20.8 MB in 3s (7,333 kB/s) 2024-06-30T12:43:03.578 INFO:teuthology.orchestra.run.smithi100.stdout:Fetched 20.8 MB in 3s (7,136 kB/s) 2024-06-30T12:43:04.213 INFO:teuthology.orchestra.run.smithi119.stdout:Fetched 20.8 MB in 3s (5,963 kB/s) 2024-06-30T12:43:04.993 INFO:teuthology.orchestra.run.smithi183.stdout:Reading package lists... 2024-06-30T12:43:05.020 DEBUG:teuthology.orchestra.run.smithi183:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-06-30T12:43:05.100 INFO:teuthology.orchestra.run.smithi183.stdout:Reading package lists... 2024-06-30T12:43:05.135 INFO:teuthology.orchestra.run.smithi100.stdout:Reading package lists... 2024-06-30T12:43:05.162 DEBUG:teuthology.orchestra.run.smithi100:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-06-30T12:43:05.242 INFO:teuthology.orchestra.run.smithi100.stdout:Reading package lists... 2024-06-30T12:43:05.312 INFO:teuthology.orchestra.run.smithi183.stdout:Building dependency tree... 2024-06-30T12:43:05.313 INFO:teuthology.orchestra.run.smithi183.stdout:Reading state information... 2024-06-30T12:43:05.449 INFO:teuthology.orchestra.run.smithi100.stdout:Building dependency tree... 2024-06-30T12:43:05.449 INFO:teuthology.orchestra.run.smithi100.stdout:Reading state information... 2024-06-30T12:43:05.511 INFO:teuthology.orchestra.run.smithi183.stdout:The following additional packages will be installed: 2024-06-30T12:43:05.511 INFO:teuthology.orchestra.run.smithi183.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-06-30T12:43:05.511 INFO:teuthology.orchestra.run.smithi183.stdout: libusbmuxd6 linux-image-5.15.0-113-generic linux-modules-5.15.0-113-generic 2024-06-30T12:43:05.511 INFO:teuthology.orchestra.run.smithi183.stdout: linux-modules-extra-5.15.0-113-generic thermald upower usbmuxd 2024-06-30T12:43:05.512 INFO:teuthology.orchestra.run.smithi183.stdout:Suggested packages: 2024-06-30T12:43:05.512 INFO:teuthology.orchestra.run.smithi183.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-06-30T12:43:05.512 INFO:teuthology.orchestra.run.smithi183.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-113-generic 2024-06-30T12:43:05.565 INFO:teuthology.orchestra.run.smithi183.stdout:The following NEW packages will be installed: 2024-06-30T12:43:05.566 INFO:teuthology.orchestra.run.smithi183.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-06-30T12:43:05.566 INFO:teuthology.orchestra.run.smithi183.stdout: libusbmuxd6 linux-image-5.15.0-113-generic linux-image-generic-hwe-20.04 2024-06-30T12:43:05.566 INFO:teuthology.orchestra.run.smithi183.stdout: linux-modules-5.15.0-113-generic linux-modules-extra-5.15.0-113-generic 2024-06-30T12:43:05.567 INFO:teuthology.orchestra.run.smithi183.stdout: thermald upower usbmuxd 2024-06-30T12:43:05.627 INFO:teuthology.orchestra.run.smithi183.stdout:0 upgraded, 13 newly installed, 0 to remove and 309 not upgraded. 2024-06-30T12:43:05.627 INFO:teuthology.orchestra.run.smithi183.stdout:Need to get 95.0 MB of archives. 2024-06-30T12:43:05.627 INFO:teuthology.orchestra.run.smithi183.stdout:After this operation, 593 MB of additional disk space will be used. 2024-06-30T12:43:05.627 INFO:teuthology.orchestra.run.smithi183.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-06-30T12:43:05.633 INFO:teuthology.orchestra.run.smithi100.stdout:The following additional packages will be installed: 2024-06-30T12:43:05.633 INFO:teuthology.orchestra.run.smithi100.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-06-30T12:43:05.633 INFO:teuthology.orchestra.run.smithi100.stdout: libusbmuxd6 linux-image-5.15.0-113-generic linux-modules-5.15.0-113-generic 2024-06-30T12:43:05.633 INFO:teuthology.orchestra.run.smithi100.stdout: linux-modules-extra-5.15.0-113-generic thermald upower usbmuxd 2024-06-30T12:43:05.635 INFO:teuthology.orchestra.run.smithi100.stdout:Suggested packages: 2024-06-30T12:43:05.635 INFO:teuthology.orchestra.run.smithi100.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-06-30T12:43:05.635 INFO:teuthology.orchestra.run.smithi100.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-113-generic 2024-06-30T12:43:05.685 INFO:teuthology.orchestra.run.smithi100.stdout:The following NEW packages will be installed: 2024-06-30T12:43:05.686 INFO:teuthology.orchestra.run.smithi100.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-06-30T12:43:05.686 INFO:teuthology.orchestra.run.smithi100.stdout: libusbmuxd6 linux-image-5.15.0-113-generic linux-image-generic-hwe-20.04 2024-06-30T12:43:05.686 INFO:teuthology.orchestra.run.smithi100.stdout: linux-modules-5.15.0-113-generic linux-modules-extra-5.15.0-113-generic 2024-06-30T12:43:05.686 INFO:teuthology.orchestra.run.smithi100.stdout: thermald upower usbmuxd 2024-06-30T12:43:05.693 INFO:teuthology.orchestra.run.smithi183.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-06-30T12:43:05.699 INFO:teuthology.orchestra.run.smithi183.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-06-30T12:43:05.704 INFO:teuthology.orchestra.run.smithi183.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-06-30T12:43:05.721 INFO:teuthology.orchestra.run.smithi183.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-06-30T12:43:05.730 INFO:teuthology.orchestra.run.smithi183.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [22.3 MB] 2024-06-30T12:43:05.747 INFO:teuthology.orchestra.run.smithi119.stdout:Reading package lists... 2024-06-30T12:43:05.748 INFO:teuthology.orchestra.run.smithi100.stdout:0 upgraded, 13 newly installed, 0 to remove and 309 not upgraded. 2024-06-30T12:43:05.748 INFO:teuthology.orchestra.run.smithi100.stdout:Need to get 95.0 MB of archives. 2024-06-30T12:43:05.748 INFO:teuthology.orchestra.run.smithi100.stdout:After this operation, 593 MB of additional disk space will be used. 2024-06-30T12:43:05.749 INFO:teuthology.orchestra.run.smithi100.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-06-30T12:43:05.774 DEBUG:teuthology.orchestra.run.smithi119:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-06-30T12:43:05.818 INFO:teuthology.orchestra.run.smithi100.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-06-30T12:43:05.827 INFO:teuthology.orchestra.run.smithi100.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-06-30T12:43:05.836 INFO:teuthology.orchestra.run.smithi100.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-06-30T12:43:05.847 INFO:teuthology.orchestra.run.smithi119.stdout:Reading package lists... 2024-06-30T12:43:05.861 INFO:teuthology.orchestra.run.smithi100.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-06-30T12:43:05.873 INFO:teuthology.orchestra.run.smithi100.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [22.3 MB] 2024-06-30T12:43:06.061 INFO:teuthology.orchestra.run.smithi119.stdout:Building dependency tree... 2024-06-30T12:43:06.062 INFO:teuthology.orchestra.run.smithi119.stdout:Reading state information... 2024-06-30T12:43:06.093 INFO:teuthology.orchestra.run.smithi183.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [11.4 MB] 2024-06-30T12:43:06.252 INFO:teuthology.orchestra.run.smithi119.stdout:The following additional packages will be installed: 2024-06-30T12:43:06.252 INFO:teuthology.orchestra.run.smithi119.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-06-30T12:43:06.252 INFO:teuthology.orchestra.run.smithi119.stdout: libusbmuxd6 linux-image-5.15.0-113-generic linux-modules-5.15.0-113-generic 2024-06-30T12:43:06.253 INFO:teuthology.orchestra.run.smithi119.stdout: linux-modules-extra-5.15.0-113-generic thermald upower usbmuxd 2024-06-30T12:43:06.254 INFO:teuthology.orchestra.run.smithi119.stdout:Suggested packages: 2024-06-30T12:43:06.254 INFO:teuthology.orchestra.run.smithi119.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-06-30T12:43:06.254 INFO:teuthology.orchestra.run.smithi119.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-113-generic 2024-06-30T12:43:06.317 INFO:teuthology.orchestra.run.smithi119.stdout:The following NEW packages will be installed: 2024-06-30T12:43:06.318 INFO:teuthology.orchestra.run.smithi119.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-06-30T12:43:06.318 INFO:teuthology.orchestra.run.smithi119.stdout: libusbmuxd6 linux-image-5.15.0-113-generic linux-image-generic-hwe-20.04 2024-06-30T12:43:06.318 INFO:teuthology.orchestra.run.smithi119.stdout: linux-modules-5.15.0-113-generic linux-modules-extra-5.15.0-113-generic 2024-06-30T12:43:06.318 INFO:teuthology.orchestra.run.smithi119.stdout: thermald upower usbmuxd 2024-06-30T12:43:06.343 INFO:teuthology.orchestra.run.smithi183.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [60.7 MB] 2024-06-30T12:43:06.406 INFO:teuthology.orchestra.run.smithi119.stdout:0 upgraded, 13 newly installed, 0 to remove and 309 not upgraded. 2024-06-30T12:43:06.406 INFO:teuthology.orchestra.run.smithi119.stdout:Need to get 95.0 MB of archives. 2024-06-30T12:43:06.406 INFO:teuthology.orchestra.run.smithi119.stdout:After this operation, 593 MB of additional disk space will be used. 2024-06-30T12:43:06.406 INFO:teuthology.orchestra.run.smithi119.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-06-30T12:43:06.519 INFO:teuthology.orchestra.run.smithi100.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [11.4 MB] 2024-06-30T12:43:06.575 INFO:teuthology.orchestra.run.smithi119.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-06-30T12:43:06.602 INFO:teuthology.orchestra.run.smithi119.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-06-30T12:43:06.636 INFO:teuthology.orchestra.run.smithi119.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-06-30T12:43:06.707 INFO:teuthology.orchestra.run.smithi119.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-06-30T12:43:06.727 INFO:teuthology.orchestra.run.smithi100.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [60.7 MB] 2024-06-30T12:43:06.749 INFO:teuthology.orchestra.run.smithi119.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [22.3 MB] 2024-06-30T12:43:07.985 INFO:teuthology.orchestra.run.smithi119.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [11.4 MB] 2024-06-30T12:43:08.157 INFO:teuthology.orchestra.run.smithi119.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-113-generic amd64 5.15.0-113.123~20.04.1 [60.7 MB] 2024-06-30T12:43:08.243 INFO:teuthology.orchestra.run.smithi183.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.113.123~20.04.1 [2,612 B] 2024-06-30T12:43:08.243 INFO:teuthology.orchestra.run.smithi183.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-06-30T12:43:08.244 INFO:teuthology.orchestra.run.smithi183.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-06-30T12:43:08.250 INFO:teuthology.orchestra.run.smithi183.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-06-30T12:43:08.252 INFO:teuthology.orchestra.run.smithi183.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-06-30T12:43:08.393 INFO:teuthology.orchestra.run.smithi100.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.113.123~20.04.1 [2,612 B] 2024-06-30T12:43:08.393 INFO:teuthology.orchestra.run.smithi100.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-06-30T12:43:08.455 INFO:teuthology.orchestra.run.smithi100.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-06-30T12:43:08.460 INFO:teuthology.orchestra.run.smithi100.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-06-30T12:43:08.462 INFO:teuthology.orchestra.run.smithi100.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-06-30T12:43:08.964 INFO:teuthology.orchestra.run.smithi183.stdout:Fetched 95.0 MB in 3s (35.5 MB/s) 2024-06-30T12:43:09.096 INFO:teuthology.orchestra.run.smithi100.stdout:Fetched 95.0 MB in 3s (34.3 MB/s) 2024-06-30T12:43:09.187 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-06-30T12:43:09.204 INFO:teuthology.orchestra.run.smithi119.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.113.123~20.04.1 [2,612 B] 2024-06-30T12:43:09.205 INFO:teuthology.orchestra.run.smithi119.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-06-30T12:43:09.206 INFO:teuthology.orchestra.run.smithi119.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-06-30T12:43:09.212 INFO:teuthology.orchestra.run.smithi119.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-06-30T12:43:09.213 INFO:teuthology.orchestra.run.smithi119.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-06-30T12:43:09.297 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-06-30T12:43:09.856 INFO:teuthology.orchestra.run.smithi119.stdout:Fetched 95.0 MB in 3s (32.9 MB/s) 2024-06-30T12:43:10.072 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-06-30T12:43:10.863 INFO:teuthology.orchestra.run.smithi183.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 ... 104373 files and directories currently installed.) 2024-06-30T12:43:10.868 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-06-30T12:43:11.000 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-06-30T12:43:11.021 INFO:teuthology.orchestra.run.smithi100.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 ... 104373 files and directories currently installed.) 2024-06-30T12:43:11.027 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-06-30T12:43:11.186 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-06-30T12:43:11.362 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libplist3:amd64. 2024-06-30T12:43:11.376 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-06-30T12:43:11.420 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-06-30T12:43:11.556 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package libplist3:amd64. 2024-06-30T12:43:11.571 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-06-30T12:43:11.614 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-06-30T12:43:11.748 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-06-30T12:43:11.763 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-06-30T12:43:11.814 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-06-30T12:43:11.837 INFO:teuthology.orchestra.run.smithi119.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 ... 104373 files and directories currently installed.) 2024-06-30T12:43:11.842 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-06-30T12:43:11.968 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-06-30T12:43:11.969 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-06-30T12:43:11.981 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-06-30T12:43:12.017 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-06-30T12:43:12.142 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-06-30T12:43:12.156 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-06-30T12:43:12.200 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-06-30T12:43:12.347 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package libplist3:amd64. 2024-06-30T12:43:12.354 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-06-30T12:43:12.361 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-06-30T12:43:12.370 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-06-30T12:43:12.404 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-06-30T12:43:12.405 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-06-30T12:43:12.536 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-06-30T12:43:12.551 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-06-30T12:43:12.595 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-06-30T12:43:12.725 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-06-30T12:43:12.739 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-06-30T12:43:12.742 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-06-30T12:43:12.756 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-06-30T12:43:12.798 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-06-30T12:43:12.800 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-06-30T12:43:12.889 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package linux-modules-5.15.0-113-generic. 2024-06-30T12:43:12.905 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../05-linux-modules-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:12.947 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking linux-modules-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:13.118 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-modules-5.15.0-113-generic. 2024-06-30T12:43:13.128 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-06-30T12:43:13.134 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../05-linux-modules-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:13.143 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-06-30T12:43:13.186 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-06-30T12:43:13.193 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-modules-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:13.539 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-06-30T12:43:13.553 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-06-30T12:43:13.597 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-06-30T12:43:13.909 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-modules-5.15.0-113-generic. 2024-06-30T12:43:13.925 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../05-linux-modules-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:13.967 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-modules-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:15.697 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package linux-image-5.15.0-113-generic. 2024-06-30T12:43:15.712 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../06-linux-image-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:15.813 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:16.169 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-image-5.15.0-113-generic. 2024-06-30T12:43:16.186 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../06-linux-image-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:16.281 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:16.308 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-113-generic. 2024-06-30T12:43:16.321 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:16.358 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking linux-modules-extra-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:16.777 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-image-5.15.0-113-generic. 2024-06-30T12:43:16.792 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../06-linux-image-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:16.797 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-113-generic. 2024-06-30T12:43:16.813 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:16.855 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-modules-extra-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:16.882 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:17.413 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-113-generic. 2024-06-30T12:43:17.426 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-113-generic_5.15.0-113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:17.463 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-modules-extra-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:23.550 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-06-30T12:43:23.568 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:23.608 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.113.123~20.04.1) ... 2024-06-30T12:43:23.927 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libevdev2:amd64. 2024-06-30T12:43:23.941 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-06-30T12:43:23.985 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-06-30T12:43:24.347 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package thermald. 2024-06-30T12:43:24.363 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-06-30T12:43:24.405 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-06-30T12:43:24.422 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-06-30T12:43:24.440 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:24.480 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.113.123~20.04.1) ... 2024-06-30T12:43:24.816 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-06-30T12:43:24.831 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.113.123~20.04.1_amd64.deb ... 2024-06-30T12:43:24.841 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package libevdev2:amd64. 2024-06-30T12:43:24.856 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-06-30T12:43:24.874 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.113.123~20.04.1) ... 2024-06-30T12:43:24.899 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-06-30T12:43:24.960 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package upower. 2024-06-30T12:43:24.974 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-06-30T12:43:25.037 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking upower (0.99.11-1build2) ... 2024-06-30T12:43:25.210 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package libevdev2:amd64. 2024-06-30T12:43:25.225 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-06-30T12:43:25.268 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-06-30T12:43:25.286 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package thermald. 2024-06-30T12:43:25.300 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-06-30T12:43:25.344 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-06-30T12:43:25.439 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package usbmuxd. 2024-06-30T12:43:25.453 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-06-30T12:43:25.497 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-06-30T12:43:25.605 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package thermald. 2024-06-30T12:43:25.621 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-06-30T12:43:25.663 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-06-30T12:43:25.795 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-06-30T12:43:25.916 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package upower. 2024-06-30T12:43:25.930 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-06-30T12:43:25.943 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-06-30T12:43:25.991 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking upower (0.99.11-1build2) ... 2024-06-30T12:43:26.069 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-06-30T12:43:26.195 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-06-30T12:43:26.215 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package upower. 2024-06-30T12:43:26.231 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-06-30T12:43:26.284 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking upower (0.99.11-1build2) ... 2024-06-30T12:43:26.321 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-06-30T12:43:26.448 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-06-30T12:43:26.478 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package usbmuxd. 2024-06-30T12:43:26.493 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-06-30T12:43:26.537 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-06-30T12:43:26.574 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up upower (0.99.11-1build2) ... 2024-06-30T12:43:26.672 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package usbmuxd. 2024-06-30T12:43:26.688 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-06-30T12:43:26.730 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-06-30T12:43:26.845 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-06-30T12:43:26.975 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-06-30T12:43:27.019 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-06-30T12:43:27.100 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-06-30T12:43:27.113 INFO:teuthology.orchestra.run.smithi183.stdout:upower.service is a disabled or a static unit, not starting it. 2024-06-30T12:43:27.143 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-06-30T12:43:27.161 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-06-30T12:43:27.226 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-06-30T12:43:27.286 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-06-30T12:43:27.359 INFO:teuthology.orchestra.run.smithi183.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-06-30T12:43:27.363 INFO:teuthology.orchestra.run.smithi183.stdout:Adding system user `usbmux' (UID 114) ... 2024-06-30T12:43:27.364 INFO:teuthology.orchestra.run.smithi183.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-06-30T12:43:27.369 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-06-30T12:43:27.411 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-06-30T12:43:27.495 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-06-30T12:43:27.537 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-06-30T12:43:27.621 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up upower (0.99.11-1build2) ... 2024-06-30T12:43:27.663 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-06-30T12:43:27.781 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up upower (0.99.11-1build2) ... 2024-06-30T12:43:27.820 INFO:teuthology.orchestra.run.smithi183.stdout:Not creating home directory `/var/lib/usbmux'. 2024-06-30T12:43:28.039 INFO:teuthology.orchestra.run.smithi183.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-06-30T12:43:28.074 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-06-30T12:43:28.194 INFO:teuthology.orchestra.run.smithi100.stdout:upower.service is a disabled or a static unit, not starting it. 2024-06-30T12:43:28.259 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-06-30T12:43:28.302 INFO:teuthology.orchestra.run.smithi119.stdout:upower.service is a disabled or a static unit, not starting it. 2024-06-30T12:43:28.352 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-06-30T12:43:28.377 INFO:teuthology.orchestra.run.smithi183.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-06-30T12:43:28.377 INFO:teuthology.orchestra.run.smithi183.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-06-30T12:43:28.454 INFO:teuthology.orchestra.run.smithi100.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-06-30T12:43:28.460 INFO:teuthology.orchestra.run.smithi100.stdout:Adding system user `usbmux' (UID 114) ... 2024-06-30T12:43:28.460 INFO:teuthology.orchestra.run.smithi100.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-06-30T12:43:28.561 INFO:teuthology.orchestra.run.smithi119.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-06-30T12:43:28.581 INFO:teuthology.orchestra.run.smithi119.stdout:Adding system user `usbmux' (UID 114) ... 2024-06-30T12:43:28.581 INFO:teuthology.orchestra.run.smithi119.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-06-30T12:43:28.870 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:28.976 INFO:teuthology.orchestra.run.smithi100.stdout:Not creating home directory `/var/lib/usbmux'. 2024-06-30T12:43:29.200 INFO:teuthology.orchestra.run.smithi100.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-06-30T12:43:29.239 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-06-30T12:43:29.377 INFO:teuthology.orchestra.run.smithi119.stdout:Not creating home directory `/var/lib/usbmux'. 2024-06-30T12:43:29.582 INFO:teuthology.orchestra.run.smithi119.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-06-30T12:43:29.585 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-06-30T12:43:29.585 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-06-30T12:43:29.632 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-06-30T12:43:29.946 INFO:teuthology.orchestra.run.smithi119.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-06-30T12:43:29.947 INFO:teuthology.orchestra.run.smithi119.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-06-30T12:43:30.043 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:30.194 INFO:teuthology.orchestra.run.smithi183.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:43:30.194 INFO:teuthology.orchestra.run.smithi183.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-113-generic 2024-06-30T12:43:30.357 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up linux-modules-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:30.394 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:31.418 INFO:teuthology.orchestra.run.smithi100.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:43:31.418 INFO:teuthology.orchestra.run.smithi100.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-113-generic 2024-06-30T12:43:31.703 INFO:teuthology.orchestra.run.smithi119.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:43:31.703 INFO:teuthology.orchestra.run.smithi119.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-113-generic 2024-06-30T12:43:31.716 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up linux-modules-extra-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:31.855 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-modules-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:32.613 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-modules-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:33.101 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.113.123~20.04.1) ... 2024-06-30T12:43:33.226 INFO:teuthology.orchestra.run.smithi183.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-06-30T12:43:33.231 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-modules-extra-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:33.499 INFO:teuthology.orchestra.run.smithi183.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-06-30T12:43:34.006 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-modules-extra-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:34.277 INFO:teuthology.orchestra.run.smithi183.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-06-30T12:43:34.385 INFO:teuthology.orchestra.run.smithi183.stdout:Processing triggers for linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:34.452 INFO:teuthology.orchestra.run.smithi183.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-06-30T12:43:34.452 INFO:teuthology.orchestra.run.smithi183.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:43:35.191 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.113.123~20.04.1) ... 2024-06-30T12:43:35.358 INFO:teuthology.orchestra.run.smithi119.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-06-30T12:43:35.382 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.113.123~20.04.1) ... 2024-06-30T12:43:35.516 INFO:teuthology.orchestra.run.smithi100.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-06-30T12:43:35.655 INFO:teuthology.orchestra.run.smithi119.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-06-30T12:43:35.813 INFO:teuthology.orchestra.run.smithi100.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-06-30T12:43:36.417 INFO:teuthology.orchestra.run.smithi119.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-06-30T12:43:36.517 INFO:teuthology.orchestra.run.smithi119.stdout:Processing triggers for linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:36.583 INFO:teuthology.orchestra.run.smithi119.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-06-30T12:43:36.583 INFO:teuthology.orchestra.run.smithi119.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:43:36.591 INFO:teuthology.orchestra.run.smithi100.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-06-30T12:43:36.716 INFO:teuthology.orchestra.run.smithi100.stdout:Processing triggers for linux-image-5.15.0-113-generic (5.15.0-113.123~20.04.1) ... 2024-06-30T12:43:36.791 INFO:teuthology.orchestra.run.smithi100.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-06-30T12:43:36.791 INFO:teuthology.orchestra.run.smithi100.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:44:01.678 INFO:teuthology.orchestra.run.smithi183.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-06-30T12:44:01.678 INFO:teuthology.orchestra.run.smithi183.stdout:Sourcing file `/etc/default/grub' 2024-06-30T12:44:01.683 INFO:teuthology.orchestra.run.smithi183.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-06-30T12:44:01.713 INFO:teuthology.orchestra.run.smithi183.stdout:Generating grub configuration file ... 2024-06-30T12:44:02.105 INFO:teuthology.orchestra.run.smithi183.stdout:Found linux image: /boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:44:02.125 INFO:teuthology.orchestra.run.smithi183.stdout:Found initrd image: /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:44:02.487 INFO:teuthology.orchestra.run.smithi183.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-06-30T12:44:02.500 INFO:teuthology.orchestra.run.smithi183.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-06-30T12:44:03.565 INFO:teuthology.orchestra.run.smithi119.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-06-30T12:44:03.565 INFO:teuthology.orchestra.run.smithi119.stdout:Sourcing file `/etc/default/grub' 2024-06-30T12:44:03.586 INFO:teuthology.orchestra.run.smithi119.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-06-30T12:44:03.611 INFO:teuthology.orchestra.run.smithi119.stdout:Generating grub configuration file ... 2024-06-30T12:44:03.919 INFO:teuthology.orchestra.run.smithi119.stdout:Found linux image: /boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:44:03.944 INFO:teuthology.orchestra.run.smithi119.stdout:Found initrd image: /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:44:04.011 INFO:teuthology.orchestra.run.smithi100.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-06-30T12:44:04.012 INFO:teuthology.orchestra.run.smithi100.stdout:Sourcing file `/etc/default/grub' 2024-06-30T12:44:04.025 INFO:teuthology.orchestra.run.smithi100.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-06-30T12:44:04.043 INFO:teuthology.orchestra.run.smithi100.stdout:Generating grub configuration file ... 2024-06-30T12:44:04.278 INFO:teuthology.orchestra.run.smithi183.stdout:done 2024-06-30T12:44:04.343 INFO:teuthology.orchestra.run.smithi100.stdout:Found linux image: /boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:44:04.353 INFO:teuthology.orchestra.run.smithi119.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-06-30T12:44:04.365 INFO:teuthology.orchestra.run.smithi119.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-06-30T12:44:04.381 INFO:teuthology.orchestra.run.smithi100.stdout:Found initrd image: /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:44:04.704 DEBUG:teuthology.orchestra.run.smithi183:> dpkg -s linux-image-generic-hwe-20.04 2024-06-30T12:44:04.748 INFO:teuthology.orchestra.run.smithi183.stdout:Package: linux-image-generic-hwe-20.04 2024-06-30T12:44:04.748 INFO:teuthology.orchestra.run.smithi183.stdout:Status: install ok installed 2024-06-30T12:44:04.748 INFO:teuthology.orchestra.run.smithi183.stdout:Priority: optional 2024-06-30T12:44:04.748 INFO:teuthology.orchestra.run.smithi183.stdout:Section: kernel 2024-06-30T12:44:04.748 INFO:teuthology.orchestra.run.smithi183.stdout:Installed-Size: 21 2024-06-30T12:44:04.748 INFO:teuthology.orchestra.run.smithi183.stdout:Maintainer: Ubuntu Kernel Team 2024-06-30T12:44:04.748 INFO:teuthology.orchestra.run.smithi183.stdout:Architecture: amd64 2024-06-30T12:44:04.749 INFO:teuthology.orchestra.run.smithi183.stdout:Source: linux-meta-hwe-5.15 2024-06-30T12:44:04.749 INFO:teuthology.orchestra.run.smithi183.stdout:Version: 5.15.0.113.123~20.04.1 2024-06-30T12:44:04.749 INFO:teuthology.orchestra.run.smithi183.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-113), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-06-30T12:44:04.749 INFO:teuthology.orchestra.run.smithi183.stdout:Depends: linux-image-5.15.0-113-generic, linux-modules-extra-5.15.0-113-generic, linux-firmware, intel-microcode, amd64-microcode 2024-06-30T12:44:04.749 INFO:teuthology.orchestra.run.smithi183.stdout:Recommends: thermald 2024-06-30T12:44:04.749 INFO:teuthology.orchestra.run.smithi183.stdout:Description: Generic Linux kernel image 2024-06-30T12:44:04.749 INFO:teuthology.orchestra.run.smithi183.stdout: This package will always depend on the latest generic kernel image 2024-06-30T12:44:04.749 INFO:teuthology.orchestra.run.smithi183.stdout: available. 2024-06-30T12:44:04.749 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-113-generic 2024-06-30T12:44:04.750 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-06-30T12:44:04.750 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-06-30T12:44:04.750 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-06-30T12:44:04.750 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi183.front.sepia.ceph.com, path=None, version=distro) 2024-06-30T12:44:04.750 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-get clean 2024-06-30T12:44:04.751 INFO:teuthology.orchestra.run.smithi100.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-06-30T12:44:04.765 INFO:teuthology.orchestra.run.smithi100.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-06-30T12:44:04.820 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-get update 2024-06-30T12:44:04.956 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-06-30T12:44:05.067 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-06-30T12:44:05.149 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-06-30T12:44:05.231 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-06-30T12:44:06.170 INFO:teuthology.orchestra.run.smithi119.stdout:done 2024-06-30T12:44:06.619 DEBUG:teuthology.orchestra.run.smithi119:> dpkg -s linux-image-generic-hwe-20.04 2024-06-30T12:44:06.662 INFO:teuthology.orchestra.run.smithi119.stdout:Package: linux-image-generic-hwe-20.04 2024-06-30T12:44:06.662 INFO:teuthology.orchestra.run.smithi119.stdout:Status: install ok installed 2024-06-30T12:44:06.662 INFO:teuthology.orchestra.run.smithi119.stdout:Priority: optional 2024-06-30T12:44:06.662 INFO:teuthology.orchestra.run.smithi119.stdout:Section: kernel 2024-06-30T12:44:06.662 INFO:teuthology.orchestra.run.smithi119.stdout:Installed-Size: 21 2024-06-30T12:44:06.662 INFO:teuthology.orchestra.run.smithi119.stdout:Maintainer: Ubuntu Kernel Team 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.stdout:Architecture: amd64 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.stdout:Source: linux-meta-hwe-5.15 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.stdout:Version: 5.15.0.113.123~20.04.1 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.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-113), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.stdout:Depends: linux-image-5.15.0-113-generic, linux-modules-extra-5.15.0-113-generic, linux-firmware, intel-microcode, amd64-microcode 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.stdout:Recommends: thermald 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.stdout:Description: Generic Linux kernel image 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.stdout: This package will always depend on the latest generic kernel image 2024-06-30T12:44:06.663 INFO:teuthology.orchestra.run.smithi119.stdout: available. 2024-06-30T12:44:06.663 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-113-generic 2024-06-30T12:44:06.664 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-06-30T12:44:06.664 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-06-30T12:44:06.664 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-06-30T12:44:06.664 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi119.front.sepia.ceph.com, path=None, version=distro) 2024-06-30T12:44:06.664 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-get clean 2024-06-30T12:44:06.764 INFO:teuthology.orchestra.run.smithi100.stdout:done 2024-06-30T12:44:06.767 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-get update 2024-06-30T12:44:06.798 INFO:teuthology.orchestra.run.smithi183.stdout:Reading package lists... 2024-06-30T12:44:06.823 DEBUG:teuthology.orchestra.run.smithi183:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-06-30T12:44:06.892 INFO:teuthology.orchestra.run.smithi183.stdout:Reading package lists... 2024-06-30T12:44:06.919 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-06-30T12:44:07.029 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-06-30T12:44:07.082 INFO:teuthology.orchestra.run.smithi183.stdout:Building dependency tree... 2024-06-30T12:44:07.082 INFO:teuthology.orchestra.run.smithi183.stdout:Reading state information... 2024-06-30T12:44:07.110 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-06-30T12:44:07.192 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-06-30T12:44:07.225 DEBUG:teuthology.orchestra.run.smithi100:> dpkg -s linux-image-generic-hwe-20.04 2024-06-30T12:44:07.271 INFO:teuthology.orchestra.run.smithi100.stdout:Package: linux-image-generic-hwe-20.04 2024-06-30T12:44:07.271 INFO:teuthology.orchestra.run.smithi100.stdout:Status: install ok installed 2024-06-30T12:44:07.271 INFO:teuthology.orchestra.run.smithi100.stdout:Priority: optional 2024-06-30T12:44:07.271 INFO:teuthology.orchestra.run.smithi100.stdout:Section: kernel 2024-06-30T12:44:07.271 INFO:teuthology.orchestra.run.smithi100.stdout:Installed-Size: 21 2024-06-30T12:44:07.271 INFO:teuthology.orchestra.run.smithi100.stdout:Maintainer: Ubuntu Kernel Team 2024-06-30T12:44:07.271 INFO:teuthology.orchestra.run.smithi100.stdout:Architecture: amd64 2024-06-30T12:44:07.272 INFO:teuthology.orchestra.run.smithi100.stdout:Source: linux-meta-hwe-5.15 2024-06-30T12:44:07.272 INFO:teuthology.orchestra.run.smithi100.stdout:Version: 5.15.0.113.123~20.04.1 2024-06-30T12:44:07.272 INFO:teuthology.orchestra.run.smithi100.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-113), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-06-30T12:44:07.272 INFO:teuthology.orchestra.run.smithi100.stdout:Depends: linux-image-5.15.0-113-generic, linux-modules-extra-5.15.0-113-generic, linux-firmware, intel-microcode, amd64-microcode 2024-06-30T12:44:07.272 INFO:teuthology.orchestra.run.smithi100.stdout:Recommends: thermald 2024-06-30T12:44:07.272 INFO:teuthology.orchestra.run.smithi100.stdout:Description: Generic Linux kernel image 2024-06-30T12:44:07.272 INFO:teuthology.orchestra.run.smithi100.stdout: This package will always depend on the latest generic kernel image 2024-06-30T12:44:07.272 INFO:teuthology.orchestra.run.smithi100.stdout: available. 2024-06-30T12:44:07.272 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-113-generic 2024-06-30T12:44:07.272 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-06-30T12:44:07.272 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-06-30T12:44:07.272 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-06-30T12:44:07.273 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi100.front.sepia.ceph.com, path=None, version=distro) 2024-06-30T12:44:07.273 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-get clean 2024-06-30T12:44:07.308 INFO:teuthology.orchestra.run.smithi183.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.113.123~20.04.1). 2024-06-30T12:44:07.308 INFO:teuthology.orchestra.run.smithi183.stdout:0 upgraded, 0 newly installed, 0 to remove and 309 not upgraded. 2024-06-30T12:44:07.311 DEBUG:teuthology.orchestra.run.smithi183:> dpkg -s linux-image-generic-hwe-20.04 2024-06-30T12:44:07.333 INFO:teuthology.orchestra.run.smithi183.stdout:Package: linux-image-generic-hwe-20.04 2024-06-30T12:44:07.333 INFO:teuthology.orchestra.run.smithi183.stdout:Status: install ok installed 2024-06-30T12:44:07.333 INFO:teuthology.orchestra.run.smithi183.stdout:Priority: optional 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Section: kernel 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Installed-Size: 21 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Maintainer: Ubuntu Kernel Team 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Architecture: amd64 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Source: linux-meta-hwe-5.15 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Version: 5.15.0.113.123~20.04.1 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.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-113), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Depends: linux-image-5.15.0-113-generic, linux-modules-extra-5.15.0-113-generic, linux-firmware, intel-microcode, amd64-microcode 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Recommends: thermald 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout:Description: Generic Linux kernel image 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout: This package will always depend on the latest generic kernel image 2024-06-30T12:44:07.334 INFO:teuthology.orchestra.run.smithi183.stdout: available. 2024-06-30T12:44:07.335 DEBUG:teuthology.orchestra.run.smithi183:> mktemp 2024-06-30T12:44:07.374 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-get update 2024-06-30T12:44:07.381 INFO:teuthology.orchestra.run.smithi183.stdout:/tmp/tmp.SwsTUKeTEb 2024-06-30T12:44:07.381 DEBUG:teuthology.orchestra.run.smithi183:> sudo cp /boot/grub/grub.cfg /tmp/tmp.SwsTUKeTEb 2024-06-30T12:44:07.394 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 0666 /tmp/tmp.SwsTUKeTEb 2024-06-30T12:44:07.470 DEBUG:teuthology.orchestra.remote:smithi183:/tmp/tmp.SwsTUKeTEb is 9KB 2024-06-30T12:44:07.484 DEBUG:teuthology.orchestra.run.smithi183:> rm -fr /tmp/tmp.SwsTUKeTEb 2024-06-30T12:44:07.491 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-06-30T12:44:07.511 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-06-30T12:44:07.520 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-06-30T12:44:07.541 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-06-30T12:44:07.546 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-06-30T12:44:07.546 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-06-30T12:44:07.546 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-06-30T12:44:07.581 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-113-generic 2024-06-30T12:44:07.581 DEBUG:teuthology.orchestra.run.smithi183:> sudo update-grub 2024-06-30T12:44:07.621 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:4 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-06-30T12:44:08.752 INFO:teuthology.orchestra.run.smithi119.stdout:Reading package lists... 2024-06-30T12:44:08.778 DEBUG:teuthology.orchestra.run.smithi119:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-06-30T12:44:08.849 INFO:teuthology.orchestra.run.smithi119.stdout:Reading package lists... 2024-06-30T12:44:08.860 INFO:teuthology.orchestra.run.smithi183.stderr:Sourcing file `/etc/default/grub' 2024-06-30T12:44:08.867 INFO:teuthology.orchestra.run.smithi183.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-06-30T12:44:08.878 INFO:teuthology.orchestra.run.smithi183.stderr:Generating grub configuration file ... 2024-06-30T12:44:09.038 INFO:teuthology.orchestra.run.smithi119.stdout:Building dependency tree... 2024-06-30T12:44:09.039 INFO:teuthology.orchestra.run.smithi119.stdout:Reading state information... 2024-06-30T12:44:09.184 INFO:teuthology.orchestra.run.smithi183.stderr:Found linux image: /boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:44:09.196 INFO:teuthology.orchestra.run.smithi183.stderr:Found initrd image: /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:44:09.260 INFO:teuthology.orchestra.run.smithi119.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.113.123~20.04.1). 2024-06-30T12:44:09.260 INFO:teuthology.orchestra.run.smithi119.stdout:0 upgraded, 0 newly installed, 0 to remove and 309 not upgraded. 2024-06-30T12:44:09.262 DEBUG:teuthology.orchestra.run.smithi119:> dpkg -s linux-image-generic-hwe-20.04 2024-06-30T12:44:09.285 INFO:teuthology.orchestra.run.smithi119.stdout:Package: linux-image-generic-hwe-20.04 2024-06-30T12:44:09.285 INFO:teuthology.orchestra.run.smithi119.stdout:Status: install ok installed 2024-06-30T12:44:09.285 INFO:teuthology.orchestra.run.smithi119.stdout:Priority: optional 2024-06-30T12:44:09.285 INFO:teuthology.orchestra.run.smithi119.stdout:Section: kernel 2024-06-30T12:44:09.285 INFO:teuthology.orchestra.run.smithi119.stdout:Installed-Size: 21 2024-06-30T12:44:09.285 INFO:teuthology.orchestra.run.smithi119.stdout:Maintainer: Ubuntu Kernel Team 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.stdout:Architecture: amd64 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.stdout:Source: linux-meta-hwe-5.15 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.stdout:Version: 5.15.0.113.123~20.04.1 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.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-113), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.stdout:Depends: linux-image-5.15.0-113-generic, linux-modules-extra-5.15.0-113-generic, linux-firmware, intel-microcode, amd64-microcode 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.stdout:Recommends: thermald 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.stdout:Description: Generic Linux kernel image 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.stdout: This package will always depend on the latest generic kernel image 2024-06-30T12:44:09.286 INFO:teuthology.orchestra.run.smithi119.stdout: available. 2024-06-30T12:44:09.286 DEBUG:teuthology.orchestra.run.smithi119:> mktemp 2024-06-30T12:44:09.325 INFO:teuthology.orchestra.run.smithi100.stdout:Reading package lists... 2024-06-30T12:44:09.334 INFO:teuthology.orchestra.run.smithi119.stdout:/tmp/tmp.FbSuuKV2zu 2024-06-30T12:44:09.334 DEBUG:teuthology.orchestra.run.smithi119:> sudo cp /boot/grub/grub.cfg /tmp/tmp.FbSuuKV2zu 2024-06-30T12:44:09.350 DEBUG:teuthology.orchestra.run.smithi100:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-06-30T12:44:09.351 DEBUG:teuthology.orchestra.run.smithi119:> sudo chmod 0666 /tmp/tmp.FbSuuKV2zu 2024-06-30T12:44:09.386 DEBUG:teuthology.orchestra.remote:smithi119:/tmp/tmp.FbSuuKV2zu is 9KB 2024-06-30T12:44:09.400 DEBUG:teuthology.orchestra.run.smithi119:> rm -fr /tmp/tmp.FbSuuKV2zu 2024-06-30T12:44:09.406 DEBUG:teuthology.orchestra.run.smithi119:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-06-30T12:44:09.420 INFO:teuthology.orchestra.run.smithi100.stdout:Reading package lists... 2024-06-30T12:44:09.463 DEBUG:teuthology.orchestra.run.smithi119:> set -ex 2024-06-30T12:44:09.463 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-06-30T12:44:09.463 DEBUG:teuthology.orchestra.run.smithi119:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-06-30T12:44:09.487 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-113-generic 2024-06-30T12:44:09.487 DEBUG:teuthology.orchestra.run.smithi119:> sudo update-grub 2024-06-30T12:44:09.600 INFO:teuthology.orchestra.run.smithi183.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-06-30T12:44:09.612 INFO:teuthology.orchestra.run.smithi183.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-06-30T12:44:09.633 INFO:teuthology.orchestra.run.smithi100.stdout:Building dependency tree... 2024-06-30T12:44:09.633 INFO:teuthology.orchestra.run.smithi100.stdout:Reading state information... 2024-06-30T12:44:09.865 INFO:teuthology.orchestra.run.smithi100.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.113.123~20.04.1). 2024-06-30T12:44:09.865 INFO:teuthology.orchestra.run.smithi100.stdout:0 upgraded, 0 newly installed, 0 to remove and 309 not upgraded. 2024-06-30T12:44:09.867 DEBUG:teuthology.orchestra.run.smithi100:> dpkg -s linux-image-generic-hwe-20.04 2024-06-30T12:44:09.887 INFO:teuthology.orchestra.run.smithi100.stdout:Package: linux-image-generic-hwe-20.04 2024-06-30T12:44:09.887 INFO:teuthology.orchestra.run.smithi100.stdout:Status: install ok installed 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Priority: optional 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Section: kernel 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Installed-Size: 21 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Maintainer: Ubuntu Kernel Team 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Architecture: amd64 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Source: linux-meta-hwe-5.15 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Version: 5.15.0.113.123~20.04.1 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.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-113), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Depends: linux-image-5.15.0-113-generic, linux-modules-extra-5.15.0-113-generic, linux-firmware, intel-microcode, amd64-microcode 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Recommends: thermald 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout:Description: Generic Linux kernel image 2024-06-30T12:44:09.888 INFO:teuthology.orchestra.run.smithi100.stdout: This package will always depend on the latest generic kernel image 2024-06-30T12:44:09.889 INFO:teuthology.orchestra.run.smithi100.stdout: available. 2024-06-30T12:44:09.889 DEBUG:teuthology.orchestra.run.smithi100:> mktemp 2024-06-30T12:44:09.895 INFO:teuthology.orchestra.run.smithi100.stdout:/tmp/tmp.cyR7PEQHCj 2024-06-30T12:44:09.895 DEBUG:teuthology.orchestra.run.smithi100:> sudo cp /boot/grub/grub.cfg /tmp/tmp.cyR7PEQHCj 2024-06-30T12:44:09.951 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod 0666 /tmp/tmp.cyR7PEQHCj 2024-06-30T12:44:09.992 DEBUG:teuthology.orchestra.remote:smithi100:/tmp/tmp.cyR7PEQHCj is 9KB 2024-06-30T12:44:10.006 DEBUG:teuthology.orchestra.run.smithi100:> rm -fr /tmp/tmp.cyR7PEQHCj 2024-06-30T12:44:10.012 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-06-30T12:44:10.071 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-06-30T12:44:10.071 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-06-30T12:44:10.071 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-06-30T12:44:10.110 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-113-generic 2024-06-30T12:44:10.110 DEBUG:teuthology.orchestra.run.smithi100:> sudo update-grub 2024-06-30T12:44:10.360 INFO:teuthology.orchestra.run.smithi183.stderr:done 2024-06-30T12:44:10.362 DEBUG:teuthology.orchestra.run.smithi183:> sudo shutdown -r now 2024-06-30T12:44:10.804 INFO:teuthology.orchestra.run.smithi119.stderr:Sourcing file `/etc/default/grub' 2024-06-30T12:44:10.809 INFO:teuthology.orchestra.run.smithi119.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-06-30T12:44:10.828 INFO:teuthology.orchestra.run.smithi119.stderr:Generating grub configuration file ... 2024-06-30T12:44:11.072 INFO:teuthology.orchestra.run.smithi119.stderr:Found linux image: /boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:44:11.083 INFO:teuthology.orchestra.run.smithi119.stderr:Found initrd image: /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:44:11.436 INFO:teuthology.orchestra.run.smithi119.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-06-30T12:44:11.445 INFO:teuthology.orchestra.run.smithi100.stderr:Sourcing file `/etc/default/grub' 2024-06-30T12:44:11.447 INFO:teuthology.orchestra.run.smithi119.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-06-30T12:44:11.455 INFO:teuthology.orchestra.run.smithi100.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-06-30T12:44:11.467 INFO:teuthology.orchestra.run.smithi100.stderr:Generating grub configuration file ... 2024-06-30T12:44:11.750 INFO:teuthology.orchestra.run.smithi100.stderr:Found linux image: /boot/vmlinuz-5.15.0-113-generic 2024-06-30T12:44:11.762 INFO:teuthology.orchestra.run.smithi100.stderr:Found initrd image: /boot/initrd.img-5.15.0-113-generic 2024-06-30T12:44:12.152 INFO:teuthology.orchestra.run.smithi100.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-06-30T12:44:12.164 INFO:teuthology.orchestra.run.smithi100.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-06-30T12:44:12.207 INFO:teuthology.orchestra.run.smithi119.stderr:done 2024-06-30T12:44:12.208 DEBUG:teuthology.orchestra.run.smithi119:> sudo shutdown -r now 2024-06-30T12:44:13.087 INFO:teuthology.orchestra.run.smithi100.stderr:done 2024-06-30T12:44:13.088 DEBUG:teuthology.orchestra.run.smithi100:> sudo shutdown -r now 2024-06-30T12:44:40.427 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-06-30T12:44:40.428 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-06-30T12:44:40.429 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:44:42.213 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-06-30T12:44:42.214 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-06-30T12:44:42.214 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:44:43.092 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-06-30T12:44:43.092 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-06-30T12:44:43.093 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:44:58.783 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.183 2024-06-30T12:45:00.574 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.119 2024-06-30T12:45:01.598 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-06-30T12:45:07.790 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-06-30T12:45:07.791 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:45:09.576 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-06-30T12:45:09.577 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:45:10.600 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-06-30T12:45:10.601 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:45:10.850 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.183 2024-06-30T12:45:12.642 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.119 2024-06-30T12:45:13.666 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-06-30T12:45:22.858 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-06-30T12:45:22.859 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:45:24.645 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-06-30T12:45:24.645 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:45:25.668 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-06-30T12:45:25.669 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:45:43.075 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.119 2024-06-30T12:45:44.098 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-06-30T12:45:54.575 DEBUG:teuthology.orchestra.run.smithi183:> true 2024-06-30T12:45:55.097 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-06-30T12:45:55.097 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-113-generic"... 2024-06-30T12:45:55.097 DEBUG:teuthology.orchestra.run.smithi183:> uname -r 2024-06-30T12:45:55.145 INFO:teuthology.orchestra.run.smithi183.stdout:5.15.0-113-generic 2024-06-30T12:45:55.146 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-113-generic vs 5.15.0-113-generic 2024-06-30T12:45:55.146 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-06-30T12:45:55.146 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-06-30T12:45:56.146 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-06-30T12:45:56.147 DEBUG:teuthology.orchestra.run.smithi183:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-06-30T12:45:56.217 INFO:teuthology.orchestra.run.smithi183.stdout:ttyS1 2024-06-30T12:45:56.242 DEBUG:teuthology.parallel:result is None 2024-06-30T12:45:58.076 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-06-30T12:45:58.077 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:45:58.459 DEBUG:teuthology.orchestra.run.smithi119:> true 2024-06-30T12:45:59.099 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-06-30T12:45:59.100 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:45:59.381 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-06-30T12:45:59.381 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-113-generic"... 2024-06-30T12:45:59.382 DEBUG:teuthology.orchestra.run.smithi119:> uname -r 2024-06-30T12:45:59.408 DEBUG:teuthology.orchestra.run.smithi100:> true 2024-06-30T12:45:59.428 INFO:teuthology.orchestra.run.smithi119.stdout:5.15.0-113-generic 2024-06-30T12:45:59.428 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-113-generic vs 5.15.0-113-generic 2024-06-30T12:45:59.428 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-06-30T12:45:59.428 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-06-30T12:45:59.989 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-06-30T12:45:59.990 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-113-generic"... 2024-06-30T12:45:59.990 DEBUG:teuthology.orchestra.run.smithi100:> uname -r 2024-06-30T12:46:00.038 INFO:teuthology.orchestra.run.smithi100.stdout:5.15.0-113-generic 2024-06-30T12:46:00.038 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-113-generic vs 5.15.0-113-generic 2024-06-30T12:46:00.038 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-06-30T12:46:00.039 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-06-30T12:46:00.429 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-06-30T12:46:00.429 DEBUG:teuthology.orchestra.run.smithi119:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-06-30T12:46:00.516 INFO:teuthology.orchestra.run.smithi119.stdout:ttyS1 2024-06-30T12:46:00.540 DEBUG:teuthology.parallel:result is None 2024-06-30T12:46:01.039 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-06-30T12:46:01.040 DEBUG:teuthology.orchestra.run.smithi100:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-06-30T12:46:01.129 INFO:teuthology.orchestra.run.smithi100.stdout:ttyS1 2024-06-30T12:46:01.158 DEBUG:teuthology.parallel:result is None 2024-06-30T12:46:01.159 INFO:teuthology.run_tasks:Running task internal.base... 2024-06-30T12:46:01.168 INFO:teuthology.task.internal:Creating test directory... 2024-06-30T12:46:01.168 DEBUG:teuthology.orchestra.run.smithi100:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-06-30T12:46:01.171 DEBUG:teuthology.orchestra.run.smithi119:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-06-30T12:46:01.173 DEBUG:teuthology.orchestra.run.smithi183:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-06-30T12:46:01.181 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-06-30T12:46:01.210 INFO:teuthology.run_tasks:Running task internal.archive... 2024-06-30T12:46:01.244 INFO:teuthology.task.internal:Creating archive directory... 2024-06-30T12:46:01.244 DEBUG:teuthology.orchestra.run.smithi100:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-06-30T12:46:01.246 DEBUG:teuthology.orchestra.run.smithi119:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-06-30T12:46:01.249 DEBUG:teuthology.orchestra.run.smithi183:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-06-30T12:46:01.274 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-06-30T12:46:01.280 INFO:teuthology.task.internal:Enabling coredump saving... 2024-06-30T12:46:01.281 DEBUG:teuthology.orchestra.run.smithi100:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-06-30T12:46:01.301 DEBUG:teuthology.orchestra.run.smithi119:> 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-06-30T12:46:01.312 DEBUG:teuthology.orchestra.run.smithi183:> 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-06-30T12:46:01.324 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T12:46:01.330 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T12:46:01.332 INFO:teuthology.orchestra.run.smithi119.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T12:46:01.332 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T12:46:01.339 INFO:teuthology.orchestra.run.smithi119.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T12:46:01.340 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T12:46:01.342 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-06-30T12:46:01.349 INFO:teuthology.task.internal:Configuring sudo... 2024-06-30T12:46:01.349 DEBUG:teuthology.orchestra.run.smithi100:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-06-30T12:46:01.377 DEBUG:teuthology.orchestra.run.smithi119:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-06-30T12:46:01.383 DEBUG:teuthology.orchestra.run.smithi183:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-06-30T12:46:01.399 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-06-30T12:46:01.408 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-06-30T12:46:01.408 DEBUG:teuthology.orchestra.run.smithi100:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-06-30T12:46:01.438 DEBUG:teuthology.orchestra.run.smithi119:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-06-30T12:46:01.440 DEBUG:teuthology.orchestra.run.smithi183:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-06-30T12:46:01.447 DEBUG:teuthology.orchestra.run.smithi100:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T12:46:01.491 DEBUG:teuthology.orchestra.run.smithi100:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T12:46:01.539 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-06-30T12:46:01.539 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-06-30T12:46:01.615 DEBUG:teuthology.orchestra.run.smithi119:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T12:46:01.622 DEBUG:teuthology.orchestra.run.smithi119:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T12:46:01.676 DEBUG:teuthology.orchestra.run.smithi119:> set -ex 2024-06-30T12:46:01.676 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-06-30T12:46:01.736 DEBUG:teuthology.orchestra.run.smithi183:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T12:46:01.744 DEBUG:teuthology.orchestra.run.smithi183:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T12:46:01.795 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-06-30T12:46:01.795 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-06-30T12:46:01.859 DEBUG:teuthology.orchestra.run.smithi100:> sudo service rsyslog restart 2024-06-30T12:46:01.861 DEBUG:teuthology.orchestra.run.smithi119:> sudo service rsyslog restart 2024-06-30T12:46:01.864 DEBUG:teuthology.orchestra.run.smithi183:> sudo service rsyslog restart 2024-06-30T12:46:01.946 INFO:teuthology.run_tasks:Running task internal.timer... 2024-06-30T12:46:01.953 INFO:teuthology.task.internal:Starting timer... 2024-06-30T12:46:01.954 INFO:teuthology.run_tasks:Running task pcp... 2024-06-30T12:46:02.001 INFO:teuthology.run_tasks:Running task selinux... 2024-06-30T12:46:02.012 DEBUG:teuthology.task.selinux:Excluding smithi100: OS 'ubuntu' does not support SELinux 2024-06-30T12:46:02.012 DEBUG:teuthology.task.selinux:Excluding smithi119: OS 'ubuntu' does not support SELinux 2024-06-30T12:46:02.012 DEBUG:teuthology.task.selinux:Excluding smithi183: OS 'ubuntu' does not support SELinux 2024-06-30T12:46:02.012 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-06-30T12:46:02.012 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-06-30T12:46:02.012 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-06-30T12:46:02.012 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-06-30T12:46:02.032 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-06-30T12:46:02.035 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-06-30T12:46:02.183 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-06-30T12:46:02.194 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-06-30T12:46:02.195 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi100.front.sepia.ceph.com,smithi119.front.sepia.ceph.com,smithi183.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-06-30T12:51:29.944 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi100.front.sepia.ceph.com'), Remote(name='ubuntu@smithi119.front.sepia.ceph.com'), Remote(name='ubuntu@smithi183.front.sepia.ceph.com')] 2024-06-30T12:51:29.946 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-06-30T12:51:29.947 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:51:30.041 DEBUG:teuthology.orchestra.run.smithi100:> true 2024-06-30T12:51:30.164 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-06-30T12:51:30.164 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-06-30T12:51:30.165 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:51:30.254 DEBUG:teuthology.orchestra.run.smithi119:> true 2024-06-30T12:51:30.380 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-06-30T12:51:30.380 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-06-30T12:51:30.381 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T12:51:30.471 DEBUG:teuthology.orchestra.run.smithi183:> true 2024-06-30T12:51:30.588 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-06-30T12:51:30.589 INFO:teuthology.run_tasks:Running task clock... 2024-06-30T12:51:30.601 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-06-30T12:51:30.601 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-06-30T12:51:30.601 DEBUG:teuthology.orchestra.run.smithi100:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T12:51:30.604 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-06-30T12:51:30.604 DEBUG:teuthology.orchestra.run.smithi119:> 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-06-30T12:51:30.606 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-06-30T12:51:30.606 DEBUG:teuthology.orchestra.run.smithi183:> 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-06-30T12:51:30.632 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-06-30T12:51:30.633 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: Command line: ntpd -gq 2024-06-30T12:51:30.633 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: proto: precision = 0.068 usec (-24) 2024-06-30T12:51:30.633 INFO:teuthology.orchestra.run.smithi100.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-06-30T12:51:30.634 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-06-30T12:51:30.634 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: restrict ::: KOD does nothing without LIMITED. 2024-06-30T12:51:30.634 INFO:teuthology.orchestra.run.smithi100.stderr:restrict ::: KOD does nothing without LIMITED. 2024-06-30T12:51:30.635 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: Listen and drop on 0 v6wildcard [::]:123 2024-06-30T12:51:30.635 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-06-30T12:51:30.635 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: Listen normally on 2 lo 127.0.0.1:123 2024-06-30T12:51:30.635 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: Listen normally on 3 enp3s0f1 172.21.15.100:123 2024-06-30T12:51:30.635 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: Listen normally on 4 lo [::1]:123 2024-06-30T12:51:30.635 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d733%5]:123 2024-06-30T12:51:30.636 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:30 ntpd[13144]: Listening on routing socket on fd #22 for interface updates 2024-06-30T12:51:30.637 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-06-30T12:51:30.637 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: Command line: ntpd -gq 2024-06-30T12:51:30.638 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: proto: precision = 0.093 usec (-23) 2024-06-30T12:51:30.638 INFO:teuthology.orchestra.run.smithi119.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-06-30T12:51:30.638 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-06-30T12:51:30.639 INFO:teuthology.orchestra.run.smithi119.stderr:restrict ::: KOD does nothing without LIMITED. 2024-06-30T12:51:30.640 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: restrict ::: KOD does nothing without LIMITED. 2024-06-30T12:51:30.640 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: Listen and drop on 0 v6wildcard [::]:123 2024-06-30T12:51:30.640 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-06-30T12:51:30.640 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: Listen normally on 2 lo 127.0.0.1:123 2024-06-30T12:51:30.640 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: Listen normally on 3 enp3s0f1 172.21.15.119:123 2024-06-30T12:51:30.640 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: Listen normally on 4 lo [::1]:123 2024-06-30T12:51:30.640 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d5ef%5]:123 2024-06-30T12:51:30.640 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:30 ntpd[13197]: Listening on routing socket on fd #22 for interface updates 2024-06-30T12:51:30.660 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-06-30T12:51:30.660 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: Command line: ntpd -gq 2024-06-30T12:51:30.660 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: proto: precision = 0.074 usec (-24) 2024-06-30T12:51:30.660 INFO:teuthology.orchestra.run.smithi183.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-06-30T12:51:30.661 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-06-30T12:51:30.661 INFO:teuthology.orchestra.run.smithi183.stderr:restrict ::: KOD does nothing without LIMITED. 2024-06-30T12:51:30.662 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: restrict ::: KOD does nothing without LIMITED. 2024-06-30T12:51:30.662 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: Listen and drop on 0 v6wildcard [::]:123 2024-06-30T12:51:30.662 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-06-30T12:51:30.662 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: Listen normally on 2 lo 127.0.0.1:123 2024-06-30T12:51:30.663 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: Listen normally on 3 enp3s0f1 172.21.15.183:123 2024-06-30T12:51:30.663 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: Listen normally on 4 lo [::1]:123 2024-06-30T12:51:30.663 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:8085%5]:123 2024-06-30T12:51:30.663 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:30 ntpd[13163]: Listening on routing socket on fd #22 for interface updates 2024-06-30T12:51:31.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:31.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:31 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:31.637 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:31 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.637 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:31 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:31 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:31 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:31 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:31.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:31 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:31.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:31.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:31.663 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:31 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:32.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:32 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:32.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:32 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:32.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:32 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:32.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:32 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:32.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:32 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:32.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:32 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:33.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:33.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:33.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:33.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:33 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:33.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:33.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:33 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:33.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:33.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:33 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:34.633 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:34 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:34.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:34 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:34.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:34 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:34.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:34 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:34.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:34 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:34.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:34 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:34.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:34 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:34.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:34 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:34.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:34 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:34.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:34 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:34.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:34 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:34.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:34 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:34.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:34 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:34.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:34 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:34.660 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:34 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:34.660 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:34 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:35.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:35.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:35.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:35 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:35.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:35.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:35.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:35.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:35 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:35.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:35.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:35 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:36.633 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:36 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:36.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:36 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:36.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:36 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:36.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:36 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:36.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:36 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:36.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:36 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:36.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:36 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:36.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:36 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:36.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:36 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:36.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:36 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:36.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:36 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:36.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:36 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:37.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:37.634 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:37.635 INFO:teuthology.orchestra.run.smithi100.stdout:30 Jun 12:51:37 ntpd[13144]: ntpd: time slew +0.002403 s 2024-06-30T12:51:37.635 INFO:teuthology.orchestra.run.smithi100.stdout:ntpd: time slew +0.002403s 2024-06-30T12:51:37.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-06-30T12:51:37.635 INFO:teuthology.orchestra.run.smithi100.stderr:30 Jun 12:51:37 ntpd[13144]: can't open /var/log/ntpstats/loopstats.20240630: Permission denied 2024-06-30T12:51:37.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.638 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stdout:30 Jun 12:51:37 ntpd[13197]: ntpd: time slew -0.002382 s 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stdout:ntpd: time slew -0.002382s 2024-06-30T12:51:37.639 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-06-30T12:51:37.640 INFO:teuthology.orchestra.run.smithi119.stderr:30 Jun 12:51:37 ntpd[13197]: can't open /var/log/ntpstats/loopstats.20240630: Permission denied 2024-06-30T12:51:37.660 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: can't open /var/log/ntpstats/rawstats.20240630: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: can't open /var/log/ntpstats/peerstats.20240630: Permission denied 2024-06-30T12:51:37.661 INFO:teuthology.orchestra.run.smithi183.stdout:30 Jun 12:51:37 ntpd[13163]: ntpd: time slew -0.000592 s 2024-06-30T12:51:37.662 INFO:teuthology.orchestra.run.smithi183.stdout:ntpd: time slew -0.000592s 2024-06-30T12:51:37.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-06-30T12:51:37.662 INFO:teuthology.orchestra.run.smithi183.stderr:30 Jun 12:51:37 ntpd[13163]: can't open /var/log/ntpstats/loopstats.20240630: Permission denied 2024-06-30T12:51:37.698 INFO:teuthology.orchestra.run.smithi100.stdout: remote refid st t when poll reach delay offset jitter 2024-06-30T12:51:37.698 INFO:teuthology.orchestra.run.smithi100.stdout:============================================================================== 2024-06-30T12:51:37.698 INFO:teuthology.orchestra.run.smithi100.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.698 INFO:teuthology.orchestra.run.smithi100.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.698 INFO:teuthology.orchestra.run.smithi100.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.698 INFO:teuthology.orchestra.run.smithi100.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.700 INFO:teuthology.orchestra.run.smithi119.stdout: remote refid st t when poll reach delay offset jitter 2024-06-30T12:51:37.700 INFO:teuthology.orchestra.run.smithi119.stdout:============================================================================== 2024-06-30T12:51:37.700 INFO:teuthology.orchestra.run.smithi119.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.700 INFO:teuthology.orchestra.run.smithi119.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.700 INFO:teuthology.orchestra.run.smithi119.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.700 INFO:teuthology.orchestra.run.smithi119.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.719 INFO:teuthology.orchestra.run.smithi183.stdout: remote refid st t when poll reach delay offset jitter 2024-06-30T12:51:37.719 INFO:teuthology.orchestra.run.smithi183.stdout:============================================================================== 2024-06-30T12:51:37.719 INFO:teuthology.orchestra.run.smithi183.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.719 INFO:teuthology.orchestra.run.smithi183.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.719 INFO:teuthology.orchestra.run.smithi183.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.719 INFO:teuthology.orchestra.run.smithi183.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:37.720 INFO:teuthology.run_tasks:Running task install... 2024-06-30T12:51:37.730 DEBUG:teuthology.task.install:project ceph 2024-06-30T12:51:37.730 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65'}} 2024-06-30T12:51:37.730 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65'} 2024-06-30T12:51:37.730 INFO:teuthology.task.install:Using flavor: default 2024-06-30T12:51:37.735 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-06-30T12:51:37.735 INFO:teuthology.task.install:extra packages: [] 2024-06-30T12:51:37.736 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-key list | grep Ceph 2024-06-30T12:51:37.736 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-key list | grep Ceph 2024-06-30T12:51:37.737 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-key list | grep Ceph 2024-06-30T12:51:37.836 INFO:teuthology.orchestra.run.smithi119.stderr:Warning: apt-key output should not be parsed (stdout is not a terminal) 2024-06-30T12:51:37.846 INFO:teuthology.orchestra.run.smithi100.stderr:Warning: apt-key output should not be parsed (stdout is not a terminal) 2024-06-30T12:51:37.862 INFO:teuthology.orchestra.run.smithi183.stderr:Warning: apt-key output should not be parsed (stdout is not a terminal) 2024-06-30T12:51:37.888 INFO:teuthology.orchestra.run.smithi119.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-06-30T12:51:37.889 INFO:teuthology.orchestra.run.smithi119.stdout:uid [ unknown] Ceph.com (release key) 2024-06-30T12:51:37.890 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-06-30T12:51:37.890 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T12:51:37.907 INFO:teuthology.orchestra.run.smithi100.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-06-30T12:51:37.907 INFO:teuthology.orchestra.run.smithi100.stdout:uid [ unknown] Ceph.com (release key) 2024-06-30T12:51:37.908 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-06-30T12:51:37.908 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T12:51:37.921 INFO:teuthology.orchestra.run.smithi183.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-06-30T12:51:37.921 INFO:teuthology.orchestra.run.smithi183.stdout:uid [ unknown] Ceph.com (release key) 2024-06-30T12:51:37.922 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-06-30T12:51:37.922 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T12:51:38.046 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 219, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 79, in install_packages with parallel() as p: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/deb.py", line 79, in _update_package_list_and_install log.info('Pulling from %s', builder.base_url) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 554, in base_url return self._get_base_url() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 856, in _get_base_url self.assert_result() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 937, in assert_result raise VersionNotFoundError(self._result.url) teuthology.exceptions.VersionNotFoundError: Failed to fetch package version from https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T12:51:38.048 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 637, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 219, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 79, in install_packages with parallel() as p: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/deb.py", line 79, in _update_package_list_and_install log.info('Pulling from %s', builder.base_url) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 554, in base_url return self._get_base_url() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 856, in _get_base_url self.assert_result() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 937, in assert_result raise VersionNotFoundError(self._result.url) teuthology.exceptions.VersionNotFoundError: Failed to fetch package version from https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T12:51:38.228 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=2c5e471581b849f49a2c58c4b542e457 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 637, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 219, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 79, in install_packages with parallel() as p: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/deb.py", line 79, in _update_package_list_and_install log.info('Pulling from %s', builder.base_url) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 554, in base_url return self._get_base_url() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 856, in _get_base_url self.assert_result() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 937, in assert_result raise VersionNotFoundError(self._result.url) teuthology.exceptions.VersionNotFoundError: Failed to fetch package version from https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T12:51:38.232 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-06-30T12:51:38.240 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-06-30T12:51:38.287 INFO:teuthology.task.clock:Checking final clock skew... 2024-06-30T12:51:38.287 DEBUG:teuthology.orchestra.run.smithi100:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T12:51:38.303 DEBUG:teuthology.orchestra.run.smithi119:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T12:51:38.307 DEBUG:teuthology.orchestra.run.smithi183:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T12:51:38.313 INFO:teuthology.orchestra.run.smithi100.stdout: remote refid st t when poll reach delay offset jitter 2024-06-30T12:51:38.313 INFO:teuthology.orchestra.run.smithi100.stdout:============================================================================== 2024-06-30T12:51:38.314 INFO:teuthology.orchestra.run.smithi100.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.314 INFO:teuthology.orchestra.run.smithi100.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.314 INFO:teuthology.orchestra.run.smithi100.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.314 INFO:teuthology.orchestra.run.smithi100.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.323 INFO:teuthology.orchestra.run.smithi119.stdout: remote refid st t when poll reach delay offset jitter 2024-06-30T12:51:38.324 INFO:teuthology.orchestra.run.smithi119.stdout:============================================================================== 2024-06-30T12:51:38.324 INFO:teuthology.orchestra.run.smithi119.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.324 INFO:teuthology.orchestra.run.smithi119.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.324 INFO:teuthology.orchestra.run.smithi119.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.324 INFO:teuthology.orchestra.run.smithi119.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.327 INFO:teuthology.orchestra.run.smithi183.stdout: remote refid st t when poll reach delay offset jitter 2024-06-30T12:51:38.328 INFO:teuthology.orchestra.run.smithi183.stdout:============================================================================== 2024-06-30T12:51:38.328 INFO:teuthology.orchestra.run.smithi183.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.328 INFO:teuthology.orchestra.run.smithi183.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.328 INFO:teuthology.orchestra.run.smithi183.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.328 INFO:teuthology.orchestra.run.smithi183.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-06-30T12:51:38.329 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-06-30T12:51:38.337 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-06-30T12:51:38.337 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-06-30T12:51:38.359 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-06-30T12:51:38.393 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-06-30T12:51:38.426 INFO:teuthology.task.internal:Duration was 336.472599 seconds 2024-06-30T12:51:38.427 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-06-30T12:51:38.459 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-06-30T12:51:38.460 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-06-30T12:51:38.464 DEBUG:teuthology.orchestra.run.smithi119:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-06-30T12:51:38.467 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-06-30T12:51:38.515 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-06-30T12:51:38.515 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi100.front.sepia.ceph.com 2024-06-30T12:51:38.516 DEBUG:teuthology.orchestra.run.smithi100:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-06-30T12:51:38.529 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi119.front.sepia.ceph.com 2024-06-30T12:51:38.529 DEBUG:teuthology.orchestra.run.smithi119:> 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-06-30T12:51:38.544 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi183.front.sepia.ceph.com 2024-06-30T12:51:38.544 DEBUG:teuthology.orchestra.run.smithi183:> 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-06-30T12:51:38.560 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-06-30T12:51:38.560 DEBUG:teuthology.orchestra.run.smithi100:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-06-30T12:51:38.573 DEBUG:teuthology.orchestra.run.smithi119:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-06-30T12:51:38.588 DEBUG:teuthology.orchestra.run.smithi183:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-06-30T12:51:38.646 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-06-30T12:51:38.646 DEBUG:teuthology.orchestra.run.smithi100:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-06-30T12:51:38.648 DEBUG:teuthology.orchestra.run.smithi119:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-06-30T12:51:38.650 DEBUG:teuthology.orchestra.run.smithi183:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-06-30T12:51:38.750 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-06-30T12:51:38.760 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-06-30T12:51:38.760 DEBUG:teuthology.orchestra.run.smithi100:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-06-30T12:51:38.776 DEBUG:teuthology.orchestra.run.smithi119:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-06-30T12:51:38.792 DEBUG:teuthology.orchestra.run.smithi183:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-06-30T12:51:38.808 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-06-30T12:51:38.818 DEBUG:teuthology.orchestra.run.smithi100:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-06-30T12:51:38.825 DEBUG:teuthology.orchestra.run.smithi119:> 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-06-30T12:51:38.836 DEBUG:teuthology.orchestra.run.smithi183:> 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-06-30T12:51:38.838 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern = core 2024-06-30T12:51:38.849 INFO:teuthology.orchestra.run.smithi119.stdout:kernel.core_pattern = core 2024-06-30T12:51:38.870 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern = core 2024-06-30T12:51:38.893 DEBUG:teuthology.orchestra.run.smithi100:> test -e /home/ubuntu/cephtest/archive/coredump 2024-06-30T12:51:38.908 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T12:51:38.908 DEBUG:teuthology.orchestra.run.smithi119:> test -e /home/ubuntu/cephtest/archive/coredump 2024-06-30T12:51:38.923 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T12:51:38.924 DEBUG:teuthology.orchestra.run.smithi183:> test -e /home/ubuntu/cephtest/archive/coredump 2024-06-30T12:51:38.940 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T12:51:38.940 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-06-30T12:51:38.950 INFO:teuthology.task.internal:Transferring archived files... 2024-06-30T12:51:38.951 DEBUG:teuthology.misc:Transferring archived files from smithi100:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552/remote/smithi100 2024-06-30T12:51:38.952 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-06-30T12:51:38.976 DEBUG:teuthology.misc:Transferring archived files from smithi119:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552/remote/smithi119 2024-06-30T12:51:38.977 DEBUG:teuthology.orchestra.run.smithi119:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-06-30T12:51:39.002 DEBUG:teuthology.misc:Transferring archived files from smithi183:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749552/remote/smithi183 2024-06-30T12:51:39.003 DEBUG:teuthology.orchestra.run.smithi183:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-06-30T12:51:39.027 INFO:teuthology.task.internal:Removing archive directory... 2024-06-30T12:51:39.027 DEBUG:teuthology.orchestra.run.smithi100:> rm -rf -- /home/ubuntu/cephtest/archive 2024-06-30T12:51:39.029 DEBUG:teuthology.orchestra.run.smithi119:> rm -rf -- /home/ubuntu/cephtest/archive 2024-06-30T12:51:39.044 DEBUG:teuthology.orchestra.run.smithi183:> rm -rf -- /home/ubuntu/cephtest/archive 2024-06-30T12:51:39.070 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-06-30T12:51:39.080 INFO:teuthology.task.internal:Not uploading archives. 2024-06-30T12:51:39.081 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-06-30T12:51:39.101 INFO:teuthology.task.internal:Tidying up after the test... 2024-06-30T12:51:39.102 DEBUG:teuthology.orchestra.run.smithi100:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-06-30T12:51:39.104 DEBUG:teuthology.orchestra.run.smithi119:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-06-30T12:51:39.106 DEBUG:teuthology.orchestra.run.smithi183:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-06-30T12:51:39.110 INFO:teuthology.orchestra.run.smithi100.stdout: 1048602 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jun 30 12:51 /home/ubuntu/cephtest 2024-06-30T12:51:39.112 INFO:teuthology.orchestra.run.smithi119.stdout: 1048601 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jun 30 12:51 /home/ubuntu/cephtest 2024-06-30T12:51:39.118 INFO:teuthology.orchestra.run.smithi183.stdout: 1048601 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jun 30 12:51 /home/ubuntu/cephtest 2024-06-30T12:51:39.120 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-06-30T12:51:39.136 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-06-30T12:51:39.205 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_20.04 agent/on mon_election/connectivity task/test_host_drain} duration: 336.472599029541 failure_reason: Failed to fetch package version from https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=2c5e471581b849f49a2c58c4b542e457 status: fail success: false 2024-06-30T12:51:39.205 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-06-30T12:51:39.282 INFO:teuthology.run:FAIL