0s autopkgtest: DBG: testbed init 0s autopkgtest [23:09:01]: starting date and time: 2025-02-15 23:09:01+0000 0s autopkgtest [23:09:01]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [23:09:01]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.h1yb8ody/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade ipmitool --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-32.secgroup --name adt-plucky-s390x-ipmitool-20250215-230900-juju-7f2275-prod-proposed-migration-environment-15-372aeff9-c870-4946-aeba-250a9a372d7c --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.zQm89p 103s autopkgtest: DBG: sending command to testbed: print-execute-command 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.997ygo_1/runcmd 103s autopkgtest: DBG: sending command to testbed: capabilities 103s autopkgtest: DBG: got reply from testbed: ok reboot revert-full-system isolation-machine suggested-normal-user=ubuntu revert root-on-testbed 103s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert-full-system', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet'] 103s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zQm89p'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.zQm89p/wrapper.sh 103s autopkgtest: DBG: got reply from testbed: ok 103s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zQm89p/wrapper.sh'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [23:10:45]: testbed dpkg architecture: s390x 104s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [23:10:45]: testbed apt version: 2.9.28 104s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed has eatmydata 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [23:10:45]: @@@@@@@@@@@@@@@@@@@@ test bed setup 104s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [23:10:45]: testbed release detected to be: None 104s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT source: Types: deb deb-src 105s URIs: http://ftpmaster.internal/ubuntu/ 105s Suites: plucky-proposed 105s Components: main restricted universe multiverse 105s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 105s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 105s Package: * 105s Pin: release plucky-proposed 105s Pin-Priority: 500 105s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [23:10:46]: updating testbed package index (apt update) 105s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 105s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 106s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 106s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 106s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 106s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 106s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 106s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 106s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 106s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 106s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 106s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 106s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 106s Fetched 2073 kB in 1s (1839 kB/s) 107s Reading package lists... 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 100 107s 107s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 107s Pin: release plucky-proposed 107s Pin-Priority: 995 107s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.zQm89p/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 108s + lsb_release --codename --short 108s + RELEASE=plucky 108s + cat 108s + [ plucky != trusty ] 108s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 108s Reading package lists... 108s Building dependency tree... 108s Reading state information... 108s Calculating upgrade... 108s The following packages were automatically installed and are no longer required: 108s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 108s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 108s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 108s linux-tools-6.11.0-8-generic 108s Use 'sudo apt autoremove' to remove them. 108s The following packages will be upgraded: 108s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 108s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 108s Need to get 1155 kB of archives. 108s After this operation, 16.4 kB of additional disk space will be used. 108s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 108s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 108s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 109s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 109s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 109s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 109s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 109s Preconfiguring packages ... 109s Fetched 1155 kB in 1s (1522 kB/s) 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 109s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 109s Setting up dash (0.5.12-12ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 109s (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 ... 80969 files and directories currently installed.) 109s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 109s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 109s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 110s (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 ... 80969 files and directories currently installed.) 110s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 110s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 110s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 110s (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 ... 80969 files and directories currently installed.) 110s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 110s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 110s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 110s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 110s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 110s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 110s Setting up libtasn1-6:s390x (4.20.0-2) ... 110s Processing triggers for libc-bin (2.40-4ubuntu1) ... 110s Processing triggers for man-db (2.13.0-1) ... 110s Processing triggers for debianutils (5.21) ... 110s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 110s + /usr/lib/apt/apt-helper analyze-pattern ?true 110s + uname -r 110s + sed s/\./\\./g 110s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 110s + apt list ?obsolete 110s + tail -n+2 110s + cut -d/ -f1 110s + grep -v ^linux-.*6\.12\.0-15-generic.* 110s + true 110s + obsolete_pkgs= 110s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 110s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s The following packages will be REMOVED: 111s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 111s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 111s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 111s linux-tools-6.11.0-8-generic* 111s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 111s After this operation, 167 MB disk space will be freed. 111s (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 ... 80969 files and directories currently installed.) 111s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 111s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 111s Removing libpython3.12t64:s390x (3.12.9-1) ... 111s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 111s Removing libnsl2:s390x (1.3.0-3build3) ... 111s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 111s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 111s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 112s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s (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 ... 55869 files and directories currently installed.) 112s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 112s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 112s + grep -q trusty /etc/lsb-release 112s + [ ! -d /usr/share/doc/unattended-upgrades ] 112s + [ ! -d /usr/share/doc/lxd ] 112s + [ ! -d /usr/share/doc/lxd-client ] 112s + [ ! -d /usr/share/doc/snapd ] 112s + type iptables 112s + cat 112s + chmod 755 /etc/rc.local 112s + . /etc/rc.local 112s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 112s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 113s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 113s + uname -m 113s + [ s390x = ppc64le ] 113s + [ -d /run/systemd/system ] 113s + systemd-detect-virt --quiet --vm 113s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 113s + cat 113s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 113s + echo COMPRESS=lz4 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [23:10:54]: upgrading testbed (apt dist-upgrade and autopurge) 113s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 113s Starting 2 pkgProblemResolver with broken count: 0 113s Done 113s Entering ResolveByKeep 113s 114s The following packages will be upgraded: 114s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 114s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 114s Need to get 10.7 MB of archives. 114s After this operation, 305 kB of additional disk space will be used. 114s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 114s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 114s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 114s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 115s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 115s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 115s Preconfiguring packages ... 115s Fetched 10.7 MB in 1s (10.1 MB/s) 115s (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 ... 55867 files and directories currently installed.) 115s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 115s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 115s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 115s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 115s Checking for services that may need to be restarted... 115s Checking init scripts... 115s Checking for services that may need to be restarted... 115s Checking init scripts... 115s Stopping some services possibly affected by the upgrade (will be restarted later): 115s cron: stopping...done. 115s 115s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 115s Setting up libc6:s390x (2.41-1ubuntu1) ... 116s Checking for services that may need to be restarted... 116s Checking init scripts... 116s Restarting services possibly affected by the upgrade: 116s cron: restarting...done. 116s 116s Services restarted successfully. 116s (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 ... 55868 files and directories currently installed.) 116s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 116s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 116s Setting up libc-bin (2.41-1ubuntu1) ... 116s (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 ... 55868 files and directories currently installed.) 116s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 116s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 116s Setting up iproute2 (6.13.0-1ubuntu1) ... 116s Setting up locales (2.41-1ubuntu1) ... 116s Installing new version of config file /etc/locale.alias ... 116s Generating locales (this might take a while)... 118s en_US.UTF-8... done 118s Generation complete. 118s Setting up libc-dev-bin (2.41-1ubuntu1) ... 118s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 118s Processing triggers for man-db (2.13.0-1) ... 119s Processing triggers for systemd (257.2-3ubuntu1) ... 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 120s Reading package lists... 120s Building dependency tree... 120s Reading state information... 120s Starting pkgProblemResolver with broken count: 0 120s Starting 2 pkgProblemResolver with broken count: 0 120s Done 120s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.zQm89p/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 1 120s autopkgtest [23:11:01]: rebooting testbed after setup commands that affected boot 120s autopkgtest: DBG: sending command to testbed: reboot 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zQm89p'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.zQm89p/autopkgtest-reboot 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zQm89p'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.zQm89p/autopkgtest-reboot-prepare 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest [23:11:23]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 142s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zQm89p/testbed-packages"], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/testbed-packages /tmp/autopkgtest-work.h1yb8ody/out/testbed-packages 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 143s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zQm89p'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.zQm89p/autopkgtest-reboot 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zQm89p'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.zQm89p/autopkgtest-reboot-prepare 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zQm89p/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: Binaries: initialising 145s autopkgtest [23:11:26]: @@@@@@@@@@@@@@@@@@@@ apt-source ipmitool 145s autopkgtest: DBG: blame += ipmitool 145s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 145s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'ipmitool'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^ipmitool$'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'ipmitool=1.8.19-7ubuntu1'], kind short, sout pipe, serr raw, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: install_deps: deps_new=[] 146s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.zQm89p/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source ipmitool=1.8.19-7ubuntu1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x ipmitool_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 146s + cd / 146s + mktemp -d /tmp/autopkgtest.zQm89p/build.XXX 146s + builddir=/tmp/autopkgtest.zQm89p/build.zE9 146s + cd /tmp/autopkgtest.zQm89p/build.zE9 146s + apt-get source -d -q --only-source ipmitool=1.8.19-7ubuntu1 147s + OUT=Reading package lists... 147s NOTICE: 'ipmitool' packaging is maintained in the 'Git' version control system at: 147s git://git.jff.email/ipmitool.git 147s Please use: 147s git clone git://git.jff.email/ipmitool.git 147s to retrieve the latest (possibly unreleased) updates to the package. 147s Need to get 2198 kB of source archives. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (dsc) [2246 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (tar) [641 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (diff) [1555 kB] 147s Fetched 2198 kB in 1s (2892 kB/s) 147s Download complete and in download only mode 147s + [ -n ] 147s + echo Reading package lists... 147s NOTICE: 'ipmitool' packaging is maintained in the 'Git' version control system at: 147s git://git.jff.email/ipmitool.git 147s Please use: 147s git clone git://git.jff.email/ipmitool.git 147s to retrieve the latest (possibly unreleased) updates to the package. 147s Need to get 2198 kB of source archives. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (dsc) [2246 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (tar) [641 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (diff) [1555 kB] 147s Fetched 2198 kB in 1s (2892 kB/s) 147s Download complete and in download only mode 147s + grep ^Get: 147s Get:1 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (dsc) [2246 B] 147s Get:2 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (tar) [641 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/universe ipmitool 1.8.19-7ubuntu1 (diff) [1555 kB] 147s + dpkg-source -x ipmitool_1.8.19-7ubuntu1.dsc src 147s gpgv: Signature made Tue Sep 10 17:20:23 2024 UTC 147s gpgv: using RSA key E92FD0B36B14F1F4D8E0EB2F106DA1C8C3CBBF14 147s gpgv: Can't check signature: No public key 147s dpkg-source: warning: cannot verify inline signature for ./ipmitool_1.8.19-7ubuntu1.dsc: no acceptable signature found 147s + chmod -R a+rX . 147s + cd src/. 147s + pwd 147s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest [23:11:28]: testing package ipmitool version 1.8.19-7ubuntu1 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/build.zE9/src/debian/ /tmp/autopkgtest-work.h1yb8ody/out/pkg/debian/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: processing dependency ipmitool 148s autopkgtest: DBG: marked alternatives ['ipmitool'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name smoke path debian/tests/smoke command "None" restrictions ['allow-stderr', 'superficial'] features [] depends ['ipmitool'] 148s autopkgtest: DBG: processing dependency ipmitool 148s autopkgtest: DBG: marked alternatives ['ipmitool'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency python3-libvirt 148s autopkgtest: DBG: processing dependency virtualbmc 148s autopkgtest: DBG: processing dependency bridge-utils 148s autopkgtest: DBG: processing dependency libvirt-clients 148s autopkgtest: DBG: processing dependency libvirt-daemon-system 148s autopkgtest: DBG: processing dependency libxml2-utils 148s autopkgtest: DBG: processing dependency linux-image-amd64 [amd64] | linux-generic [amd64] 148s autopkgtest: DBG: processing dependency qemu-kvm 148s autopkgtest: DBG: processing dependency qemu-system 148s autopkgtest: DBG: Test defined: name qemuvbmc path debian/tests/qemuvbmc command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root', 'skip-not-installable', 'skippable'] features [] depends ['ipmitool', 'python3-libvirt', 'virtualbmc', 'bridge-utils', 'libvirt-clients', 'libvirt-daemon-system', 'libxml2-utils', 'linux-image-amd64 [amd64] | linux-generic [amd64]', 'qemu-kvm', 'qemu-system'] 148s autopkgtest [23:11:29]: build not needed 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/build.zE9/src/ /tmp/autopkgtest-work.h1yb8ody/out/tests-tree/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: processing dependency ipmitool 148s autopkgtest: DBG: marked alternatives ['ipmitool'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name smoke path debian/tests/smoke command "None" restrictions ['allow-stderr', 'superficial'] features [] depends ['ipmitool'] 148s autopkgtest: DBG: processing dependency ipmitool 148s autopkgtest: DBG: marked alternatives ['ipmitool'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency python3-libvirt 148s autopkgtest: DBG: processing dependency virtualbmc 148s autopkgtest: DBG: processing dependency bridge-utils 148s autopkgtest: DBG: processing dependency libvirt-clients 148s autopkgtest: DBG: processing dependency libvirt-daemon-system 148s autopkgtest: DBG: processing dependency libxml2-utils 148s autopkgtest: DBG: processing dependency linux-image-amd64 [amd64] | linux-generic [amd64] 148s autopkgtest: DBG: processing dependency qemu-kvm 148s autopkgtest: DBG: processing dependency qemu-system 148s autopkgtest: DBG: Test defined: name qemuvbmc path debian/tests/qemuvbmc command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root', 'skip-not-installable', 'skippable'] features [] depends ['ipmitool', 'python3-libvirt', 'virtualbmc', 'bridge-utils', 'libvirt-clients', 'libvirt-daemon-system', 'libxml2-utils', 'linux-image-amd64 [amd64] | linux-generic [amd64]', 'qemu-kvm', 'qemu-system'] 148s autopkgtest [23:11:29]: test smoke: preparing testbed 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['ipmitool'] 148s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 148s autopkgtest: DBG: install_deps: deps_new=['ipmitool'] 148s autopkgtest: DBG: install-deps: satisfying ipmitool 148s autopkgtest: DBG: can use apt-get on testbed: True 148s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'ipmitool'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 149s Reading package lists... 149s Building dependency tree... 149s Reading state information... 149s Starting pkgProblemResolver with broken count: 0 149s Starting 2 pkgProblemResolver with broken count: 0 149s Done 149s The following NEW packages will be installed: 149s freeipmi-common ipmitool libfreeipmi17 149s 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded. 149s Need to get 3114 kB of archives. 149s After this operation, 11.9 MB of additional disk space will be used. 149s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x freeipmi-common all 1.6.15-1 [183 kB] 150s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libfreeipmi17 s390x 1.6.15-1 [902 kB] 150s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x ipmitool s390x 1.8.19-7ubuntu1 [2030 kB] 150s Fetched 3114 kB in 1s (4355 kB/s) 150s Selecting previously unselected package freeipmi-common. 150s (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 ... 55869 files and directories currently installed.) 150s Preparing to unpack .../freeipmi-common_1.6.15-1_all.deb ... 150s Unpacking freeipmi-common (1.6.15-1) ... 150s Selecting previously unselected package libfreeipmi17. 150s Preparing to unpack .../libfreeipmi17_1.6.15-1_s390x.deb ... 150s Unpacking libfreeipmi17 (1.6.15-1) ... 150s Selecting previously unselected package ipmitool. 150s Preparing to unpack .../ipmitool_1.8.19-7ubuntu1_s390x.deb ... 150s Unpacking ipmitool (1.8.19-7ubuntu1) ... 150s Setting up freeipmi-common (1.6.15-1) ... 150s Setting up libfreeipmi17 (1.6.15-1) ... 150s Setting up ipmitool (1.8.19-7ubuntu1) ... 151s ipmievd.service is a disabled or a static unit, not starting it. 151s Processing triggers for man-db (2.13.0-1) ... 152s Processing triggers for install-info (7.1.1-1) ... 152s Processing triggers for libc-bin (2.41-1ubuntu1) ... 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'ipmitool'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zQm89p/smoke-packages.all"], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/smoke-packages.all /tmp/autopkgtest-work.h1yb8ody/out/smoke-packages.all 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.zQm89p/build.zE9/src'], kind short, sout raw, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.zQm89p/build.zE9/src already exists 153s autopkgtest [23:11:34]: test smoke: [----------------------- 153s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.zQm89p/wrapper.sh --debug --artifacts=/tmp/autopkgtest.zQm89p/smoke-artifacts --chdir=/tmp/autopkgtest.zQm89p/build.zE9/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.zQm89p/smoke-stderr --stdout=/tmp/autopkgtest.zQm89p/smoke-stdout --tmp=/tmp/autopkgtest.zQm89p/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.zQm89p/build.zE9/src/debian/tests/smoke -- /tmp/autopkgtest.zQm89p/build.zE9/src/debian/tests/smoke"], kind test, sout raw, serr raw, env [] 153s /tmp/autopkgtest.zQm89p/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.zQm89p/smoke-artifacts 153s /tmp/autopkgtest.zQm89p/wrapper.sh: changing to directory: /tmp/autopkgtest.zQm89p/build.zE9/src 153s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 153s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 153s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 153s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 153s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: LANG=C.UTF-8 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LANGUAGE 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_ADDRESS 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_ALL 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_COLLATE 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_CTYPE 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_IDENTIFICATION 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_MEASUREMENT 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_MESSAGES 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_MONETARY 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_NAME 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_NUMERIC 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_PAPER 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_TELEPHONE 153s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_TIME 153s /tmp/autopkgtest.zQm89p/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 153s /tmp/autopkgtest.zQm89p/wrapper.sh: pretending to be a login shell 153s /tmp/autopkgtest.zQm89p/wrapper.sh: will write standard error to /tmp/autopkgtest.zQm89p/smoke-stderr 153s /tmp/autopkgtest.zQm89p/wrapper.sh: will write stdout to /tmp/autopkgtest.zQm89p/smoke-stdout 153s /tmp/autopkgtest.zQm89p/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.zQm89p/autopkgtest_tmp 153s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 153s /tmp/autopkgtest.zQm89p/wrapper.sh: marking as executable: /tmp/autopkgtest.zQm89p/build.zE9/src/debian/tests/smoke 153s /tmp/autopkgtest.zQm89p/wrapper.sh: command to run: /tmp/autopkgtest.zQm89p/build.zE9/src/debian/tests/smoke 153s /tmp/autopkgtest.zQm89p/wrapper.sh: copying /tmp/tmp.acocfe9x0L/out to stdout and file: /tmp/autopkgtest.zQm89p/smoke-stdout 153s /tmp/autopkgtest.zQm89p/wrapper.sh: copying /tmp/tmp.acocfe9x0L/err to standard error and file: /tmp/autopkgtest.zQm89p/smoke-stdout 153s /tmp/autopkgtest.zQm89p/wrapper.sh: writing script pid 1517 to /tmp/autopkgtest_script_pid 153s + ipmitool -h 153s ipmitool version 1.8.19 153s 153s usage: ipmitool [options...] 153s 153s -h This help 153s -V Show version information 153s -v Verbose (can use multiple times) 153s -c Display output in comma separated format 153s -d N Specify a /dev/ipmiN device to use (default=0) 153s -I intf Interface to use 153s -H hostname Remote host name for LAN interface 153s -p port Remote RMCP port [default=623] 153s -U username Remote session username 153s -f file Read remote session password from file 153s -z size Change Size of Communication Channel (OEM) 153s -S sdr Use local file for remote SDR cache 153s -D tty:b[:s] Specify the serial device, baud rate to use 153s and, optionally, specify that interface is the system one 153s -4 Use only IPv4 153s -6 Use only IPv6 153s -a Prompt for remote password 153s -Y Prompt for the Kg key for IPMIv2 authentication 153s -e char Set SOL escape character 153s -C ciphersuite Cipher suite to be used by lanplus interface 153s -k key Use Kg key for IPMIv2 authentication 153s -y hex_key Use hexadecimal-encoded Kg key for IPMIv2 authentication 153s -L level Remote session privilege level [default=ADMINISTRATOR] 153s Append a '+' to use name/privilege lookup in RAKP1 153s -A authtype Force use of auth type NONE, PASSWORD, MD2, MD5 or OEM 153s -P password Remote session password 153s -E Read password from IPMI_PASSWORD environment variable 153s -K Read kgkey from IPMI_KGKEY environment variable 153s -m address Set local IPMB address 153s -b channel Set destination channel for bridged request 153s -t address Bridge request to remote target address 153s -B channel Set transit channel for bridged request (dual bridge) 153s -T address Set transit address for bridge request (dual bridge) 153s -l lun Set destination lun for raw commands 153s -o oemtype Setup for OEM (use 'list' to see available OEM types) 153s -O seloem Use file for OEM SEL event descriptions 153s -N seconds Specify timeout for lan [default=2] / lanplus [default=1] interface 153s -R retry Set the number of retries for lan/lanplus interface [default=4] 153s -Z Display all dates in UTC 153s 153s Interfaces: 153s open Linux OpenIPMI Interface [default] 153s imb Intel IMB Interface 153s lan IPMI v1.5 LAN Interface 153s lanplus IPMI v2.0 RMCP+ LAN Interface 153s free FreeIPMI IPMI Interface 153s serial-terminal Serial Interface, Terminal Mode 153s serial-basic Serial Interface, Basic Mode 153s dummy Linux DummyIPMI Interface 153s usb IPMI USB Interface(OEM Interface for AMI Devices) 153s 153s Commands: 153s raw Send a RAW IPMI request and print response 153s i2c Send an I2C Master Write-Read command and print response 153s spd Print SPD info from remote I2C device 153s lan Configure LAN Channels 153s chassis Get chassis status and set power state 153s power Shortcut to chassis power commands 153s event Send pre-defined events to MC 153s mc Management Controller status and global enables 153s sdr Print Sensor Data Repository entries and readings 153s sensor Print detailed sensor information 153s fru Print built-in FRU and scan SDR for FRU locators 153s gendev Read/Write Device associated with Generic Device locators sdr 153s sel Print System Event Log (SEL) 153s pef Configure Platform Event Filtering (PEF) 153s sol Configure and connect IPMIv2.0 Serial-over-LAN 153s tsol Configure and connect with Tyan IPMIv1.5 Serial-over-LAN 153s isol Configure IPMIv1.5 Serial-over-LAN 153s user Configure Management Controller users 153s channel Configure Management Controller channels 153s session Print session information 153s dcmi Data Center Management Interface 153s nm Node Manager Interface 153s sunoem OEM Commands for Sun servers 153s kontronoem OEM Commands for Kontron devices 153s picmg Run a PICMG/ATCA extended cmd 153s fwum Update IPMC using Kontron OEM Firmware Update Manager 153s firewall Configure Firmware Firewall 153s delloem OEM Commands for Dell systems 153s shell Launch interactive IPMI shell 153s exec Run list of commands from file 153s set Set runtime variable for shell and exec 153s hpm Update HPM components using PICMG HPM.1 file 153s ekanalyzer run FRU-Ekeying analyzer using FRU files 153s ime Update Intel Manageability Engine Firmware 153s vita Run a VITA 46.11 extended cmd 153s lan6 Configure IPv6 LAN Channels 153s 153s + ipmitool -V 153s ipmitool version 1.8.19 153s /tmp/autopkgtest.zQm89p/wrapper.sh: checking for leaked background processes... 153s /tmp/autopkgtest.zQm89p/wrapper.sh: waiting for tee/cat subprocesses... 153s /tmp/autopkgtest.zQm89p/wrapper.sh: cleaning up... 153s /tmp/autopkgtest.zQm89p/wrapper.sh: Exit status: 0 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest [23:11:34]: test smoke: -----------------------] 153s autopkgtest: DBG: testbed executing test finished with exit status 0 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/smoke-stdout /tmp/autopkgtest-work.h1yb8ody/out/smoke-stdout 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/smoke-stderr /tmp/autopkgtest-work.h1yb8ody/out/smoke-stderr 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest [23:11:35]: test smoke: - - - - - - - - - - results - - - - - - - - - - 154s smoke PASS (superficial) 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/smoke-artifacts/ /tmp/autopkgtest-work.h1yb8ody/out/artifacts/ 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.zQm89p/smoke-artifacts', '/tmp/autopkgtest.zQm89p/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [23:11:35]: test qemuvbmc: preparing testbed 154s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['ipmitool'], deps_new=['ipmitool', 'python3-libvirt', 'virtualbmc', 'bridge-utils', 'libvirt-clients', 'libvirt-daemon-system', 'libxml2-utils', 'linux-image-amd64 [amd64] | linux-generic [amd64]', 'qemu-kvm', 'qemu-system'] 154s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 154s autopkgtest: DBG: install_deps: deps_new=['ipmitool', 'python3-libvirt', 'virtualbmc', 'bridge-utils', 'libvirt-clients', 'libvirt-daemon-system', 'libxml2-utils', 'linux-image-amd64 [amd64] | linux-generic [amd64]', 'qemu-kvm', 'qemu-system'] 154s autopkgtest: DBG: install-deps: satisfying ipmitool, python3-libvirt, virtualbmc, bridge-utils, libvirt-clients, libvirt-daemon-system, libxml2-utils, linux-image-amd64 [amd64] | linux-generic [amd64], qemu-kvm, qemu-system 154s autopkgtest: DBG: can use apt-get on testbed: True 154s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'ipmitool, python3-libvirt, virtualbmc, bridge-utils, libvirt-clients, libvirt-daemon-system, libxml2-utils, linux-image-amd64 [amd64] | linux-generic [amd64], qemu-kvm, qemu-system'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 154s Reading package lists... 154s Building dependency tree... 154s Reading state information... 155s Starting pkgProblemResolver with broken count: 0 155s Starting 2 pkgProblemResolver with broken count: 0 155s Done 155s The following NEW packages will be installed: 155s acl bridge-utils dnsmasq-base docutils-common ipxe-qemu libasound2-data 155s libasound2t64 libbrlapi0.8 libcacard0 libduktape207 libfdt1 libjpeg-turbo8 155s libjpeg8 libnorm1t64 libpciaccess0 libpcsclite1 libpgm-5.3-0t64 155s libpixman-1-0 librdmacm1t64 libslirp0 libsodium23 libssh-4 liburing2 155s libusbredirparser1t64 libvirt-clients libvirt-common libvirt-daemon 155s libvirt-daemon-common libvirt-daemon-config-network 155s libvirt-daemon-config-nwfilter libvirt-daemon-driver-network 155s libvirt-daemon-driver-nodedev libvirt-daemon-driver-nwfilter 155s libvirt-daemon-driver-qemu libvirt-daemon-driver-secret 155s libvirt-daemon-driver-storage libvirt-daemon-log libvirt-daemon-system 155s libvirt0 libxml2-utils libzmq5 mdevctl opensbi polkitd python3-autopage 155s python3-cliff python3-cmd2 python3-dateutil python3-docutils 155s python3-importlib-metadata python3-libvirt python3-pbr python3-prettytable 155s python3-pyghmi python3-pyperclip python3-roman python3-six python3-stevedore 155s python3-virtualbmc python3-wcwidth python3-zmq qemu-system qemu-system-arm 155s qemu-system-common qemu-system-data qemu-system-mips qemu-system-misc 155s qemu-system-ppc qemu-system-riscv qemu-system-s390x qemu-system-sparc 155s qemu-system-x86 seabios sgml-base systemd-container virtualbmc xml-core 155s 0 upgraded, 77 newly installed, 0 to remove and 0 not upgraded. 155s Need to get 120 MB of archives. 155s After this operation, 551 MB of additional disk space will be used. 155s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 155s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x acl s390x 2.3.2-2 [40.4 kB] 155s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x bridge-utils s390x 1.7.1-3ubuntu1 [35.2 kB] 155s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dnsmasq-base s390x 2.91~test9-1 [396 kB] 155s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 155s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 155s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x ipxe-qemu all 1.21.1+git-20220113.fbbdc3926-0ubuntu2 [1565 kB] 155s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 155s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 156s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libbrlapi0.8 s390x 6.7-1ubuntu2 [32.5 kB] 156s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libpcsclite1 s390x 2.3.1-1 [24.5 kB] 156s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libcacard0 s390x 1:2.8.0-3build4 [37.8 kB] 156s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libduktape207 s390x 2.7.0+tests-0ubuntu3 [150 kB] 156s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 156s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 156s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 156s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libpciaccess0 s390x 0.17-3build1 [19.0 kB] 156s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 156s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 156s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x librdmacm1t64 s390x 55.0-1ubuntu1 [73.7 kB] 156s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libslirp0 s390x 4.8.0-1ubuntu1 [66.3 kB] 156s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 156s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libssh-4 s390x 0.11.1-1 [203 kB] 156s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x liburing2 s390x 2.9-1 [25.9 kB] 156s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libusbredirparser1t64 s390x 0.15.0-1 [16.3 kB] 156s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-common s390x 11.0.0-2ubuntu2 [221 kB] 156s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt0 s390x 11.0.0-2ubuntu2 [1599 kB] 156s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libxml2-utils s390x 2.12.7+dfsg+really2.9.14-0.2ubuntu3 [41.1 kB] 156s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-clients s390x 11.0.0-2ubuntu2 [399 kB] 156s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x polkitd s390x 126-2 [97.1 kB] 156s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-common s390x 11.0.0-2ubuntu2 [102 kB] 156s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-log s390x 11.0.0-2ubuntu2 [39.7 kB] 156s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon s390x 11.0.0-2ubuntu2 [191 kB] 156s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-driver-network s390x 11.0.0-2ubuntu2 [58.9 kB] 156s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-config-network all 11.0.0-2ubuntu2 [2962 B] 156s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-driver-nwfilter s390x 11.0.0-2ubuntu2 [45.1 kB] 156s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-config-nwfilter all 11.0.0-2ubuntu2 [5874 B] 156s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x mdevctl s390x 1.3.0-1ubuntu4 [1045 kB] 156s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-driver-nodedev s390x 11.0.0-2ubuntu2 [33.7 kB] 156s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-common s390x 1:9.2.0+ds-4ubuntu3 [920 kB] 156s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-data all 1:9.2.0+ds-4ubuntu3 [2334 kB] 156s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-s390x s390x 1:9.2.0+ds-4ubuntu3 [3423 kB] 157s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libfdt1 s390x 1.7.2-2build1 [21.4 kB] 157s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-arm s390x 1:9.2.0+ds-4ubuntu3 [10.7 MB] 158s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-mips s390x 1:9.2.0+ds-4ubuntu3 [15.7 MB] 159s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-ppc s390x 1:9.2.0+ds-4ubuntu3 [8747 kB] 160s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x opensbi all 1.6-1 [212 kB] 160s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-riscv s390x 1:9.2.0+ds-4ubuntu3 [8141 kB] 160s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-sparc s390x 1:9.2.0+ds-4ubuntu3 [6106 kB] 160s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x seabios all 1.16.3-2 [175 kB] 160s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-x86 s390x 1:9.2.0+ds-4ubuntu3 [8392 kB] 161s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-misc s390x 1:9.2.0+ds-4ubuntu3 [43.6 MB] 164s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system s390x 1:9.2.0+ds-4ubuntu3 [63.9 kB] 164s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x systemd-container s390x 257.2-3ubuntu1 [607 kB] 164s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-driver-qemu s390x 11.0.0-2ubuntu2 [754 kB] 164s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-driver-secret s390x 11.0.0-2ubuntu2 [9028 B] 164s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-driver-storage s390x 11.0.0-2ubuntu2 [59.0 kB] 164s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libvirt-daemon-system s390x 11.0.0-2ubuntu2 [3778 B] 164s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 164s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x python3-autopage all 0.4.0-4 [13.1 kB] 164s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 164s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyperclip all 1.8.2-2 [11.5 kB] 164s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cmd2 all 2.5.7+ds-1 [123 kB] 164s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 164s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 164s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pbr all 6.1.1-0ubuntu1 [58.2 kB] 164s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prettytable all 3.12.0-1 [36.5 kB] 164s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 164s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-stevedore all 1:5.4.0-0ubuntu1 [21.1 kB] 164s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cliff all 4.8.0-0ubuntu1 [43.3 kB] 164s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 164s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-libvirt s390x 11.0.0-1 [185 kB] 164s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-six all 1.17.0-1 [13.2 kB] 164s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pyghmi all 1.5.70-4 [156 kB] 164s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-zmq s390x 26.2.1-1 [229 kB] 164s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-virtualbmc all 3.1.0-0ubuntu1 [19.9 kB] 164s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x virtualbmc all 3.1.0-0ubuntu1 [2580 B] 165s Preconfiguring packages ... 165s Fetched 120 MB in 10s (12.4 MB/s) 165s Selecting previously unselected package sgml-base. 165s (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 ... 55940 files and directories currently installed.) 165s Preparing to unpack .../00-sgml-base_1.31_all.deb ... 165s Unpacking sgml-base (1.31) ... 165s Selecting previously unselected package acl. 165s Preparing to unpack .../01-acl_2.3.2-2_s390x.deb ... 165s Unpacking acl (2.3.2-2) ... 165s Selecting previously unselected package bridge-utils. 165s Preparing to unpack .../02-bridge-utils_1.7.1-3ubuntu1_s390x.deb ... 165s Unpacking bridge-utils (1.7.1-3ubuntu1) ... 165s Selecting previously unselected package dnsmasq-base. 165s Preparing to unpack .../03-dnsmasq-base_2.91~test9-1_s390x.deb ... 165s Unpacking dnsmasq-base (2.91~test9-1) ... 165s Selecting previously unselected package xml-core. 165s Preparing to unpack .../04-xml-core_0.19_all.deb ... 165s Unpacking xml-core (0.19) ... 165s Selecting previously unselected package docutils-common. 165s Preparing to unpack .../05-docutils-common_0.21.2+dfsg-2_all.deb ... 165s Unpacking docutils-common (0.21.2+dfsg-2) ... 165s Selecting previously unselected package ipxe-qemu. 165s Preparing to unpack .../06-ipxe-qemu_1.21.1+git-20220113.fbbdc3926-0ubuntu2_all.deb ... 165s Unpacking ipxe-qemu (1.21.1+git-20220113.fbbdc3926-0ubuntu2) ... 165s Selecting previously unselected package libasound2-data. 165s Preparing to unpack .../07-libasound2-data_1.2.13-1build1_all.deb ... 165s Unpacking libasound2-data (1.2.13-1build1) ... 165s Selecting previously unselected package libasound2t64:s390x. 165s Preparing to unpack .../08-libasound2t64_1.2.13-1build1_s390x.deb ... 165s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 165s Selecting previously unselected package libbrlapi0.8:s390x. 165s Preparing to unpack .../09-libbrlapi0.8_6.7-1ubuntu2_s390x.deb ... 165s Unpacking libbrlapi0.8:s390x (6.7-1ubuntu2) ... 165s Selecting previously unselected package libpcsclite1:s390x. 165s Preparing to unpack .../10-libpcsclite1_2.3.1-1_s390x.deb ... 165s Unpacking libpcsclite1:s390x (2.3.1-1) ... 165s Selecting previously unselected package libcacard0:s390x. 165s Preparing to unpack .../11-libcacard0_1%3a2.8.0-3build4_s390x.deb ... 165s Unpacking libcacard0:s390x (1:2.8.0-3build4) ... 165s Selecting previously unselected package libduktape207:s390x. 165s Preparing to unpack .../12-libduktape207_2.7.0+tests-0ubuntu3_s390x.deb ... 165s Unpacking libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 165s Selecting previously unselected package libjpeg-turbo8:s390x. 165s Preparing to unpack .../13-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 165s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 165s Selecting previously unselected package libjpeg8:s390x. 165s Preparing to unpack .../14-libjpeg8_8c-2ubuntu11_s390x.deb ... 165s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 165s Selecting previously unselected package libnorm1t64:s390x. 165s Preparing to unpack .../15-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 165s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 165s Selecting previously unselected package libpciaccess0:s390x. 165s Preparing to unpack .../16-libpciaccess0_0.17-3build1_s390x.deb ... 165s Unpacking libpciaccess0:s390x (0.17-3build1) ... 165s Selecting previously unselected package libpgm-5.3-0t64:s390x. 165s Preparing to unpack .../17-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 165s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 165s Selecting previously unselected package libpixman-1-0:s390x. 165s Preparing to unpack .../18-libpixman-1-0_0.44.0-3_s390x.deb ... 165s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 165s Selecting previously unselected package librdmacm1t64:s390x. 165s Preparing to unpack .../19-librdmacm1t64_55.0-1ubuntu1_s390x.deb ... 165s Unpacking librdmacm1t64:s390x (55.0-1ubuntu1) ... 165s Selecting previously unselected package libslirp0:s390x. 165s Preparing to unpack .../20-libslirp0_4.8.0-1ubuntu1_s390x.deb ... 165s Unpacking libslirp0:s390x (4.8.0-1ubuntu1) ... 165s Selecting previously unselected package libsodium23:s390x. 165s Preparing to unpack .../21-libsodium23_1.0.18-1build3_s390x.deb ... 165s Unpacking libsodium23:s390x (1.0.18-1build3) ... 165s Selecting previously unselected package libssh-4:s390x. 165s Preparing to unpack .../22-libssh-4_0.11.1-1_s390x.deb ... 165s Unpacking libssh-4:s390x (0.11.1-1) ... 165s Selecting previously unselected package liburing2:s390x. 165s Preparing to unpack .../23-liburing2_2.9-1_s390x.deb ... 165s Unpacking liburing2:s390x (2.9-1) ... 165s Selecting previously unselected package libusbredirparser1t64:s390x. 165s Preparing to unpack .../24-libusbredirparser1t64_0.15.0-1_s390x.deb ... 165s Unpacking libusbredirparser1t64:s390x (0.15.0-1) ... 165s Selecting previously unselected package libvirt-common. 165s Preparing to unpack .../25-libvirt-common_11.0.0-2ubuntu2_s390x.deb ... 165s Unpacking libvirt-common (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package libvirt0:s390x. 165s Preparing to unpack .../26-libvirt0_11.0.0-2ubuntu2_s390x.deb ... 165s Unpacking libvirt0:s390x (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package libxml2-utils. 165s Preparing to unpack .../27-libxml2-utils_2.12.7+dfsg+really2.9.14-0.2ubuntu3_s390x.deb ... 165s Unpacking libxml2-utils (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 165s Selecting previously unselected package libvirt-clients. 165s Preparing to unpack .../28-libvirt-clients_11.0.0-2ubuntu2_s390x.deb ... 165s Unpacking libvirt-clients (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package polkitd. 165s Preparing to unpack .../29-polkitd_126-2_s390x.deb ... 165s Unpacking polkitd (126-2) ... 165s Selecting previously unselected package libvirt-daemon-common. 165s Preparing to unpack .../30-libvirt-daemon-common_11.0.0-2ubuntu2_s390x.deb ... 165s Adding 'diversion of /lib/systemd/system/libvirt-guests.service to /lib/systemd/system/libvirt-guests.service.usr-is-merged by libvirt-daemon-common' 165s Adding 'diversion of /lib/systemd/system/virt-guest-shutdown.target to /lib/systemd/system/virt-guest-shutdown.target.usr-is-merged by libvirt-daemon-common' 165s Unpacking libvirt-daemon-common (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package libvirt-daemon-log. 165s Preparing to unpack .../31-libvirt-daemon-log_11.0.0-2ubuntu2_s390x.deb ... 165s Adding 'diversion of /lib/systemd/system/virtlogd-admin.socket to /lib/systemd/system/virtlogd-admin.socket.usr-is-merged by libvirt-daemon-log' 165s Adding 'diversion of /lib/systemd/system/virtlogd.service to /lib/systemd/system/virtlogd.service.usr-is-merged by libvirt-daemon-log' 165s Adding 'diversion of /lib/systemd/system/virtlogd.socket to /lib/systemd/system/virtlogd.socket.usr-is-merged by libvirt-daemon-log' 165s Unpacking libvirt-daemon-log (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package libvirt-daemon. 165s Preparing to unpack .../32-libvirt-daemon_11.0.0-2ubuntu2_s390x.deb ... 165s Adding 'diversion of /lib/systemd/system/libvirtd-admin.socket to /lib/systemd/system/libvirtd-admin.socket.usr-is-merged by libvirt-daemon' 165s Adding 'diversion of /lib/systemd/system/libvirtd-ro.socket to /lib/systemd/system/libvirtd-ro.socket.usr-is-merged by libvirt-daemon' 165s Adding 'diversion of /lib/systemd/system/libvirtd-tcp.socket to /lib/systemd/system/libvirtd-tcp.socket.usr-is-merged by libvirt-daemon' 165s Adding 'diversion of /lib/systemd/system/libvirtd-tls.socket to /lib/systemd/system/libvirtd-tls.socket.usr-is-merged by libvirt-daemon' 165s Adding 'diversion of /lib/systemd/system/libvirtd.service to /lib/systemd/system/libvirtd.service.usr-is-merged by libvirt-daemon' 165s Adding 'diversion of /lib/systemd/system/libvirtd.socket to /lib/systemd/system/libvirtd.socket.usr-is-merged by libvirt-daemon' 165s Unpacking libvirt-daemon (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package libvirt-daemon-driver-network. 165s Preparing to unpack .../33-libvirt-daemon-driver-network_11.0.0-2ubuntu2_s390x.deb ... 165s Unpacking libvirt-daemon-driver-network (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package libvirt-daemon-config-network. 165s Preparing to unpack .../34-libvirt-daemon-config-network_11.0.0-2ubuntu2_all.deb ... 165s Unpacking libvirt-daemon-config-network (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package libvirt-daemon-driver-nwfilter. 165s Preparing to unpack .../35-libvirt-daemon-driver-nwfilter_11.0.0-2ubuntu2_s390x.deb ... 165s Unpacking libvirt-daemon-driver-nwfilter (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package libvirt-daemon-config-nwfilter. 165s Preparing to unpack .../36-libvirt-daemon-config-nwfilter_11.0.0-2ubuntu2_all.deb ... 165s Unpacking libvirt-daemon-config-nwfilter (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package mdevctl. 165s Preparing to unpack .../37-mdevctl_1.3.0-1ubuntu4_s390x.deb ... 165s Unpacking mdevctl (1.3.0-1ubuntu4) ... 165s Selecting previously unselected package libvirt-daemon-driver-nodedev. 165s Preparing to unpack .../38-libvirt-daemon-driver-nodedev_11.0.0-2ubuntu2_s390x.deb ... 165s Unpacking libvirt-daemon-driver-nodedev (11.0.0-2ubuntu2) ... 165s Selecting previously unselected package qemu-system-common. 165s Preparing to unpack .../39-qemu-system-common_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 165s Unpacking qemu-system-common (1:9.2.0+ds-4ubuntu3) ... 166s Selecting previously unselected package qemu-system-data. 166s Preparing to unpack .../40-qemu-system-data_1%3a9.2.0+ds-4ubuntu3_all.deb ... 166s Unpacking qemu-system-data (1:9.2.0+ds-4ubuntu3) ... 166s Selecting previously unselected package qemu-system-s390x. 166s Preparing to unpack .../41-qemu-system-s390x_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 166s Unpacking qemu-system-s390x (1:9.2.0+ds-4ubuntu3) ... 166s Selecting previously unselected package libfdt1:s390x. 166s Preparing to unpack .../42-libfdt1_1.7.2-2build1_s390x.deb ... 166s Unpacking libfdt1:s390x (1.7.2-2build1) ... 166s Selecting previously unselected package qemu-system-arm. 166s Preparing to unpack .../43-qemu-system-arm_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 166s Unpacking qemu-system-arm (1:9.2.0+ds-4ubuntu3) ... 166s Selecting previously unselected package qemu-system-mips. 166s Preparing to unpack .../44-qemu-system-mips_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 166s Unpacking qemu-system-mips (1:9.2.0+ds-4ubuntu3) ... 166s Selecting previously unselected package qemu-system-ppc. 166s Preparing to unpack .../45-qemu-system-ppc_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 166s Unpacking qemu-system-ppc (1:9.2.0+ds-4ubuntu3) ... 166s Selecting previously unselected package opensbi. 166s Preparing to unpack .../46-opensbi_1.6-1_all.deb ... 166s Unpacking opensbi (1.6-1) ... 166s Selecting previously unselected package qemu-system-riscv. 166s Preparing to unpack .../47-qemu-system-riscv_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 166s Unpacking qemu-system-riscv (1:9.2.0+ds-4ubuntu3) ... 167s Selecting previously unselected package qemu-system-sparc. 167s Preparing to unpack .../48-qemu-system-sparc_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 167s Unpacking qemu-system-sparc (1:9.2.0+ds-4ubuntu3) ... 167s Selecting previously unselected package seabios. 167s Preparing to unpack .../49-seabios_1.16.3-2_all.deb ... 167s Unpacking seabios (1.16.3-2) ... 167s Selecting previously unselected package qemu-system-x86. 167s Preparing to unpack .../50-qemu-system-x86_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 167s Unpacking qemu-system-x86 (1:9.2.0+ds-4ubuntu3) ... 167s Selecting previously unselected package qemu-system-misc. 167s Preparing to unpack .../51-qemu-system-misc_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 167s Unpacking qemu-system-misc (1:9.2.0+ds-4ubuntu3) ... 168s Selecting previously unselected package qemu-system. 168s Preparing to unpack .../52-qemu-system_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 168s Unpacking qemu-system (1:9.2.0+ds-4ubuntu3) ... 168s Selecting previously unselected package systemd-container. 168s Preparing to unpack .../53-systemd-container_257.2-3ubuntu1_s390x.deb ... 168s Unpacking systemd-container (257.2-3ubuntu1) ... 168s Selecting previously unselected package libvirt-daemon-driver-qemu. 168s Preparing to unpack .../54-libvirt-daemon-driver-qemu_11.0.0-2ubuntu2_s390x.deb ... 168s Unpacking libvirt-daemon-driver-qemu (11.0.0-2ubuntu2) ... 168s Selecting previously unselected package libvirt-daemon-driver-secret. 168s Preparing to unpack .../55-libvirt-daemon-driver-secret_11.0.0-2ubuntu2_s390x.deb ... 168s Unpacking libvirt-daemon-driver-secret (11.0.0-2ubuntu2) ... 168s Selecting previously unselected package libvirt-daemon-driver-storage. 168s Preparing to unpack .../56-libvirt-daemon-driver-storage_11.0.0-2ubuntu2_s390x.deb ... 168s Unpacking libvirt-daemon-driver-storage (11.0.0-2ubuntu2) ... 168s Selecting previously unselected package libvirt-daemon-system. 168s Preparing to unpack .../57-libvirt-daemon-system_11.0.0-2ubuntu2_s390x.deb ... 168s Unpacking libvirt-daemon-system (11.0.0-2ubuntu2) ... 168s Selecting previously unselected package libzmq5:s390x. 168s Preparing to unpack .../58-libzmq5_4.3.5-1build2_s390x.deb ... 168s Unpacking libzmq5:s390x (4.3.5-1build2) ... 168s Selecting previously unselected package python3-autopage. 168s Preparing to unpack .../59-python3-autopage_0.4.0-4_all.deb ... 168s Unpacking python3-autopage (0.4.0-4) ... 168s Selecting previously unselected package python3-wcwidth. 168s Preparing to unpack .../60-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 168s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 168s Selecting previously unselected package python3-pyperclip. 168s Preparing to unpack .../61-python3-pyperclip_1.8.2-2_all.deb ... 168s Unpacking python3-pyperclip (1.8.2-2) ... 168s Selecting previously unselected package python3-cmd2. 168s Preparing to unpack .../62-python3-cmd2_2.5.7+ds-1_all.deb ... 168s Unpacking python3-cmd2 (2.5.7+ds-1) ... 168s Selecting previously unselected package python3-roman. 168s Preparing to unpack .../63-python3-roman_5.0-1_all.deb ... 168s Unpacking python3-roman (5.0-1) ... 168s Selecting previously unselected package python3-docutils. 168s Preparing to unpack .../64-python3-docutils_0.21.2+dfsg-2_all.deb ... 168s Unpacking python3-docutils (0.21.2+dfsg-2) ... 168s Selecting previously unselected package python3-pbr. 168s Preparing to unpack .../65-python3-pbr_6.1.1-0ubuntu1_all.deb ... 168s Unpacking python3-pbr (6.1.1-0ubuntu1) ... 168s Selecting previously unselected package python3-prettytable. 168s Preparing to unpack .../66-python3-prettytable_3.12.0-1_all.deb ... 168s Unpacking python3-prettytable (3.12.0-1) ... 168s Selecting previously unselected package python3-importlib-metadata. 168s Preparing to unpack .../67-python3-importlib-metadata_8.6.1-1_all.deb ... 168s Unpacking python3-importlib-metadata (8.6.1-1) ... 168s Selecting previously unselected package python3-stevedore. 168s Preparing to unpack .../68-python3-stevedore_1%3a5.4.0-0ubuntu1_all.deb ... 168s Unpacking python3-stevedore (1:5.4.0-0ubuntu1) ... 168s Selecting previously unselected package python3-cliff. 168s Preparing to unpack .../69-python3-cliff_4.8.0-0ubuntu1_all.deb ... 168s Unpacking python3-cliff (4.8.0-0ubuntu1) ... 168s Selecting previously unselected package python3-dateutil. 168s Preparing to unpack .../70-python3-dateutil_2.9.0-3_all.deb ... 168s Unpacking python3-dateutil (2.9.0-3) ... 168s Selecting previously unselected package python3-libvirt. 168s Preparing to unpack .../71-python3-libvirt_11.0.0-1_s390x.deb ... 168s Unpacking python3-libvirt (11.0.0-1) ... 168s Selecting previously unselected package python3-six. 168s Preparing to unpack .../72-python3-six_1.17.0-1_all.deb ... 168s Unpacking python3-six (1.17.0-1) ... 168s Selecting previously unselected package python3-pyghmi. 168s Preparing to unpack .../73-python3-pyghmi_1.5.70-4_all.deb ... 168s Unpacking python3-pyghmi (1.5.70-4) ... 168s Selecting previously unselected package python3-zmq. 168s Preparing to unpack .../74-python3-zmq_26.2.1-1_s390x.deb ... 168s Unpacking python3-zmq (26.2.1-1) ... 168s Selecting previously unselected package python3-virtualbmc. 168s Preparing to unpack .../75-python3-virtualbmc_3.1.0-0ubuntu1_all.deb ... 168s Unpacking python3-virtualbmc (3.1.0-0ubuntu1) ... 168s Selecting previously unselected package virtualbmc. 168s Preparing to unpack .../76-virtualbmc_3.1.0-0ubuntu1_all.deb ... 168s Unpacking virtualbmc (3.1.0-0ubuntu1) ... 168s Setting up libpixman-1-0:s390x (0.44.0-3) ... 168s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 168s Setting up libpciaccess0:s390x (0.17-3build1) ... 168s Setting up libsodium23:s390x (1.0.18-1build3) ... 168s Setting up python3-importlib-metadata (8.6.1-1) ... 168s Setting up python3-pbr (6.1.1-0ubuntu1) ... 168s Setting up libvirt-common (11.0.0-2ubuntu2) ... 168s Setting up python3-autopage (0.4.0-4) ... 168s Setting up python3-pyperclip (1.8.2-2) ... 168s Setting up dnsmasq-base (2.91~test9-1) ... 168s Setting up libfdt1:s390x (1.7.2-2build1) ... 168s Setting up acl (2.3.2-2) ... 168s Setting up python3-six (1.17.0-1) ... 169s Setting up libasound2-data (1.2.13-1build1) ... 169s Setting up python3-roman (5.0-1) ... 169s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 169s Setting up libasound2t64:s390x (1.2.13-1build1) ... 169s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 169s Setting up python3-cmd2 (2.5.7+ds-1) ... 169s Setting up libpcsclite1:s390x (2.3.1-1) ... 169s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 169s Setting up qemu-system-data (1:9.2.0+ds-4ubuntu3) ... 169s Setting up bridge-utils (1.7.1-3ubuntu1) ... 169s Setting up libssh-4:s390x (0.11.1-1) ... 169s Setting up seabios (1.16.3-2) ... 169s Setting up libvirt0:s390x (11.0.0-2ubuntu2) ... 169s Setting up systemd-container (257.2-3ubuntu1) ... 169s Created symlink '/etc/systemd/system/multi-user.target.wants/machines.target' → '/usr/lib/systemd/system/machines.target'. 169s Setting up libslirp0:s390x (4.8.0-1ubuntu1) ... 169s Setting up libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 169s Setting up libusbredirparser1t64:s390x (0.15.0-1) ... 169s Setting up ipxe-qemu (1.21.1+git-20220113.fbbdc3926-0ubuntu2) ... 169s Setting up python3-stevedore (1:5.4.0-0ubuntu1) ... 169s Setting up librdmacm1t64:s390x (55.0-1ubuntu1) ... 169s Setting up python3-dateutil (2.9.0-3) ... 169s Setting up sgml-base (1.31) ... 169s Setting up libbrlapi0.8:s390x (6.7-1ubuntu2) ... 169s Setting up python3-pyghmi (1.5.70-4) ... 170s Setting up liburing2:s390x (2.9-1) ... 170s Setting up libxml2-utils (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 170s Setting up python3-prettytable (3.12.0-1) ... 170s Setting up opensbi (1.6-1) ... 170s Setting up mdevctl (1.3.0-1ubuntu4) ... 170s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 170s Setting up libvirt-daemon-log (11.0.0-2ubuntu2) ... 170s Removing 'diversion of /lib/systemd/system/virtlogd-admin.socket to /lib/systemd/system/virtlogd-admin.socket.usr-is-merged by libvirt-daemon-log' 170s Removing 'diversion of /lib/systemd/system/virtlogd.service to /lib/systemd/system/virtlogd.service.usr-is-merged by libvirt-daemon-log' 170s Removing 'diversion of /lib/systemd/system/virtlogd.socket to /lib/systemd/system/virtlogd.socket.usr-is-merged by libvirt-daemon-log' 170s Created symlink '/etc/systemd/system/sockets.target.wants/virtlogd-admin.socket' → '/usr/lib/systemd/system/virtlogd-admin.socket'. 170s Created symlink '/etc/systemd/system/sockets.target.wants/virtlogd.socket' → '/usr/lib/systemd/system/virtlogd.socket'. 170s Created symlink '/etc/systemd/system/multi-user.target.wants/virtlogd.service' → '/usr/lib/systemd/system/virtlogd.service'. 171s Setting up libzmq5:s390x (4.3.5-1build2) ... 171s Setting up python3-libvirt (11.0.0-1) ... 171s Setting up libvirt-clients (11.0.0-2ubuntu2) ... 171s Setting up libcacard0:s390x (1:2.8.0-3build4) ... 171s Setting up python3-zmq (26.2.1-1) ... 171s Setting up xml-core (0.19) ... 171s Setting up qemu-system-common (1:9.2.0+ds-4ubuntu3) ... 171s Created symlink '/etc/systemd/system/multi-user.target.wants/qemu-kvm.service' → '/usr/lib/systemd/system/qemu-kvm.service'. 172s Setting up qemu-system-mips (1:9.2.0+ds-4ubuntu3) ... 172s Setting up qemu-system-sparc (1:9.2.0+ds-4ubuntu3) ... 172s Setting up qemu-system-x86 (1:9.2.0+ds-4ubuntu3) ... 172s Setting up qemu-system-ppc (1:9.2.0+ds-4ubuntu3) ... 172s Setting up qemu-system-arm (1:9.2.0+ds-4ubuntu3) ... 172s Setting up qemu-system-s390x (1:9.2.0+ds-4ubuntu3) ... 172s Setting up qemu-system-riscv (1:9.2.0+ds-4ubuntu3) ... 172s Setting up qemu-system-misc (1:9.2.0+ds-4ubuntu3) ... 172s Setting up libvirt-daemon-driver-qemu (11.0.0-2ubuntu2) ... 172s useradd warning: libvirt-qemu's uid 64055 is greater than SYS_UID_MAX 999 172s fatal: The group `libvirt' does not exist. 172s info: Selecting GID from range 100 to 999 ... 172s info: Adding group `swtpm' (GID 113) ... 172s info: The home dir /var/lib/swtpm you specified can't be accessed: No such file or directory 172s 172s info: Selecting UID from range 100 to 999 ... 172s 172s info: Adding system user `swtpm' (UID 108) ... 172s info: Adding new user `swtpm' (UID 108) with group `swtpm' ... 172s info: Not creating home directory `/var/lib/swtpm'. 172s Enabling libvirt default network 172s Setting up libvirt-daemon dnsmasq configuration. 172s Setting up qemu-system (1:9.2.0+ds-4ubuntu3) ... 172s Processing triggers for libc-bin (2.41-1ubuntu1) ... 172s Processing triggers for man-db (2.13.0-1) ... 172s Processing triggers for dbus (1.16.0-1ubuntu1) ... 172s Processing triggers for sgml-base (1.31) ... 172s Setting up docutils-common (0.21.2+dfsg-2) ... 172s Setting up polkitd (126-2) ... 172s Setting up libvirt-daemon-common (11.0.0-2ubuntu2) ... 173s Removing 'diversion of /lib/systemd/system/libvirt-guests.service to /lib/systemd/system/libvirt-guests.service.usr-is-merged by libvirt-daemon-common' 173s Removing 'diversion of /lib/systemd/system/virt-guest-shutdown.target to /lib/systemd/system/virt-guest-shutdown.target.usr-is-merged by libvirt-daemon-common' 173s Created symlink '/etc/systemd/system/multi-user.target.wants/libvirt-guests.service' → '/usr/lib/systemd/system/libvirt-guests.service'. 173s Setting up libvirt-daemon (11.0.0-2ubuntu2) ... 173s Removing 'diversion of /lib/systemd/system/libvirtd-admin.socket to /lib/systemd/system/libvirtd-admin.socket.usr-is-merged by libvirt-daemon' 173s Removing 'diversion of /lib/systemd/system/libvirtd-ro.socket to /lib/systemd/system/libvirtd-ro.socket.usr-is-merged by libvirt-daemon' 173s Removing 'diversion of /lib/systemd/system/libvirtd-tcp.socket to /lib/systemd/system/libvirtd-tcp.socket.usr-is-merged by libvirt-daemon' 173s Removing 'diversion of /lib/systemd/system/libvirtd-tls.socket to /lib/systemd/system/libvirtd-tls.socket.usr-is-merged by libvirt-daemon' 173s Removing 'diversion of /lib/systemd/system/libvirtd.service to /lib/systemd/system/libvirtd.service.usr-is-merged by libvirt-daemon' 173s Removing 'diversion of /lib/systemd/system/libvirtd.socket to /lib/systemd/system/libvirtd.socket.usr-is-merged by libvirt-daemon' 174s Created symlink '/etc/systemd/system/multi-user.target.wants/libvirtd.service' → '/usr/lib/systemd/system/libvirtd.service'. 174s Failed to enable auxiliary unit virtlockd.socket, ignoring. 174s Created symlink '/etc/systemd/system/sockets.target.wants/libvirtd.socket' → '/usr/lib/systemd/system/libvirtd.socket'. 174s Created symlink '/etc/systemd/system/sockets.target.wants/libvirtd-ro.socket' → '/usr/lib/systemd/system/libvirtd-ro.socket'. 174s Created symlink '/etc/systemd/system/sockets.target.wants/libvirtd-admin.socket' → '/usr/lib/systemd/system/libvirtd-admin.socket'. 174s /usr/bin/deb-systemd-helper: error: unable to read virtlockd.socket 175s Setting up libvirt-daemon-driver-nwfilter (11.0.0-2ubuntu2) ... 175s Setting up libvirt-daemon-driver-network (11.0.0-2ubuntu2) ... 175s Setting up libvirt-daemon-driver-secret (11.0.0-2ubuntu2) ... 175s Setting up libvirt-daemon-driver-nodedev (11.0.0-2ubuntu2) ... 175s Setting up libvirt-daemon-driver-storage (11.0.0-2ubuntu2) ... 175s Setting up libvirt-daemon-config-nwfilter (11.0.0-2ubuntu2) ... 175s Setting up libvirt-daemon-config-network (11.0.0-2ubuntu2) ... 175s Setting up libvirt-daemon-system (11.0.0-2ubuntu2) ... 175s Processing triggers for sgml-base (1.31) ... 175s Setting up python3-docutils (0.21.2+dfsg-2) ... 175s Setting up python3-cliff (4.8.0-0ubuntu1) ... 175s Setting up python3-virtualbmc (3.1.0-0ubuntu1) ... 175s Setting up virtualbmc (3.1.0-0ubuntu1) ... 175s Created symlink '/etc/systemd/system/multi-user.target.wants/vbmcd.service' → '/usr/lib/systemd/system/vbmcd.service'. 176s Processing triggers for libvirt-daemon (11.0.0-2ubuntu2) ... 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'ipmitool'], kind short, sout pipe, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zQm89p/qemuvbmc-packages.all"], kind short, sout raw, serr pipe, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/qemuvbmc-packages.all /tmp/autopkgtest-work.h1yb8ody/out/qemuvbmc-packages.all 177s autopkgtest: DBG: got reply from testbed: ok 177s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.zQm89p/build.zE9/src'], kind short, sout raw, serr raw, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.zQm89p/build.zE9/src already exists 177s autopkgtest [23:11:58]: test qemuvbmc: [----------------------- 177s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.zQm89p/wrapper.sh --debug --artifacts=/tmp/autopkgtest.zQm89p/qemuvbmc-artifacts --chdir=/tmp/autopkgtest.zQm89p/build.zE9/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.zQm89p/qemuvbmc-stderr --stdout=/tmp/autopkgtest.zQm89p/qemuvbmc-stdout --tmp=/tmp/autopkgtest.zQm89p/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.zQm89p/build.zE9/src/debian/tests/qemuvbmc -- /tmp/autopkgtest.zQm89p/build.zE9/src/debian/tests/qemuvbmc"], kind test, sout raw, serr raw, env [] 177s /tmp/autopkgtest.zQm89p/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.zQm89p/qemuvbmc-artifacts 177s /tmp/autopkgtest.zQm89p/wrapper.sh: changing to directory: /tmp/autopkgtest.zQm89p/build.zE9/src 177s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 177s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 177s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 177s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 177s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: LANG=C.UTF-8 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LANGUAGE 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_ADDRESS 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_ALL 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_COLLATE 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_CTYPE 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_IDENTIFICATION 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_MEASUREMENT 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_MESSAGES 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_MONETARY 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_NAME 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_NUMERIC 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_PAPER 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_TELEPHONE 177s /tmp/autopkgtest.zQm89p/wrapper.sh: unsetting environment: LC_TIME 177s /tmp/autopkgtest.zQm89p/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 177s /tmp/autopkgtest.zQm89p/wrapper.sh: pretending to be a login shell 177s /tmp/autopkgtest.zQm89p/wrapper.sh: will write standard error to /tmp/autopkgtest.zQm89p/qemuvbmc-stderr 177s /tmp/autopkgtest.zQm89p/wrapper.sh: will write stdout to /tmp/autopkgtest.zQm89p/qemuvbmc-stdout 177s /tmp/autopkgtest.zQm89p/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.zQm89p/autopkgtest_tmp 177s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 177s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 177s /tmp/autopkgtest.zQm89p/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 177s /tmp/autopkgtest.zQm89p/wrapper.sh: marking as executable: /tmp/autopkgtest.zQm89p/build.zE9/src/debian/tests/qemuvbmc 177s /tmp/autopkgtest.zQm89p/wrapper.sh: command to run: /tmp/autopkgtest.zQm89p/build.zE9/src/debian/tests/qemuvbmc 177s /tmp/autopkgtest.zQm89p/wrapper.sh: copying /tmp/tmp.igMlw66VRP/out to stdout and file: /tmp/autopkgtest.zQm89p/qemuvbmc-stdout 177s /tmp/autopkgtest.zQm89p/wrapper.sh: copying /tmp/tmp.igMlw66VRP/err to standard error and file: /tmp/autopkgtest.zQm89p/qemuvbmc-stdout 177s /tmp/autopkgtest.zQm89p/wrapper.sh: writing script pid 3926 to /tmp/autopkgtest_script_pid 177s Not on x86_64...skipping 177s /tmp/autopkgtest.zQm89p/wrapper.sh: checking for leaked background processes... 177s /tmp/autopkgtest.zQm89p/wrapper.sh: waiting for tee/cat subprocesses... 177s /tmp/autopkgtest.zQm89p/wrapper.sh: cleaning up... 177s /tmp/autopkgtest.zQm89p/wrapper.sh: Exit status: 77 177s autopkgtest: DBG: testbed command exited with code 77 177s autopkgtest [23:11:58]: test qemuvbmc: -----------------------] 177s autopkgtest: DBG: testbed executing test finished with exit status 77 177s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/qemuvbmc-stdout /tmp/autopkgtest-work.h1yb8ody/out/qemuvbmc-stdout 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/qemuvbmc-stderr /tmp/autopkgtest-work.h1yb8ody/out/qemuvbmc-stderr 178s autopkgtest: DBG: got reply from testbed: ok 178s qemuvbmc SKIP exit status 77 and marked as skippable 178s autopkgtest [23:11:59]: test qemuvbmc: - - - - - - - - - - results - - - - - - - - - - 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zQm89p/qemuvbmc-artifacts/ /tmp/autopkgtest-work.h1yb8ody/out/artifacts/ 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.zQm89p/qemuvbmc-artifacts', '/tmp/autopkgtest.zQm89p/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 178s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 178s autopkgtest [23:11:59]: @@@@@@@@@@@@@@@@@@@@ summary 178s smoke PASS (superficial) 178s qemuvbmc SKIP exit status 77 and marked as skippable 178s autopkgtest: DBG: testbed stop 178s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.zQm89p 178s autopkgtest: DBG: sending command to testbed: close 184s autopkgtest: DBG: got reply from testbed: ok 184s autopkgtest: DBG: sending command to testbed: quit 184s nova [W] Using flock in prodstack6-s390x 184s flock: timeout while waiting to get lock 184s Creating nova instance adt-plucky-s390x-ipmitool-20250215-230900-juju-7f2275-prod-proposed-migration-environment-15-372aeff9-c870-4946-aeba-250a9a372d7c from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 184s nova [W] Timed out waiting for 7a6d9e6d-0d94-49f2-8cc1-5a52b39a52a6 to get deleted.