0s autopkgtest: DBG: testbed init 0s autopkgtest [13:19:18]: starting date and time: 2025-02-19 13:19:18+0000 0s autopkgtest [13:19:18]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [13:19:18]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.ugs0pilw/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade watcher --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-27.secgroup --name adt-plucky-s390x-watcher-20250219-131918-juju-7f2275-prod-proposed-migration-environment-15-128679b5-6bb5-4ec2-a868-b109af64e7d0 --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 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.nfOOCR 110s autopkgtest: DBG: sending command to testbed: print-execute-command 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.4pse7u39/runcmd 110s autopkgtest: DBG: sending command to testbed: capabilities 110s autopkgtest: DBG: got reply from testbed: ok revert revert-full-system reboot suggested-normal-user=ubuntu isolation-machine root-on-testbed 110s autopkgtest: DBG: testbed capabilities: ['revert', 'revert-full-system', 'reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'root-on-testbed', 'has_internet'] 110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.nfOOCR/wrapper.sh 111s autopkgtest: DBG: got reply from testbed: ok 111s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/wrapper.sh'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [13:21:09]: testbed dpkg architecture: s390x 111s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [13:21:09]: testbed apt version: 2.9.30 111s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed has eatmydata 111s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [13:21:09]: @@@@@@@@@@@@@@@@@@@@ test bed setup 111s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [13:21:10]: testbed release detected to be: None 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT source: Types: deb deb-src 112s URIs: http://ftpmaster.internal/ubuntu/ 112s Suites: plucky-proposed 112s Components: main restricted universe multiverse 112s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 112s Package: * 112s Pin: release plucky-proposed 112s Pin-Priority: 500 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [13:21:10]: updating testbed package index (apt update) 112s 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'] 113s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 113s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 113s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 113s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 113s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 113s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 113s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 113s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 113s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 113s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 113s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 114s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 114s Fetched 1711 kB in 1s (1672 kB/s) 114s Reading package lists... 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 114s Package: * 114s Pin: release plucky-proposed 114s Pin-Priority: 100 114s 114s Package: src:sphinx:any 114s Pin: release plucky-proposed 114s Pin-Priority: 995 114s 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:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s 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.nfOOCR/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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'] 115s + lsb_release --codename --short 115s + RELEASE=plucky 115s + cat 115s + [ plucky != trusty ] 115s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Calculating upgrade... 115s The following packages were automatically installed and are no longer required: 115s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 115s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 115s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 115s linux-tools-6.11.0-8-generic 115s Use 'sudo apt autoremove' to remove them. 115s The following packages will be upgraded: 115s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 115s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s Need to get 1982 kB of archives. 115s After this operation, 22.5 kB of additional disk space will be used. 115s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 115s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 116s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 116s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 116s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 116s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 116s Preconfiguring packages ... 116s Fetched 1982 kB in 1s (3223 kB/s) 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 ... 81030 files and directories currently installed.) 116s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 116s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 116s Setting up sysvinit-utils (3.14-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 ... 81030 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 Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 116s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 117s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 117s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 117s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 117s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 117s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 117s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 117s Setting up liblsof0 (4.99.4+dfsg-1) ... 117s Setting up iproute2 (6.13.0-1ubuntu1) ... 117s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 117s Setting up lsof (4.99.4+dfsg-1) ... 117s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 117s Processing triggers for man-db (2.13.0-1) ... 117s Processing triggers for libc-bin (2.40-4ubuntu1) ... 118s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 118s + /usr/lib/apt/apt-helper analyze-pattern ?true 118s + uname -r 118s + sed s/\./\\./g 118s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 118s + apt list ?obsolete 118s + + cut -d/ -f1 118s tail -n+2 118s + grep -v ^linux-.*6\.12\.0-15-generic.* 118s + true 118s + obsolete_pkgs= 118s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s The following packages will be REMOVED: 118s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 118s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 118s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 118s linux-tools-6.11.0-8-generic* 118s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 118s After this operation, 167 MB disk space will be freed. 118s (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 ... 81031 files and directories currently installed.) 118s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 118s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 118s Removing libpython3.12t64:s390x (3.12.9-1) ... 118s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 118s Removing libnsl2:s390x (1.3.0-3build3) ... 118s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 118s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 119s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 120s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 120s Processing triggers for libc-bin (2.40-4ubuntu1) ... 120s (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 ... 55931 files and directories currently installed.) 120s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 120s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 120s + grep -q trusty /etc/lsb-release 120s + [ ! -d /usr/share/doc/unattended-upgrades ] 120s + [ ! -d /usr/share/doc/lxd ] 120s + [ ! -d /usr/share/doc/lxd-client ] 120s + [ ! -d /usr/share/doc/snapd ] 120s + type iptables 120s + cat 120s + chmod 755 /etc/rc.local 120s + . /etc/rc.local 120s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 120s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 120s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 120s + uname -m 120s + [ s390x = ppc64le ] 120s + [ -d /run/systemd/system ] 120s + systemd-detect-virt --quiet --vm 120s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 120s + cat 120s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 120s + echo COMPRESS=lz4 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest [13:21:18]: upgrading testbed (apt dist-upgrade and autopurge) 120s 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'] 120s Reading package lists... 120s Building dependency tree... 120s Reading state information... 120s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 120s Starting 2 pkgProblemResolver with broken count: 0 120s Done 121s Entering ResolveByKeep 121s 121s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 121s autopkgtest: DBG: testbed command exited with code 0 121s 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'] 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 121s Starting pkgProblemResolver with broken count: 0 121s Starting 2 pkgProblemResolver with broken count: 0 121s Done 122s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 122s autopkgtest: DBG: testbed command exited with code 0 122s 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.nfOOCR/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 122s autopkgtest: DBG: testbed command exited with code 1 122s autopkgtest [13:21:20]: rebooting testbed after setup commands that affected boot 122s autopkgtest: DBG: sending command to testbed: reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], 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.sh /tmp/autopkgtest.nfOOCR/autopkgtest-reboot 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [13:21:44]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 146s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.nfOOCR/testbed-packages"], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/testbed-packages /tmp/autopkgtest-work.ugs0pilw/out/testbed-packages 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nfOOCR/autopkgtest-reboot 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: Binaries: initialising 148s autopkgtest [13:21:46]: @@@@@@@@@@@@@@@@@@@@ apt-source watcher 148s autopkgtest: DBG: blame += watcher 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 148s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'watcher'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^watcher-doc$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'watcher-doc=2:13.0.0+git2025021409.5f6fbaea-0ubuntu1'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^watcher-decision-engine$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'watcher-decision-engine=2:13.0.0+git2025021409.5f6fbaea-0ubuntu1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^watcher-common$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'watcher-common=2:13.0.0+git2025021409.5f6fbaea-0ubuntu1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^watcher-applier$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'watcher-applier=2:13.0.0+git2025021409.5f6fbaea-0ubuntu1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^watcher-api$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'watcher-api=2:13.0.0+git2025021409.5f6fbaea-0ubuntu1'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-watcher$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-watcher=2:13.0.0+git2025021409.5f6fbaea-0ubuntu1'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: install_deps: deps_new=[] 151s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s 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.nfOOCR/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source watcher=2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 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 watcher_*.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=sphinx/8.1.3-5'] 152s + cd / 152s + mktemp -d /tmp/autopkgtest.nfOOCR/build.XXX 152s + builddir=/tmp/autopkgtest.nfOOCR/build.Ht3 152s + cd /tmp/autopkgtest.nfOOCR/build.Ht3 152s + apt-get source -d -q --only-source watcher=2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 153s + OUT=Reading package lists... 153s NOTICE: 'watcher' packaging is maintained in the 'Git' version control system at: 153s https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/watcher 153s Please use: 153s git clone https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/watcher 153s to retrieve the latest (possibly unreleased) updates to the package. 153s Need to get 1186 kB of source archives. 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (dsc) [4703 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (tar) [1165 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (diff) [16.3 kB] 153s Fetched 1186 kB in 1s (940 kB/s) 153s Download complete and in download only mode 153s + [ -n ] 153s + echo Reading package lists... 153s NOTICE: 'watcher' packaging is maintained in the 'Git' version control system at: 153s https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/watcher 153s Please use: 153s git clone https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/watcher 153s to retrieve the latest (possibly unreleased) updates to the package. 153s Need to get 1186 kB of source archives. 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (dsc) [4703 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (tar) [1165 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (diff) [16.3 kB] 153s Fetched 1186 kB in 1s (940 kB/s) 153s Download complete and in download only mode 153s + grep ^Get: 153s Get:1 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (dsc) [4703 B] 153s Get:2 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (tar) [1165 kB] 153s Get:3 http://ftpmaster.internal/ubuntu plucky/universe watcher 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 (diff) [16.3 kB] 153s + dpkg-source -x watcher_13.0.0+git2025021409.5f6fbaea-0ubuntu1.dsc src 153s gpgv: Signature made Fri Feb 14 11:58:05 2025 UTC 153s gpgv: using RSA key AB23E9A98422889E08C3838CBFECAECBA0E7D8C3 153s gpgv: Can't check signature: No public key 153s dpkg-source: warning: cannot verify inline signature for ./watcher_13.0.0+git2025021409.5f6fbaea-0ubuntu1.dsc: no acceptable signature found 153s + chmod -R a+rX . 153s + cd src/. 153s + pwd 153s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest [13:21:51]: testing package watcher version 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/build.Ht3/src/debian/ /tmp/autopkgtest-work.ugs0pilw/out/pkg/debian/ 153s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: autodep8 generated control: ----- 154s Tests: 154s watcher-daemons, 154s Depends: 154s crudini, 154s mysql-server, 154s rabbitmq-server, 154s watcher-api, 154s watcher-applier, 154s watcher-decision-engine, 154s Restrictions: 154s needs-root allow-stderr, 154s 154s 154s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import watcher; print(watcher)" ; done 154s Depends: python3-all, python3-watcher, 154s Restrictions: allow-stderr, superficial, 154s Features: test-name=autodep8-python3 154s 154s 154s ------- 154s autopkgtest: DBG: processing dependency crudini 154s autopkgtest: DBG: processing dependency mysql-server 154s autopkgtest: DBG: processing dependency rabbitmq-server 154s autopkgtest: DBG: processing dependency watcher-api 154s autopkgtest: DBG: marked alternatives ['watcher-api'] as a synthesised dependency 154s autopkgtest: DBG: processing dependency watcher-applier 154s autopkgtest: DBG: marked alternatives ['watcher-applier'] as a synthesised dependency 154s autopkgtest: DBG: processing dependency watcher-decision-engine 154s autopkgtest: DBG: marked alternatives ['watcher-decision-engine'] as a synthesised dependency 154s autopkgtest: DBG: Test defined: name watcher-daemons path debian/tests/watcher-daemons command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['crudini', 'mysql-server', 'rabbitmq-server', 'watcher-api', 'watcher-applier', 'watcher-decision-engine'] 154s autopkgtest: DBG: processing dependency python3-all 154s autopkgtest: DBG: processing dependency python3-watcher 154s autopkgtest: DBG: marked alternatives ['python3-watcher'] as a synthesised dependency 154s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import watcher; print(watcher)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-watcher'] 154s autopkgtest [13:21:52]: build not needed 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/build.Ht3/src/ /tmp/autopkgtest-work.ugs0pilw/out/tests-tree/ 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: autodep8 generated control: ----- 154s Tests: 154s watcher-daemons, 154s Depends: 154s crudini, 154s mysql-server, 154s rabbitmq-server, 154s watcher-api, 154s watcher-applier, 154s watcher-decision-engine, 154s Restrictions: 154s needs-root allow-stderr, 154s 154s 154s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import watcher; print(watcher)" ; done 154s Depends: python3-all, python3-watcher, 154s Restrictions: allow-stderr, superficial, 154s Features: test-name=autodep8-python3 154s 154s 154s ------- 154s autopkgtest: DBG: processing dependency crudini 154s autopkgtest: DBG: processing dependency mysql-server 154s autopkgtest: DBG: processing dependency rabbitmq-server 154s autopkgtest: DBG: processing dependency watcher-api 154s autopkgtest: DBG: marked alternatives ['watcher-api'] as a synthesised dependency 154s autopkgtest: DBG: processing dependency watcher-applier 154s autopkgtest: DBG: marked alternatives ['watcher-applier'] as a synthesised dependency 154s autopkgtest: DBG: processing dependency watcher-decision-engine 154s autopkgtest: DBG: marked alternatives ['watcher-decision-engine'] as a synthesised dependency 154s autopkgtest: DBG: Test defined: name watcher-daemons path debian/tests/watcher-daemons command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['crudini', 'mysql-server', 'rabbitmq-server', 'watcher-api', 'watcher-applier', 'watcher-decision-engine'] 154s autopkgtest: DBG: processing dependency python3-all 154s autopkgtest: DBG: processing dependency python3-watcher 154s autopkgtest: DBG: marked alternatives ['python3-watcher'] as a synthesised dependency 154s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import watcher; print(watcher)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-watcher'] 154s autopkgtest [13:21:52]: test watcher-daemons: preparing testbed 154s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['crudini', 'mysql-server', 'rabbitmq-server', 'watcher-api', 'watcher-applier', 'watcher-decision-engine'] 154s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 154s autopkgtest: DBG: install_deps: deps_new=['crudini', 'mysql-server', 'rabbitmq-server', 'watcher-api', 'watcher-applier', 'watcher-decision-engine'] 154s autopkgtest: DBG: install-deps: satisfying crudini, mysql-server, rabbitmq-server, watcher-api, watcher-applier, watcher-decision-engine 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', 'crudini, mysql-server, rabbitmq-server, watcher-api, watcher-applier, watcher-decision-engine'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 155s Reading package lists... 155s Building dependency tree... 155s 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 alembic crudini dbconfig-common docutils-common erlang-asn1 erlang-base 155s erlang-crypto erlang-eldap erlang-inets erlang-mnesia erlang-os-mon 155s erlang-parsetools erlang-public-key erlang-runtime-tools erlang-ssl 155s erlang-syntax-tools erlang-tools erlang-xmerl libjs-jquery libjs-sphinxdoc 155s libjs-underscore libmecab2 libpq5 libprotobuf-lite32t64 libxslt1.1 155s mysql-client mysql-client-core mysql-common mysql-server mysql-server-core 155s net-tools pycadf-common python3-alembic python3-amqp python3-appdirs 155s python3-apscheduler python3-arrow python3-automaton python3-autopage 155s python3-cachetools python3-cinderclient python3-cliff python3-cmd2 155s python3-croniter python3-dateutil python3-debtcollector python3-decorator 155s python3-deprecation python3-dnspython python3-docutils python3-dogpile.cache 155s python3-eventlet python3-fasteners python3-fixtures python3-futurist 155s python3-glanceclient python3-gnocchiclient python3-greenlet 155s python3-importlib-metadata python3-iniparse python3-ironicclient 155s python3-iso8601 python3-jmespath python3-keystoneauth1 155s python3-keystoneclient python3-keystonemiddleware python3-kombu 155s python3-legacy-cgi python3-logutils python3-lxml python3-mako 155s python3-memcache python3-microversion-parse python3-monascaclient 155s python3-monotonic python3-msgpack python3-munch python3-networkx 155s python3-neutronclient python3-novaclient python3-observabilityclient 155s python3-openstackclient python3-openstacksdk python3-os-client-config 155s python3-os-resource-classes python3-os-service-types python3-osc-lib 155s python3-osc-placement python3-oslo.cache python3-oslo.concurrency 155s python3-oslo.config python3-oslo.context python3-oslo.db python3-oslo.i18n 155s python3-oslo.log python3-oslo.messaging python3-oslo.metrics 155s python3-oslo.middleware python3-oslo.policy python3-oslo.reports 155s python3-oslo.serialization python3-oslo.service python3-oslo.upgradecheck 155s python3-oslo.utils python3-oslo.versionedobjects python3-packaging 155s python3-paste python3-pastedeploy python3-pastedeploy-tpl python3-pbr 155s python3-pecan python3-platformdirs python3-prettytable 155s python3-prometheus-client python3-psutil python3-psycopg2 python3-pyasyncore 155s python3-pycadf python3-pymysql python3-pyperclip python3-pytz 155s python3-q-text-as-data python3-repoze.lru python3-requestsexceptions 155s python3-rfc3986 python3-roman python3-routes python3-simplegeneric 155s python3-six python3-sqlalchemy python3-sqlalchemy-utils python3-statsd 155s python3-stevedore python3-taskflow python3-tempita python3-tenacity 155s python3-testresources python3-testscenarios python3-testtools python3-tz 155s python3-tzlocal python3-vine python3-voluptuous python3-warlock 155s python3-watcher python3-wcwidth python3-webob python3-wrapt python3-wsme 155s rabbitmq-server sgml-base socat sqlite3 watcher-api watcher-applier 155s watcher-common watcher-decision-engine xml-core 155s 0 upgraded, 158 newly installed, 0 to remove and 0 not upgraded. 155s Need to get 86.2 MB of archives. 155s After this operation, 401 MB of additional disk space will be used. 155s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-client-core s390x 8.4.4-0ubuntu1 [2223 kB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-client s390x 8.4.4-0ubuntu1 [9104 B] 156s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libmecab2 s390x 0.996-15.1build1 [214 kB] 156s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-lite32t64 s390x 3.21.12-10build1 [238 kB] 156s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-server-core s390x 8.4.4-0ubuntu1 [20.1 MB] 157s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-server s390x 8.4.4-0ubuntu1 [1368 kB] 158s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 158s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x net-tools s390x 2.10-1.1ubuntu1 [207 kB] 158s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-six all 1.17.0-1 [13.2 kB] 158s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x sqlite3 s390x 3.46.1-1 [158 kB] 158s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-q-text-as-data all 3.1.6-4 [40.1 kB] 158s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x dbconfig-common all 2.0.24 [596 kB] 158s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tzlocal all 5.2-1.1 [20.5 kB] 158s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-apscheduler all 3.11.0-1 [44.8 kB] 158s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x python3-iso8601 all 2.1.0-2 [9136 B] 158s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 158s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 158s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pbr all 6.1.1-0ubuntu1 [58.2 kB] 158s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-service-types all 1.7.0-5 [12.8 kB] 158s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 158s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x python3-stevedore all 1:5.4.0-0ubuntu1 [21.1 kB] 158s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystoneauth1 all 5.9.1-0ubuntu1 [171 kB] 158s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.i18n all 6.5.0-0ubuntu1 [22.3 kB] 158s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wrapt s390x 1.15.0-4 [34.4 kB] 158s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x python3-debtcollector all 3.0.0-3 [13.3 kB] 158s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 158s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 158s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.utils all 8.1.0-0ubuntu1 [88.4 kB] 158s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 158s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prettytable all 3.12.0-1 [36.5 kB] 158s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cinderclient all 1:9.6.0-0ubuntu1 [133 kB] 158s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 158s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 158s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 158s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-croniter all 2.0.7-3 [22.3 kB] 158s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x python3-greenlet s390x 3.1.0-1 [176 kB] 158s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x python3-futurist all 3.0.0-3 [24.2 kB] 158s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x python3-warlock all 2.0.1-4 [6220 B] 158s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x python3-glanceclient all 1:4.7.0-0ubuntu1 [108 kB] 158s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x python3-autopage all 0.4.0-4 [13.1 kB] 158s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyperclip all 1.8.2-2 [11.5 kB] 158s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cmd2 all 2.5.7+ds-1 [123 kB] 158s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 158s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 158s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 158s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 158s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cliff all 4.8.0-0ubuntu1 [43.3 kB] 158s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 158s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x python3-deprecation all 2.1.0-3 [8806 B] 158s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x python3-mako all 1.3.8-2 [63.5 kB] 158s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dogpile.cache all 1.3.3-1 [46.8 kB] 158s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jmespath all 1.0.1-1 [21.3 kB] 158s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x python3-munch all 4.0.0-2 [10.9 kB] 158s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 158s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x python3-requestsexceptions all 1.4.0-5 [3824 B] 158s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x python3-openstacksdk all 4.3.0-0ubuntu1 [676 kB] 158s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-client-config all 2.1.0-0ubuntu5 [17.6 kB] 158s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x python3-osc-lib all 3.2.0-0ubuntu1 [53.9 kB] 158s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x python3-gnocchiclient all 7.0.8-0ubuntu1 [31.9 kB] 158s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x python3-appdirs all 1.4.4-4 [10.9 kB] 158s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dnspython all 2.7.0-1ubuntu1 [167 kB] 158s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x python3-eventlet all 0.39.0-0ubuntu1 [277 kB] 158s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-monotonic all 1.6-3 [5344 B] 158s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.context all 1:5.7.0-0ubuntu1 [13.8 kB] 158s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x python3-msgpack s390x 1.0.3-3build3 [117 kB] 158s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.serialization all 5.6.0-0ubuntu1 [15.8 kB] 158s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.log all 7.0.0-0ubuntu1 [45.6 kB] 158s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-rfc3986 all 2.0.0-3 [22.0 kB] 158s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.config all 1:9.7.0-0ubuntu1 [90.4 kB] 158s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystoneclient all 1:5.5.0-0ubuntu1 [180 kB] 158s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-osc-placement all 4.5.0-0ubuntu1 [35.3 kB] 158s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-openstackclient all 7.2.1-0ubuntu1 [439 kB] 158s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ironicclient all 5.10.0-0ubuntu1 [120 kB] 158s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x python3-memcache all 1.62-3 [17.6 kB] 158s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.cache all 3.10.0-0ubuntu1 [41.1 kB] 158s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x pycadf-common all 3.1.1-5 [4556 B] 158s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pycadf all 3.1.1-5 [17.5 kB] 158s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x python3-legacy-cgi all 2.6.1-2 [16.3 kB] 158s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x python3-webob all 1:1.8.9-1 [86.8 kB] 158s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystonemiddleware all 10.8.0-0ubuntu1 [80.5 kB] 158s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x python3-microversion-parse all 1.0.1-3 [10.5 kB] 158s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x python3-monascaclient all 2.8.0-0ubuntu1 [21.5 kB] 158s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 159s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x python3-neutronclient all 1:11.4.0-0ubuntu1 [121 kB] 159s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x python3-novaclient all 2:18.8.0-0ubuntu1 [181 kB] 159s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-resource-classes all 1.1.0-0ubuntu1 [6604 B] 159s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fasteners all 0.18-2 [12.5 kB] 159s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testtools all 2.7.2-4 [124 kB] 159s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fixtures all 4.1.0-3 [34.8 kB] 159s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.concurrency all 6.2.0-0ubuntu1 [31.0 kB] 159s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy all 2.0.38+ds1-0ubuntu1 [1215 kB] 159s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alembic all 1.13.2-4 [149 kB] 159s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 159s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 159s Get:96 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 159s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x alembic all 1.13.2-4 [294 kB] 159s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testresources all 2.0.1-5 [26.8 kB] 159s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testscenarios all 0.5.0-4 [13.0 kB] 159s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.db all 17.1.0-0ubuntu2 [101 kB] 159s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x python3-vine all 5.1.0+dfsg-1 [14.2 kB] 159s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x python3-amqp all 5.3.1-2 [43.5 kB] 160s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cachetools all 5.3.3-1 [10.3 kB] 160s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x python3-kombu all 5.4.2-3 [145 kB] 160s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prometheus-client all 0.21.1+ds1-1 [45.8 kB] 160s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.metrics all 0.10.1-0ubuntu1 [7594 B] 160s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x python3-statsd all 4.0.1-2 [12.2 kB] 160s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.middleware all 6.3.0-0ubuntu1 [34.5 kB] 160s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tempita all 0.6.0-1 [14.8 kB] 160s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x python3-paste all 3.10.1-1 [210 kB] 160s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pastedeploy-tpl all 3.1-1 [5652 B] 160s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pastedeploy all 3.1-1 [13.5 kB] 160s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x python3-repoze.lru all 0.7-3 [12.3 kB] 160s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x python3-routes all 2.5.1-7 [90.8 kB] 160s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.service all 4.0.0-0ubuntu1 [49.4 kB] 160s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tenacity all 9.0.0-0ubuntu1 [17.0 kB] 160s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.messaging all 16.0.0-0ubuntu1 [119 kB] 160s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.policy all 4.5.0-0ubuntu1 [58.3 kB] 160s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.reports all 3.5.0-0ubuntu1 [26.5 kB] 160s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.upgradecheck all 2.4.0-0ubuntu1 [9386 B] 160s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.versionedobjects all 3.5.0-0ubuntu1 [59.8 kB] 160s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x python3-logutils all 0.3.5-5 [17.8 kB] 160s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x python3-simplegeneric all 0.8.1-5 [10.7 kB] 160s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pecan all 1.5.1-6 [86.8 kB] 160s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x python3-automaton all 3.2.0-3 [15.0 kB] 160s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libpq5 s390x 17.3-3 [147 kB] 160s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psycopg2 s390x 2.9.10-1 [147 kB] 160s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyasyncore all 1.0.2-3 [10.2 kB] 160s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pymysql all 1.1.1-2ubuntu1 [39.5 kB] 160s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x python3-arrow all 1.3.0-1.1ubuntu1 [56.1 kB] 160s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy-utils all 0.41.1-0ubuntu1 [59.4 kB] 160s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x python3-taskflow all 5.10.0-0ubuntu1 [261 kB] 160s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x python3-voluptuous all 0.14.2-1 [42.7 kB] 160s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wsme all 0.12.1-5ubuntu1 [44.9 kB] 160s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-observabilityclient all 0.3.0-3 [11.1 kB] 160s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-watcher all 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 [331 kB] 160s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x watcher-common all 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 [40.0 kB] 160s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x watcher-api all 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 [22.0 kB] 160s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x watcher-applier all 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 [5620 B] 160s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x watcher-decision-engine all 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 [5648 B] 160s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniparse all 0.5.1-1 [21.2 kB] 160s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x crudini s390x 0.9.5-1 [20.3 kB] 160s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-base s390x 1:27.2.2+dfsg-1 [11.7 MB] 161s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-asn1 s390x 1:27.2.2+dfsg-1 [909 kB] 161s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-crypto s390x 1:27.2.2+dfsg-1 [180 kB] 161s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-public-key s390x 1:27.2.2+dfsg-1 [818 kB] 161s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-mnesia s390x 1:27.2.2+dfsg-1 [917 kB] 161s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-runtime-tools s390x 1:27.2.2+dfsg-1 [243 kB] 161s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-ssl s390x 1:27.2.2+dfsg-1 [1843 kB] 161s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-eldap s390x 1:27.2.2+dfsg-1 [132 kB] 161s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-inets s390x 1:27.2.2+dfsg-1 [675 kB] 161s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-os-mon s390x 1:27.2.2+dfsg-1 [106 kB] 161s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-parsetools s390x 1:27.2.2+dfsg-1 [208 kB] 161s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-syntax-tools s390x 1:27.2.2+dfsg-1 [340 kB] 161s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-tools s390x 1:27.2.2+dfsg-1 [634 kB] 161s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x erlang-xmerl s390x 1:27.2.2+dfsg-1 [1383 kB] 161s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x socat s390x 1.8.0.2-1 [385 kB] 161s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x rabbitmq-server all 4.0.5-2ubuntu1 [16.8 MB] 163s Preconfiguring packages ... 163s Fetched 86.2 MB in 7s (12.3 MB/s) 163s Selecting previously unselected package mysql-common. 163s (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 ... 55929 files and directories currently installed.) 163s Preparing to unpack .../0-mysql-common_5.8+1.1.1_all.deb ... 163s Unpacking mysql-common (5.8+1.1.1) ... 163s Selecting previously unselected package mysql-client-core. 163s Preparing to unpack .../1-mysql-client-core_8.4.4-0ubuntu1_s390x.deb ... 163s Unpacking mysql-client-core (8.4.4-0ubuntu1) ... 163s Selecting previously unselected package mysql-client. 163s Preparing to unpack .../2-mysql-client_8.4.4-0ubuntu1_s390x.deb ... 163s Unpacking mysql-client (8.4.4-0ubuntu1) ... 163s Selecting previously unselected package libmecab2:s390x. 163s Preparing to unpack .../3-libmecab2_0.996-15.1build1_s390x.deb ... 163s Unpacking libmecab2:s390x (0.996-15.1build1) ... 163s Selecting previously unselected package libprotobuf-lite32t64:s390x. 163s Preparing to unpack .../4-libprotobuf-lite32t64_3.21.12-10build1_s390x.deb ... 163s Unpacking libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 163s Selecting previously unselected package mysql-server-core. 163s Preparing to unpack .../5-mysql-server-core_8.4.4-0ubuntu1_s390x.deb ... 163s Unpacking mysql-server-core (8.4.4-0ubuntu1) ... 164s Setting up mysql-common (5.8+1.1.1) ... 164s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 164s Selecting previously unselected package mysql-server. 164s (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 ... 56128 files and directories currently installed.) 164s Preparing to unpack .../000-mysql-server_8.4.4-0ubuntu1_s390x.deb ... 164s Unpacking mysql-server (8.4.4-0ubuntu1) ... 164s Selecting previously unselected package sgml-base. 164s Preparing to unpack .../001-sgml-base_1.31_all.deb ... 164s Unpacking sgml-base (1.31) ... 164s Selecting previously unselected package net-tools. 164s Preparing to unpack .../002-net-tools_2.10-1.1ubuntu1_s390x.deb ... 164s Unpacking net-tools (2.10-1.1ubuntu1) ... 164s Selecting previously unselected package python3-six. 164s Preparing to unpack .../003-python3-six_1.17.0-1_all.deb ... 164s Unpacking python3-six (1.17.0-1) ... 164s Selecting previously unselected package sqlite3. 164s Preparing to unpack .../004-sqlite3_3.46.1-1_s390x.deb ... 164s Unpacking sqlite3 (3.46.1-1) ... 164s Selecting previously unselected package python3-q-text-as-data. 164s Preparing to unpack .../005-python3-q-text-as-data_3.1.6-4_all.deb ... 164s Unpacking python3-q-text-as-data (3.1.6-4) ... 164s Selecting previously unselected package dbconfig-common. 164s Preparing to unpack .../006-dbconfig-common_2.0.24_all.deb ... 164s Unpacking dbconfig-common (2.0.24) ... 164s Selecting previously unselected package python3-tzlocal. 164s Preparing to unpack .../007-python3-tzlocal_5.2-1.1_all.deb ... 164s Unpacking python3-tzlocal (5.2-1.1) ... 164s Selecting previously unselected package python3-apscheduler. 164s Preparing to unpack .../008-python3-apscheduler_3.11.0-1_all.deb ... 164s Unpacking python3-apscheduler (3.11.0-1) ... 164s Selecting previously unselected package python3-iso8601. 164s Preparing to unpack .../009-python3-iso8601_2.1.0-2_all.deb ... 164s Unpacking python3-iso8601 (2.1.0-2) ... 164s Selecting previously unselected package libxslt1.1:s390x. 164s Preparing to unpack .../010-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 164s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 164s Selecting previously unselected package python3-lxml:s390x. 164s Preparing to unpack .../011-python3-lxml_5.3.1-1_s390x.deb ... 164s Unpacking python3-lxml:s390x (5.3.1-1) ... 164s Selecting previously unselected package python3-pbr. 164s Preparing to unpack .../012-python3-pbr_6.1.1-0ubuntu1_all.deb ... 164s Unpacking python3-pbr (6.1.1-0ubuntu1) ... 164s Selecting previously unselected package python3-os-service-types. 164s Preparing to unpack .../013-python3-os-service-types_1.7.0-5_all.deb ... 164s Unpacking python3-os-service-types (1.7.0-5) ... 164s Selecting previously unselected package python3-importlib-metadata. 164s Preparing to unpack .../014-python3-importlib-metadata_8.6.1-1_all.deb ... 164s Unpacking python3-importlib-metadata (8.6.1-1) ... 164s Selecting previously unselected package python3-stevedore. 164s Preparing to unpack .../015-python3-stevedore_1%3a5.4.0-0ubuntu1_all.deb ... 164s Unpacking python3-stevedore (1:5.4.0-0ubuntu1) ... 164s Selecting previously unselected package python3-keystoneauth1. 164s Preparing to unpack .../016-python3-keystoneauth1_5.9.1-0ubuntu1_all.deb ... 164s Unpacking python3-keystoneauth1 (5.9.1-0ubuntu1) ... 164s Selecting previously unselected package python3-oslo.i18n. 164s Preparing to unpack .../017-python3-oslo.i18n_6.5.0-0ubuntu1_all.deb ... 164s Unpacking python3-oslo.i18n (6.5.0-0ubuntu1) ... 164s Selecting previously unselected package python3-wrapt. 164s Preparing to unpack .../018-python3-wrapt_1.15.0-4_s390x.deb ... 164s Unpacking python3-wrapt (1.15.0-4) ... 164s Selecting previously unselected package python3-debtcollector. 164s Preparing to unpack .../019-python3-debtcollector_3.0.0-3_all.deb ... 164s Unpacking python3-debtcollector (3.0.0-3) ... 164s Selecting previously unselected package python3-psutil. 164s Preparing to unpack .../020-python3-psutil_5.9.8-2build3_s390x.deb ... 164s Unpacking python3-psutil (5.9.8-2build3) ... 164s Selecting previously unselected package python3-packaging. 164s Preparing to unpack .../021-python3-packaging_24.2-1_all.deb ... 164s Unpacking python3-packaging (24.2-1) ... 164s Selecting previously unselected package python3-oslo.utils. 164s Preparing to unpack .../022-python3-oslo.utils_8.1.0-0ubuntu1_all.deb ... 164s Unpacking python3-oslo.utils (8.1.0-0ubuntu1) ... 164s Selecting previously unselected package python3-wcwidth. 164s Preparing to unpack .../023-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 164s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 164s Selecting previously unselected package python3-prettytable. 164s Preparing to unpack .../024-python3-prettytable_3.12.0-1_all.deb ... 164s Unpacking python3-prettytable (3.12.0-1) ... 164s Selecting previously unselected package python3-cinderclient. 164s Preparing to unpack .../025-python3-cinderclient_1%3a9.6.0-0ubuntu1_all.deb ... 164s Unpacking python3-cinderclient (1:9.6.0-0ubuntu1) ... 164s Selecting previously unselected package python3-dateutil. 164s Preparing to unpack .../026-python3-dateutil_2.9.0-3_all.deb ... 165s Unpacking python3-dateutil (2.9.0-3) ... 165s Selecting previously unselected package python3-pytz. 165s Preparing to unpack .../027-python3-pytz_2025.1-3_all.deb ... 165s Unpacking python3-pytz (2025.1-3) ... 165s Selecting previously unselected package python3-tz. 165s Preparing to unpack .../028-python3-tz_2025.1-3_all.deb ... 165s Unpacking python3-tz (2025.1-3) ... 165s Selecting previously unselected package python3-croniter. 165s Preparing to unpack .../029-python3-croniter_2.0.7-3_all.deb ... 165s Unpacking python3-croniter (2.0.7-3) ... 165s Selecting previously unselected package python3-greenlet. 165s Preparing to unpack .../030-python3-greenlet_3.1.0-1_s390x.deb ... 165s Unpacking python3-greenlet (3.1.0-1) ... 165s Selecting previously unselected package python3-futurist. 165s Preparing to unpack .../031-python3-futurist_3.0.0-3_all.deb ... 165s Unpacking python3-futurist (3.0.0-3) ... 165s Selecting previously unselected package python3-warlock. 165s Preparing to unpack .../032-python3-warlock_2.0.1-4_all.deb ... 165s Unpacking python3-warlock (2.0.1-4) ... 165s Selecting previously unselected package python3-glanceclient. 165s Preparing to unpack .../033-python3-glanceclient_1%3a4.7.0-0ubuntu1_all.deb ... 165s Unpacking python3-glanceclient (1:4.7.0-0ubuntu1) ... 165s Selecting previously unselected package python3-autopage. 165s Preparing to unpack .../034-python3-autopage_0.4.0-4_all.deb ... 165s Unpacking python3-autopage (0.4.0-4) ... 165s Selecting previously unselected package python3-pyperclip. 165s Preparing to unpack .../035-python3-pyperclip_1.8.2-2_all.deb ... 165s Unpacking python3-pyperclip (1.8.2-2) ... 165s Selecting previously unselected package python3-cmd2. 165s Preparing to unpack .../036-python3-cmd2_2.5.7+ds-1_all.deb ... 165s Unpacking python3-cmd2 (2.5.7+ds-1) ... 165s Selecting previously unselected package xml-core. 165s Preparing to unpack .../037-xml-core_0.19_all.deb ... 165s Unpacking xml-core (0.19) ... 165s Selecting previously unselected package docutils-common. 165s Preparing to unpack .../038-docutils-common_0.21.2+dfsg-2_all.deb ... 165s Unpacking docutils-common (0.21.2+dfsg-2) ... 165s Selecting previously unselected package python3-roman. 165s Preparing to unpack .../039-python3-roman_5.0-1_all.deb ... 165s Unpacking python3-roman (5.0-1) ... 165s Selecting previously unselected package python3-docutils. 165s Preparing to unpack .../040-python3-docutils_0.21.2+dfsg-2_all.deb ... 165s Unpacking python3-docutils (0.21.2+dfsg-2) ... 165s Selecting previously unselected package python3-cliff. 165s Preparing to unpack .../041-python3-cliff_4.8.0-0ubuntu1_all.deb ... 165s Unpacking python3-cliff (4.8.0-0ubuntu1) ... 165s Selecting previously unselected package python3-decorator. 165s Preparing to unpack .../042-python3-decorator_5.1.1-5_all.deb ... 165s Unpacking python3-decorator (5.1.1-5) ... 165s Selecting previously unselected package python3-deprecation. 165s Preparing to unpack .../043-python3-deprecation_2.1.0-3_all.deb ... 165s Unpacking python3-deprecation (2.1.0-3) ... 165s Selecting previously unselected package python3-mako. 165s Preparing to unpack .../044-python3-mako_1.3.8-2_all.deb ... 165s Unpacking python3-mako (1.3.8-2) ... 165s Selecting previously unselected package python3-dogpile.cache. 165s Preparing to unpack .../045-python3-dogpile.cache_1.3.3-1_all.deb ... 165s Unpacking python3-dogpile.cache (1.3.3-1) ... 165s Selecting previously unselected package python3-jmespath. 165s Preparing to unpack .../046-python3-jmespath_1.0.1-1_all.deb ... 165s Unpacking python3-jmespath (1.0.1-1) ... 165s Selecting previously unselected package python3-munch. 165s Preparing to unpack .../047-python3-munch_4.0.0-2_all.deb ... 165s Unpacking python3-munch (4.0.0-2) ... 165s Selecting previously unselected package python3-platformdirs. 165s Preparing to unpack .../048-python3-platformdirs_4.3.6-1_all.deb ... 165s Unpacking python3-platformdirs (4.3.6-1) ... 165s Selecting previously unselected package python3-requestsexceptions. 165s Preparing to unpack .../049-python3-requestsexceptions_1.4.0-5_all.deb ... 165s Unpacking python3-requestsexceptions (1.4.0-5) ... 165s Selecting previously unselected package python3-openstacksdk. 165s Preparing to unpack .../050-python3-openstacksdk_4.3.0-0ubuntu1_all.deb ... 165s Unpacking python3-openstacksdk (4.3.0-0ubuntu1) ... 165s Selecting previously unselected package python3-os-client-config. 165s Preparing to unpack .../051-python3-os-client-config_2.1.0-0ubuntu5_all.deb ... 165s Unpacking python3-os-client-config (2.1.0-0ubuntu5) ... 165s Selecting previously unselected package python3-osc-lib. 165s Preparing to unpack .../052-python3-osc-lib_3.2.0-0ubuntu1_all.deb ... 165s Unpacking python3-osc-lib (3.2.0-0ubuntu1) ... 165s Selecting previously unselected package python3-gnocchiclient. 165s Preparing to unpack .../053-python3-gnocchiclient_7.0.8-0ubuntu1_all.deb ... 165s Unpacking python3-gnocchiclient (7.0.8-0ubuntu1) ... 165s Selecting previously unselected package python3-appdirs. 165s Preparing to unpack .../054-python3-appdirs_1.4.4-4_all.deb ... 165s Unpacking python3-appdirs (1.4.4-4) ... 165s Selecting previously unselected package python3-dnspython. 165s Preparing to unpack .../055-python3-dnspython_2.7.0-1ubuntu1_all.deb ... 165s Unpacking python3-dnspython (2.7.0-1ubuntu1) ... 165s Selecting previously unselected package python3-eventlet. 165s Preparing to unpack .../056-python3-eventlet_0.39.0-0ubuntu1_all.deb ... 165s Unpacking python3-eventlet (0.39.0-0ubuntu1) ... 165s Selecting previously unselected package python3-monotonic. 165s Preparing to unpack .../057-python3-monotonic_1.6-3_all.deb ... 165s Unpacking python3-monotonic (1.6-3) ... 165s Selecting previously unselected package python3-oslo.context. 165s Preparing to unpack .../058-python3-oslo.context_1%3a5.7.0-0ubuntu1_all.deb ... 165s Unpacking python3-oslo.context (1:5.7.0-0ubuntu1) ... 165s Selecting previously unselected package python3-msgpack. 165s Preparing to unpack .../059-python3-msgpack_1.0.3-3build3_s390x.deb ... 165s Unpacking python3-msgpack (1.0.3-3build3) ... 165s Selecting previously unselected package python3-oslo.serialization. 165s Preparing to unpack .../060-python3-oslo.serialization_5.6.0-0ubuntu1_all.deb ... 165s Unpacking python3-oslo.serialization (5.6.0-0ubuntu1) ... 165s Selecting previously unselected package python3-oslo.log. 165s Preparing to unpack .../061-python3-oslo.log_7.0.0-0ubuntu1_all.deb ... 165s Unpacking python3-oslo.log (7.0.0-0ubuntu1) ... 165s Selecting previously unselected package python3-rfc3986. 165s Preparing to unpack .../062-python3-rfc3986_2.0.0-3_all.deb ... 165s Unpacking python3-rfc3986 (2.0.0-3) ... 165s Selecting previously unselected package python3-oslo.config. 165s Preparing to unpack .../063-python3-oslo.config_1%3a9.7.0-0ubuntu1_all.deb ... 165s Unpacking python3-oslo.config (1:9.7.0-0ubuntu1) ... 165s Selecting previously unselected package python3-keystoneclient. 165s Preparing to unpack .../064-python3-keystoneclient_1%3a5.5.0-0ubuntu1_all.deb ... 165s Unpacking python3-keystoneclient (1:5.5.0-0ubuntu1) ... 165s Selecting previously unselected package python3-osc-placement. 165s Preparing to unpack .../065-python3-osc-placement_4.5.0-0ubuntu1_all.deb ... 165s Unpacking python3-osc-placement (4.5.0-0ubuntu1) ... 165s Selecting previously unselected package python3-openstackclient. 165s Preparing to unpack .../066-python3-openstackclient_7.2.1-0ubuntu1_all.deb ... 165s Unpacking python3-openstackclient (7.2.1-0ubuntu1) ... 165s Selecting previously unselected package python3-ironicclient. 165s Preparing to unpack .../067-python3-ironicclient_5.10.0-0ubuntu1_all.deb ... 165s Unpacking python3-ironicclient (5.10.0-0ubuntu1) ... 165s Selecting previously unselected package python3-memcache. 165s Preparing to unpack .../068-python3-memcache_1.62-3_all.deb ... 165s Unpacking python3-memcache (1.62-3) ... 165s Selecting previously unselected package python3-oslo.cache. 165s Preparing to unpack .../069-python3-oslo.cache_3.10.0-0ubuntu1_all.deb ... 165s Unpacking python3-oslo.cache (3.10.0-0ubuntu1) ... 165s Selecting previously unselected package pycadf-common. 165s Preparing to unpack .../070-pycadf-common_3.1.1-5_all.deb ... 165s Unpacking pycadf-common (3.1.1-5) ... 165s Selecting previously unselected package python3-pycadf. 165s Preparing to unpack .../071-python3-pycadf_3.1.1-5_all.deb ... 165s Unpacking python3-pycadf (3.1.1-5) ... 165s Selecting previously unselected package python3-legacy-cgi. 165s Preparing to unpack .../072-python3-legacy-cgi_2.6.1-2_all.deb ... 165s Unpacking python3-legacy-cgi (2.6.1-2) ... 165s Selecting previously unselected package python3-webob. 165s Preparing to unpack .../073-python3-webob_1%3a1.8.9-1_all.deb ... 165s Unpacking python3-webob (1:1.8.9-1) ... 165s Selecting previously unselected package python3-keystonemiddleware. 165s Preparing to unpack .../074-python3-keystonemiddleware_10.8.0-0ubuntu1_all.deb ... 165s Unpacking python3-keystonemiddleware (10.8.0-0ubuntu1) ... 165s Selecting previously unselected package python3-microversion-parse. 165s Preparing to unpack .../075-python3-microversion-parse_1.0.1-3_all.deb ... 165s Unpacking python3-microversion-parse (1.0.1-3) ... 165s Selecting previously unselected package python3-monascaclient. 165s Preparing to unpack .../076-python3-monascaclient_2.8.0-0ubuntu1_all.deb ... 165s Unpacking python3-monascaclient (2.8.0-0ubuntu1) ... 165s Selecting previously unselected package python3-networkx. 165s Preparing to unpack .../077-python3-networkx_3.2.1-4ubuntu1_all.deb ... 165s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 166s Selecting previously unselected package python3-neutronclient. 166s Preparing to unpack .../078-python3-neutronclient_1%3a11.4.0-0ubuntu1_all.deb ... 166s Unpacking python3-neutronclient (1:11.4.0-0ubuntu1) ... 166s Selecting previously unselected package python3-novaclient. 166s Preparing to unpack .../079-python3-novaclient_2%3a18.8.0-0ubuntu1_all.deb ... 166s Unpacking python3-novaclient (2:18.8.0-0ubuntu1) ... 166s Selecting previously unselected package python3-os-resource-classes. 166s Preparing to unpack .../080-python3-os-resource-classes_1.1.0-0ubuntu1_all.deb ... 166s Unpacking python3-os-resource-classes (1.1.0-0ubuntu1) ... 166s Selecting previously unselected package python3-fasteners. 166s Preparing to unpack .../081-python3-fasteners_0.18-2_all.deb ... 166s Unpacking python3-fasteners (0.18-2) ... 166s Selecting previously unselected package python3-testtools. 166s Preparing to unpack .../082-python3-testtools_2.7.2-4_all.deb ... 166s Unpacking python3-testtools (2.7.2-4) ... 166s Selecting previously unselected package python3-fixtures. 166s Preparing to unpack .../083-python3-fixtures_4.1.0-3_all.deb ... 166s Unpacking python3-fixtures (4.1.0-3) ... 166s Selecting previously unselected package python3-oslo.concurrency. 166s Preparing to unpack .../084-python3-oslo.concurrency_6.2.0-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.concurrency (6.2.0-0ubuntu1) ... 166s Selecting previously unselected package python3-sqlalchemy. 166s Preparing to unpack .../085-python3-sqlalchemy_2.0.38+ds1-0ubuntu1_all.deb ... 166s Unpacking python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 166s Selecting previously unselected package python3-alembic. 166s Preparing to unpack .../086-python3-alembic_1.13.2-4_all.deb ... 166s Unpacking python3-alembic (1.13.2-4) ... 166s Selecting previously unselected package libjs-jquery. 166s Preparing to unpack .../087-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 166s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 166s Selecting previously unselected package libjs-underscore. 166s Preparing to unpack .../088-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 166s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 166s Selecting previously unselected package libjs-sphinxdoc. 166s Preparing to unpack .../089-libjs-sphinxdoc_8.1.3-5_all.deb ... 166s Unpacking libjs-sphinxdoc (8.1.3-5) ... 166s Selecting previously unselected package alembic. 166s Preparing to unpack .../090-alembic_1.13.2-4_all.deb ... 166s Unpacking alembic (1.13.2-4) ... 166s Selecting previously unselected package python3-testresources. 166s Preparing to unpack .../091-python3-testresources_2.0.1-5_all.deb ... 166s Unpacking python3-testresources (2.0.1-5) ... 166s Selecting previously unselected package python3-testscenarios. 166s Preparing to unpack .../092-python3-testscenarios_0.5.0-4_all.deb ... 166s Unpacking python3-testscenarios (0.5.0-4) ... 166s Selecting previously unselected package python3-oslo.db. 166s Preparing to unpack .../093-python3-oslo.db_17.1.0-0ubuntu2_all.deb ... 166s Unpacking python3-oslo.db (17.1.0-0ubuntu2) ... 166s Selecting previously unselected package python3-vine. 166s Preparing to unpack .../094-python3-vine_5.1.0+dfsg-1_all.deb ... 166s Unpacking python3-vine (5.1.0+dfsg-1) ... 166s Selecting previously unselected package python3-amqp. 166s Preparing to unpack .../095-python3-amqp_5.3.1-2_all.deb ... 166s Unpacking python3-amqp (5.3.1-2) ... 166s Selecting previously unselected package python3-cachetools. 166s Preparing to unpack .../096-python3-cachetools_5.3.3-1_all.deb ... 166s Unpacking python3-cachetools (5.3.3-1) ... 166s Selecting previously unselected package python3-kombu. 166s Preparing to unpack .../097-python3-kombu_5.4.2-3_all.deb ... 166s Unpacking python3-kombu (5.4.2-3) ... 166s Selecting previously unselected package python3-prometheus-client. 166s Preparing to unpack .../098-python3-prometheus-client_0.21.1+ds1-1_all.deb ... 166s Unpacking python3-prometheus-client (0.21.1+ds1-1) ... 166s Selecting previously unselected package python3-oslo.metrics. 166s Preparing to unpack .../099-python3-oslo.metrics_0.10.1-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.metrics (0.10.1-0ubuntu1) ... 166s Selecting previously unselected package python3-statsd. 166s Preparing to unpack .../100-python3-statsd_4.0.1-2_all.deb ... 166s Unpacking python3-statsd (4.0.1-2) ... 166s Selecting previously unselected package python3-oslo.middleware. 166s Preparing to unpack .../101-python3-oslo.middleware_6.3.0-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.middleware (6.3.0-0ubuntu1) ... 166s Selecting previously unselected package python3-tempita. 166s Preparing to unpack .../102-python3-tempita_0.6.0-1_all.deb ... 166s Unpacking python3-tempita (0.6.0-1) ... 166s Selecting previously unselected package python3-paste. 166s Preparing to unpack .../103-python3-paste_3.10.1-1_all.deb ... 166s Unpacking python3-paste (3.10.1-1) ... 166s Selecting previously unselected package python3-pastedeploy-tpl. 166s Preparing to unpack .../104-python3-pastedeploy-tpl_3.1-1_all.deb ... 166s Unpacking python3-pastedeploy-tpl (3.1-1) ... 166s Selecting previously unselected package python3-pastedeploy. 166s Preparing to unpack .../105-python3-pastedeploy_3.1-1_all.deb ... 166s Unpacking python3-pastedeploy (3.1-1) ... 166s Selecting previously unselected package python3-repoze.lru. 166s Preparing to unpack .../106-python3-repoze.lru_0.7-3_all.deb ... 166s Unpacking python3-repoze.lru (0.7-3) ... 166s Selecting previously unselected package python3-routes. 166s Preparing to unpack .../107-python3-routes_2.5.1-7_all.deb ... 166s Unpacking python3-routes (2.5.1-7) ... 166s Selecting previously unselected package python3-oslo.service. 166s Preparing to unpack .../108-python3-oslo.service_4.0.0-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.service (4.0.0-0ubuntu1) ... 166s Selecting previously unselected package python3-tenacity. 166s Preparing to unpack .../109-python3-tenacity_9.0.0-0ubuntu1_all.deb ... 166s Unpacking python3-tenacity (9.0.0-0ubuntu1) ... 166s Selecting previously unselected package python3-oslo.messaging. 166s Preparing to unpack .../110-python3-oslo.messaging_16.0.0-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.messaging (16.0.0-0ubuntu1) ... 166s Selecting previously unselected package python3-oslo.policy. 166s Preparing to unpack .../111-python3-oslo.policy_4.5.0-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.policy (4.5.0-0ubuntu1) ... 166s Selecting previously unselected package python3-oslo.reports. 166s Preparing to unpack .../112-python3-oslo.reports_3.5.0-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.reports (3.5.0-0ubuntu1) ... 166s Selecting previously unselected package python3-oslo.upgradecheck. 166s Preparing to unpack .../113-python3-oslo.upgradecheck_2.4.0-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.upgradecheck (2.4.0-0ubuntu1) ... 166s Selecting previously unselected package python3-oslo.versionedobjects. 166s Preparing to unpack .../114-python3-oslo.versionedobjects_3.5.0-0ubuntu1_all.deb ... 166s Unpacking python3-oslo.versionedobjects (3.5.0-0ubuntu1) ... 166s Selecting previously unselected package python3-logutils. 166s Preparing to unpack .../115-python3-logutils_0.3.5-5_all.deb ... 166s Unpacking python3-logutils (0.3.5-5) ... 166s Selecting previously unselected package python3-simplegeneric. 166s Preparing to unpack .../116-python3-simplegeneric_0.8.1-5_all.deb ... 166s Unpacking python3-simplegeneric (0.8.1-5) ... 166s Selecting previously unselected package python3-pecan. 166s Preparing to unpack .../117-python3-pecan_1.5.1-6_all.deb ... 166s Unpacking python3-pecan (1.5.1-6) ... 166s Selecting previously unselected package python3-automaton. 166s Preparing to unpack .../118-python3-automaton_3.2.0-3_all.deb ... 166s Unpacking python3-automaton (3.2.0-3) ... 166s Selecting previously unselected package libpq5:s390x. 166s Preparing to unpack .../119-libpq5_17.3-3_s390x.deb ... 166s Unpacking libpq5:s390x (17.3-3) ... 166s Selecting previously unselected package python3-psycopg2. 166s Preparing to unpack .../120-python3-psycopg2_2.9.10-1_s390x.deb ... 166s Unpacking python3-psycopg2 (2.9.10-1) ... 166s Selecting previously unselected package python3-pyasyncore. 166s Preparing to unpack .../121-python3-pyasyncore_1.0.2-3_all.deb ... 166s Unpacking python3-pyasyncore (1.0.2-3) ... 166s Selecting previously unselected package python3-pymysql. 166s Preparing to unpack .../122-python3-pymysql_1.1.1-2ubuntu1_all.deb ... 166s Unpacking python3-pymysql (1.1.1-2ubuntu1) ... 166s Selecting previously unselected package python3-arrow. 166s Preparing to unpack .../123-python3-arrow_1.3.0-1.1ubuntu1_all.deb ... 166s Unpacking python3-arrow (1.3.0-1.1ubuntu1) ... 166s Selecting previously unselected package python3-sqlalchemy-utils. 166s Preparing to unpack .../124-python3-sqlalchemy-utils_0.41.1-0ubuntu1_all.deb ... 166s Unpacking python3-sqlalchemy-utils (0.41.1-0ubuntu1) ... 166s Selecting previously unselected package python3-taskflow. 166s Preparing to unpack .../125-python3-taskflow_5.10.0-0ubuntu1_all.deb ... 166s Unpacking python3-taskflow (5.10.0-0ubuntu1) ... 166s Selecting previously unselected package python3-voluptuous. 166s Preparing to unpack .../126-python3-voluptuous_0.14.2-1_all.deb ... 166s Unpacking python3-voluptuous (0.14.2-1) ... 166s Selecting previously unselected package python3-wsme. 166s Preparing to unpack .../127-python3-wsme_0.12.1-5ubuntu1_all.deb ... 166s Unpacking python3-wsme (0.12.1-5ubuntu1) ... 166s Selecting previously unselected package python3-observabilityclient. 166s Preparing to unpack .../128-python3-observabilityclient_0.3.0-3_all.deb ... 166s Unpacking python3-observabilityclient (0.3.0-3) ... 166s Selecting previously unselected package python3-watcher. 166s Preparing to unpack .../129-python3-watcher_2%3a13.0.0+git2025021409.5f6fbaea-0ubuntu1_all.deb ... 166s Unpacking python3-watcher (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 167s Selecting previously unselected package watcher-common. 167s Preparing to unpack .../130-watcher-common_2%3a13.0.0+git2025021409.5f6fbaea-0ubuntu1_all.deb ... 167s Unpacking watcher-common (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 167s Selecting previously unselected package watcher-api. 167s Preparing to unpack .../131-watcher-api_2%3a13.0.0+git2025021409.5f6fbaea-0ubuntu1_all.deb ... 167s Unpacking watcher-api (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 167s Selecting previously unselected package watcher-applier. 167s Preparing to unpack .../132-watcher-applier_2%3a13.0.0+git2025021409.5f6fbaea-0ubuntu1_all.deb ... 167s Unpacking watcher-applier (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 167s Selecting previously unselected package watcher-decision-engine. 167s Preparing to unpack .../133-watcher-decision-engine_2%3a13.0.0+git2025021409.5f6fbaea-0ubuntu1_all.deb ... 167s Unpacking watcher-decision-engine (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 167s Selecting previously unselected package python3-iniparse. 167s Preparing to unpack .../134-python3-iniparse_0.5.1-1_all.deb ... 167s Unpacking python3-iniparse (0.5.1-1) ... 167s Selecting previously unselected package crudini. 167s Preparing to unpack .../135-crudini_0.9.5-1_s390x.deb ... 167s Unpacking crudini (0.9.5-1) ... 167s Selecting previously unselected package erlang-base. 167s Preparing to unpack .../136-erlang-base_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-base (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-asn1. 167s Preparing to unpack .../137-erlang-asn1_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-asn1 (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-crypto. 167s Preparing to unpack .../138-erlang-crypto_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-crypto (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-public-key. 167s Preparing to unpack .../139-erlang-public-key_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-public-key (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-mnesia. 167s Preparing to unpack .../140-erlang-mnesia_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-mnesia (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-runtime-tools. 167s Preparing to unpack .../141-erlang-runtime-tools_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-runtime-tools (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-ssl. 167s Preparing to unpack .../142-erlang-ssl_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-ssl (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-eldap. 167s Preparing to unpack .../143-erlang-eldap_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-eldap (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-inets. 167s Preparing to unpack .../144-erlang-inets_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-inets (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-os-mon. 167s Preparing to unpack .../145-erlang-os-mon_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-os-mon (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-parsetools. 167s Preparing to unpack .../146-erlang-parsetools_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-parsetools (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-syntax-tools. 167s Preparing to unpack .../147-erlang-syntax-tools_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-syntax-tools (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-tools. 167s Preparing to unpack .../148-erlang-tools_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-tools (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package erlang-xmerl. 167s Preparing to unpack .../149-erlang-xmerl_1%3a27.2.2+dfsg-1_s390x.deb ... 167s Unpacking erlang-xmerl (1:27.2.2+dfsg-1) ... 167s Selecting previously unselected package socat. 167s Preparing to unpack .../150-socat_1.8.0.2-1_s390x.deb ... 167s Unpacking socat (1.8.0.2-1) ... 167s Selecting previously unselected package rabbitmq-server. 167s Preparing to unpack .../151-rabbitmq-server_4.0.5-2ubuntu1_all.deb ... 167s Unpacking rabbitmq-server (4.0.5-2ubuntu1) ... 167s Setting up libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 167s Setting up libmecab2:s390x (0.996-15.1build1) ... 167s Setting up net-tools (2.10-1.1ubuntu1) ... 167s Setting up python3-importlib-metadata (8.6.1-1) ... 167s Setting up python3-repoze.lru (0.7-3) ... 167s Setting up erlang-base (1:27.2.2+dfsg-1) ... 168s Created symlink '/etc/systemd/system/multi-user.target.wants/epmd.service' → '/usr/lib/systemd/system/epmd.service'. 168s Created symlink '/etc/systemd/system/sockets.target.wants/epmd.socket' → '/usr/lib/systemd/system/epmd.socket'. 169s Searching for services which depend on erlang and should be started... none found. 169s Setting up python3-warlock (2.0.1-4) ... 169s Setting up python3-cachetools (5.3.3-1) ... 169s Setting up python3-pbr (6.1.1-0ubuntu1) ... 169s Setting up python3-statsd (4.0.1-2) ... 169s Setting up erlang-os-mon (1:27.2.2+dfsg-1) ... 169s Setting up python3-tenacity (9.0.0-0ubuntu1) ... 169s Setting up python3-autopage (0.4.0-4) ... 169s Setting up erlang-xmerl (1:27.2.2+dfsg-1) ... 169s Setting up python3-memcache (1.62-3) ... 169s Setting up libpq5:s390x (17.3-3) ... 169s Setting up erlang-syntax-tools (1:27.2.2+dfsg-1) ... 169s Setting up python3-requestsexceptions (1.4.0-5) ... 169s Setting up python3-pyperclip (1.8.2-2) ... 169s Setting up python3-pytz (2025.1-3) ... 169s Setting up dbconfig-common (2.0.24) ... 170s Creating config file /etc/dbconfig-common/config with new version 170s Setting up python3-networkx (3.2.1-4ubuntu1) ... 171s Setting up python3-platformdirs (4.3.6-1) ... 171s Setting up python3-munch (4.0.0-2) ... 171s Setting up python3-psutil (5.9.8-2build3) ... 171s Setting up python3-os-resource-classes (1.1.0-0ubuntu1) ... 171s Setting up python3-tz (2025.1-3) ... 171s Setting up python3-vine (5.1.0+dfsg-1) ... 171s Setting up python3-monotonic (1.6-3) ... 171s Setting up python3-six (1.17.0-1) ... 171s Setting up python3-roman (5.0-1) ... 171s Setting up python3-decorator (5.1.1-5) ... 171s Setting up python3-tempita (0.6.0-1) ... 171s Setting up python3-packaging (24.2-1) ... 172s Setting up python3-iso8601 (2.1.0-2) ... 172s Setting up erlang-parsetools (1:27.2.2+dfsg-1) ... 172s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 172s Setting up python3-rfc3986 (2.0.0-3) ... 172s Setting up python3-paste (3.10.1-1) ... 172s Setting up python3-cmd2 (2.5.7+ds-1) ... 172s Setting up mysql-server-core (8.4.4-0ubuntu1) ... 172s Setting up python3-jmespath (1.0.1-1) ... 172s Setting up socat (1.8.0.2-1) ... 172s Setting up python3-greenlet (3.1.0-1) ... 172s Setting up python3-pastedeploy-tpl (3.1-1) ... 172s Setting up python3-wrapt (1.15.0-4) ... 173s Setting up python3-psycopg2 (2.9.10-1) ... 173s Setting up python3-deprecation (2.1.0-3) ... 173s Setting up python3-pymysql (1.1.1-2ubuntu1) ... 173s Setting up python3-fasteners (0.18-2) ... 173s Setting up erlang-asn1 (1:27.2.2+dfsg-1) ... 173s Setting up pycadf-common (3.1.1-5) ... 173s Setting up python3-legacy-cgi (2.6.1-2) ... 173s Setting up mysql-client-core (8.4.4-0ubuntu1) ... 173s Setting up python3-dnspython (2.7.0-1ubuntu1) ... 173s Setting up python3-amqp (5.3.1-2) ... 173s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 173s Setting up python3-os-service-types (1.7.0-5) ... 173s Setting up erlang-mnesia (1:27.2.2+dfsg-1) ... 173s Setting up python3-stevedore (1:5.4.0-0ubuntu1) ... 173s Setting up python3-dateutil (2.9.0-3) ... 174s Setting up sgml-base (1.31) ... 174s Setting up python3-msgpack (1.0.3-3build3) ... 174s Setting up python3-voluptuous (0.14.2-1) ... 174s Setting up python3-logutils (0.3.5-5) ... 174s Setting up python3-pyasyncore (1.0.2-3) ... 174s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 174s Setting up erlang-crypto (1:27.2.2+dfsg-1) ... 174s Setting up python3-tzlocal (5.2-1.1) ... 174s Setting up python3-simplegeneric (0.8.1-5) ... 174s Setting up python3-prettytable (3.12.0-1) ... 174s Setting up python3-appdirs (1.4.4-4) ... 174s Setting up python3-iniparse (0.5.1-1) ... 174s Setting up sqlite3 (3.46.1-1) ... 174s Setting up python3-oslo.i18n (6.5.0-0ubuntu1) ... 174s Setting up python3-mako (1.3.8-2) ... 175s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 175s Setting up python3-webob (1:1.8.9-1) ... 175s Setting up python3-pecan (1.5.1-6) ... 175s Setting up mysql-client (8.4.4-0ubuntu1) ... 175s Setting up python3-testresources (2.0.1-5) ... 175s Setting up crudini (0.9.5-1) ... 175s Setting up python3-q-text-as-data (3.1.6-4) ... 175s Setting up python3-microversion-parse (1.0.1-3) ... 175s Setting up python3-arrow (1.3.0-1.1ubuntu1) ... 175s Setting up erlang-runtime-tools (1:27.2.2+dfsg-1) ... 175s Setting up python3-wsme (0.12.1-5ubuntu1) ... 175s Setting up python3-pastedeploy (3.1-1) ... 176s Setting up python3-croniter (2.0.7-3) ... 176s Setting up python3-futurist (3.0.0-3) ... 176s Setting up erlang-tools (1:27.2.2+dfsg-1) ... 176s Setting up python3-debtcollector (3.0.0-3) ... 176s Setting up python3-kombu (5.4.2-3) ... 176s Setting up python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 177s Setting up python3-apscheduler (3.11.0-1) ... 177s Setting up python3-dogpile.cache (1.3.3-1) ... 177s Setting up python3-prometheus-client (0.21.1+ds1-1) ... 178s Setting up python3-eventlet (0.39.0-0ubuntu1) ... 178s Setting up erlang-public-key (1:27.2.2+dfsg-1) ... 178s Setting up python3-oslo.context (1:5.7.0-0ubuntu1) ... 178s Setting up python3-automaton (3.2.0-3) ... 178s Setting up libjs-sphinxdoc (8.1.3-5) ... 178s Setting up python3-lxml:s390x (5.3.1-1) ... 178s Setting up python3-alembic (1.13.2-4) ... 178s Setting up xml-core (0.19) ... 178s Setting up python3-keystoneauth1 (5.9.1-0ubuntu1) ... 179s Setting up erlang-ssl (1:27.2.2+dfsg-1) ... 179s Setting up mysql-server (8.4.4-0ubuntu1) ... 179s update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode 179s Renaming removed key_buffer and myisam-recover options (if present) 184s mysqld will log errors to /var/log/mysql/error.log 185s mysqld is running as pid 3696 189s Created symlink '/etc/systemd/system/multi-user.target.wants/mysql.service' → '/usr/lib/systemd/system/mysql.service'. 190s Setting up alembic (1.13.2-4) ... 190s Setting up python3-sqlalchemy-utils (0.41.1-0ubuntu1) ... 190s Setting up erlang-inets (1:27.2.2+dfsg-1) ... 190s Setting up python3-oslo.utils (8.1.0-0ubuntu1) ... 190s Setting up python3-routes (2.5.1-7) ... 190s Setting up erlang-eldap (1:27.2.2+dfsg-1) ... 190s Setting up python3-openstacksdk (4.3.0-0ubuntu1) ... 191s Setting up python3-cinderclient (1:9.6.0-0ubuntu1) ... 191s Setting up python3-os-client-config (2.1.0-0ubuntu5) ... 192s Setting up rabbitmq-server (4.0.5-2ubuntu1) ... 192s info: Selecting GID from range 100 to 999 ... 192s info: Adding group `rabbitmq' (GID 115) ... 192s info: Selecting UID from range 100 to 999 ... 192s 192s info: Adding system user `rabbitmq' (UID 110) ... 192s info: Adding new user `rabbitmq' (UID 110) with group `rabbitmq' ... 192s info: Not creating home directory `/var/lib/rabbitmq'. 192s Created symlink '/etc/systemd/system/multi-user.target.wants/rabbitmq-server.service' → '/usr/lib/systemd/system/rabbitmq-server.service'. 193s Setting up python3-oslo.serialization (5.6.0-0ubuntu1) ... 194s Setting up python3-novaclient (2:18.8.0-0ubuntu1) ... 194s Setting up python3-glanceclient (1:4.7.0-0ubuntu1) ... 194s Setting up python3-taskflow (5.10.0-0ubuntu1) ... 194s Setting up python3-testtools (2.7.2-4) ... 194s Setting up python3-fixtures (4.1.0-3) ... 195s Setting up python3-testscenarios (0.5.0-4) ... 195s Processing triggers for libc-bin (2.40-4ubuntu1) ... 195s Processing triggers for man-db (2.13.0-1) ... 196s Processing triggers for sgml-base (1.31) ... 196s Setting up docutils-common (0.21.2+dfsg-2) ... 196s Processing triggers for sgml-base (1.31) ... 196s Setting up python3-docutils (0.21.2+dfsg-2) ... 196s Setting up python3-cliff (4.8.0-0ubuntu1) ... 196s Setting up python3-oslo.config (1:9.7.0-0ubuntu1) ... 196s Setting up python3-oslo.middleware (6.3.0-0ubuntu1) ... 196s Setting up python3-keystoneclient (1:5.5.0-0ubuntu1) ... 197s Setting up python3-oslo.db (17.1.0-0ubuntu2) ... 197s Setting up python3-osc-lib (3.2.0-0ubuntu1) ... 197s Setting up python3-oslo.concurrency (6.2.0-0ubuntu1) ... 197s Setting up python3-oslo.log (7.0.0-0ubuntu1) ... 198s Setting up python3-pycadf (3.1.1-5) ... 198s Setting up python3-gnocchiclient (7.0.8-0ubuntu1) ... 198s Setting up python3-oslo.metrics (0.10.1-0ubuntu1) ... 198s Setting up python3-oslo.policy (4.5.0-0ubuntu1) ... 198s Setting up python3-monascaclient (2.8.0-0ubuntu1) ... 198s Setting up python3-oslo.reports (3.5.0-0ubuntu1) ... 198s Setting up python3-osc-placement (4.5.0-0ubuntu1) ... 198s Setting up python3-oslo.service (4.0.0-0ubuntu1) ... 198s Setting up python3-oslo.upgradecheck (2.4.0-0ubuntu1) ... 198s Setting up python3-openstackclient (7.2.1-0ubuntu1) ... 199s Setting up python3-observabilityclient (0.3.0-3) ... 199s Setting up python3-oslo.messaging (16.0.0-0ubuntu1) ... 199s Setting up python3-neutronclient (1:11.4.0-0ubuntu1) ... 199s Setting up python3-oslo.cache (3.10.0-0ubuntu1) ... 200s Setting up python3-ironicclient (5.10.0-0ubuntu1) ... 200s Setting up python3-oslo.versionedobjects (3.5.0-0ubuntu1) ... 200s Setting up python3-keystonemiddleware (10.8.0-0ubuntu1) ... 200s Setting up python3-watcher (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 201s Setting up watcher-common (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 201s Setting up watcher-applier (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 201s Created symlink '/etc/systemd/system/multi-user.target.wants/watcher-applier.service' → '/usr/lib/systemd/system/watcher-applier.service'. 201s Setting up watcher-decision-engine (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 202s Created symlink '/etc/systemd/system/multi-user.target.wants/watcher-decision-engine.service' → '/usr/lib/systemd/system/watcher-decision-engine.service'. 202s Setting up watcher-api (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 202s Will not register watcher endpoint this time (no user request for it). 202s Created symlink '/etc/systemd/system/multi-user.target.wants/watcher-api.service' → '/usr/lib/systemd/system/watcher-api.service'. 203s autopkgtest: DBG: testbed command exited with code 0 203s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'watcher-api'], kind short, sout pipe, serr pipe, env [] 203s autopkgtest: DBG: testbed command exited with code 0 203s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'watcher-applier'], kind short, sout pipe, serr pipe, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'watcher-decision-engine'], kind short, sout pipe, serr pipe, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.nfOOCR/watcher-daemons-packages.all"], kind short, sout raw, serr pipe, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/watcher-daemons-packages.all /tmp/autopkgtest-work.ugs0pilw/out/watcher-daemons-packages.all 204s autopkgtest: DBG: got reply from testbed: ok 204s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.nfOOCR/build.Ht3/src'], kind short, sout raw, serr raw, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.nfOOCR/build.Ht3/src already exists 204s autopkgtest [13:22:42]: test watcher-daemons: [----------------------- 204s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.nfOOCR/wrapper.sh --debug --artifacts=/tmp/autopkgtest.nfOOCR/watcher-daemons-artifacts --chdir=/tmp/autopkgtest.nfOOCR/build.Ht3/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.nfOOCR/watcher-daemons-stderr --stdout=/tmp/autopkgtest.nfOOCR/watcher-daemons-stdout --tmp=/tmp/autopkgtest.nfOOCR/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.nfOOCR/build.Ht3/src/debian/tests/watcher-daemons -- /tmp/autopkgtest.nfOOCR/build.Ht3/src/debian/tests/watcher-daemons'], kind test, sout raw, serr raw, env [] 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.nfOOCR/watcher-daemons-artifacts 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: changing to directory: /tmp/autopkgtest.nfOOCR/build.Ht3/src 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: LANG=C.UTF-8 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LANGUAGE 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_ADDRESS 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_ALL 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_COLLATE 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_CTYPE 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_IDENTIFICATION 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_MEASUREMENT 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_MESSAGES 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_MONETARY 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_NAME 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_NUMERIC 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_PAPER 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_TELEPHONE 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_TIME 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: pretending to be a login shell 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: will write standard error to /tmp/autopkgtest.nfOOCR/watcher-daemons-stderr 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: will write stdout to /tmp/autopkgtest.nfOOCR/watcher-daemons-stdout 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.nfOOCR/autopkgtest_tmp 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: marking as executable: /tmp/autopkgtest.nfOOCR/build.Ht3/src/debian/tests/watcher-daemons 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: command to run: /tmp/autopkgtest.nfOOCR/build.Ht3/src/debian/tests/watcher-daemons 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: copying /tmp/tmp.SfWDYFxh8c/out to stdout and file: /tmp/autopkgtest.nfOOCR/watcher-daemons-stdout 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: copying /tmp/tmp.SfWDYFxh8c/err to standard error and file: /tmp/autopkgtest.nfOOCR/watcher-daemons-stdout 205s /tmp/autopkgtest.nfOOCR/wrapper.sh: writing script pid 4771 to /tmp/autopkgtest_script_pid 206s INFO [alembic.runtime.migration] Context impl MySQLImpl. 206s INFO [alembic.runtime.migration] Will assume non-transactional DDL. 206s INFO [alembic.runtime.migration] Running upgrade -> 001, ocata release 207s INFO [alembic.runtime.migration] Running upgrade 001 -> 0f6042416884, Add apscheduler_jobs table to store background jobs 207s INFO [alembic.runtime.migration] Running upgrade 0f6042416884 -> d098df6021e2, Add cron support for audit table 207s INFO [alembic.runtime.migration] Running upgrade d098df6021e2 -> d09a5945e4a0, add action description table 207s INFO [alembic.runtime.migration] Running upgrade d09a5945e4a0 -> 3cfc94cecf4e, add name for audit 207s INFO [alembic.runtime.migration] Running upgrade 3cfc94cecf4e -> a86240e89a29, Set name for Audit as part of backward compatibility 207s INFO [alembic.runtime.migration] Running upgrade a86240e89a29 -> 52804f2498c4, Add hostname field to both Audit and Action Plan models 207s INFO [alembic.runtime.migration] Running upgrade 52804f2498c4 -> 4b16194c56bc, add_start_end_time 207s INFO [alembic.runtime.migration] Running upgrade 4b16194c56bc -> 609bec748f2a, add_force_field 208s OK 208s OK 208s OK 208s /tmp/autopkgtest.nfOOCR/wrapper.sh: checking for leaked background processes... 208s /tmp/autopkgtest.nfOOCR/wrapper.sh: waiting for tee/cat subprocesses... 208s /tmp/autopkgtest.nfOOCR/wrapper.sh: cleaning up... 208s /tmp/autopkgtest.nfOOCR/wrapper.sh: Exit status: 0 208s autopkgtest: DBG: testbed command exited with code 0 209s autopkgtest [13:22:47]: test watcher-daemons: -----------------------] 209s autopkgtest: DBG: testbed executing test finished with exit status 0 209s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/watcher-daemons-stdout /tmp/autopkgtest-work.ugs0pilw/out/watcher-daemons-stdout 209s autopkgtest: DBG: got reply from testbed: ok 209s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/watcher-daemons-stderr /tmp/autopkgtest-work.ugs0pilw/out/watcher-daemons-stderr 209s autopkgtest: DBG: got reply from testbed: ok 209s watcher-daemons PASS 209s autopkgtest [13:22:47]: test watcher-daemons: - - - - - - - - - - results - - - - - - - - - - 209s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/watcher-daemons-artifacts/ /tmp/autopkgtest-work.ugs0pilw/out/artifacts/ 209s autopkgtest: DBG: got reply from testbed: ok 209s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.nfOOCR/watcher-daemons-artifacts', '/tmp/autopkgtest.nfOOCR/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 210s autopkgtest: DBG: testbed command exited with code 0 210s autopkgtest [13:22:48]: test autodep8-python3: preparing testbed 210s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['crudini', 'mysql-server', 'rabbitmq-server', 'watcher-api', 'watcher-applier', 'watcher-decision-engine'], deps_new=['python3-all', 'python3-watcher'] 210s autopkgtest: DBG: testbed reset 210s autopkgtest: DBG: sending command to testbed: revert 333s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.nfOOCR 333s autopkgtest: DBG: sending command to testbed: print-execute-command 333s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.4pse7u39/runcmd 333s autopkgtest: DBG: sending command to testbed: capabilities 333s autopkgtest: DBG: got reply from testbed: ok revert revert-full-system ok reboot root-on-testbed suggested-normal-user=ubuntu isolation-machine 333s autopkgtest: DBG: testbed capabilities: ['revert', 'revert-full-system', 'ok', 'reboot', 'root-on-testbed', 'suggested-normal-user=ubuntu', 'isolation-machine', 'has_internet'] 333s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 333s autopkgtest: DBG: testbed command exited with code 0 333s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.nfOOCR/wrapper.sh 333s autopkgtest: DBG: got reply from testbed: ok 333s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/wrapper.sh'], kind short, sout raw, serr pipe, env [] 333s autopkgtest: DBG: testbed command exited with code 0 333s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 334s autopkgtest: DBG: testbed command exited with code 0 334s autopkgtest [13:24:52]: testbed dpkg architecture: s390x 334s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 334s autopkgtest: DBG: testbed command exited with code 0 334s autopkgtest [13:24:52]: testbed apt version: 2.9.30 334s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 334s autopkgtest: DBG: testbed command exited with code 0 334s autopkgtest: DBG: testbed has eatmydata 334s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 334s autopkgtest: DBG: testbed command exited with code 0 334s autopkgtest [13:24:52]: @@@@@@@@@@@@@@@@@@@@ test bed setup 334s 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 [] 334s autopkgtest: DBG: testbed command exited with code 0 334s autopkgtest [13:24:52]: testbed release detected to be: plucky 334s 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 [] 335s autopkgtest: DBG: testbed command exited with code 0 335s 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 [] 335s autopkgtest: DBG: testbed command exited with code 0 335s autopkgtest: DBG: adding APT source: Types: deb deb-src 335s URIs: http://ftpmaster.internal/ubuntu/ 335s Suites: plucky-proposed 335s Components: main restricted universe multiverse 335s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 335s 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 [] 335s autopkgtest: DBG: testbed command exited with code 0 335s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 335s Package: * 335s Pin: release plucky-proposed 335s Pin-Priority: 500 335s 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 [] 335s autopkgtest: DBG: testbed command exited with code 0 335s autopkgtest [13:24:53]: updating testbed package index (apt update) 335s 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'] 335s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 336s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 336s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 336s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 336s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 336s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 336s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [744 kB] 336s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 336s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [104 kB] 336s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 336s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [653 kB] 336s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 336s Fetched 1711 kB in 1s (1881 kB/s) 337s Reading package lists... 337s autopkgtest: DBG: testbed command exited with code 0 337s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 337s Package: * 337s Pin: release plucky-proposed 337s Pin-Priority: 100 337s 337s Package: src:sphinx:any 337s Pin: release plucky-proposed 337s Pin-Priority: 995 337s 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:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 337s autopkgtest: DBG: testbed command exited with code 0 337s 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.nfOOCR/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 337s autopkgtest: DBG: testbed command exited with code 0 337s 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'] 337s + lsb_release --codename --short 337s + RELEASE=plucky 337s + cat 337s + [ plucky != trusty ] 337s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 337s Reading package lists... 337s Building dependency tree... 337s Reading state information... 338s Calculating upgrade... 338s The following packages were automatically installed and are no longer required: 338s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 338s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 338s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 338s linux-tools-6.11.0-8-generic 338s Use 'sudo apt autoremove' to remove them. 338s The following packages will be upgraded: 338s iproute2 libgpgme11t64 liblsof0 libp11-kit0 lsof sysvinit-utils 338s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 338s Need to get 1982 kB of archives. 338s After this operation, 22.5 kB of additional disk space will be used. 338s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 338s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 338s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 338s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 338s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 338s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 339s Preconfiguring packages ... 339s Fetched 1982 kB in 1s (3228 kB/s) 339s (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 ... 81030 files and directories currently installed.) 339s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 339s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 339s Setting up sysvinit-utils (3.14-1ubuntu1) ... 339s (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 ... 81030 files and directories currently installed.) 339s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 339s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 339s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 339s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 339s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 339s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 339s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 339s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 339s Preparing to unpack .../libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 339s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 339s Setting up liblsof0 (4.99.4+dfsg-1) ... 339s Setting up iproute2 (6.13.0-1ubuntu1) ... 339s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 339s Setting up lsof (4.99.4+dfsg-1) ... 339s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 339s Processing triggers for man-db (2.13.0-1) ... 340s Processing triggers for libc-bin (2.40-4ubuntu1) ... 340s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 340s + /usr/lib/apt/apt-helper analyze-pattern ?true 340s + uname -r 340s + sed s/\./\\./g 340s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 340s + apt list ?obsolete 340s + tail -n+2 340s + cut -d/ -f1 340s + grep -v ^linux-.*6\.12\.0-15-generic.* 340s + true 340s + obsolete_pkgs= 340s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 340s Reading package lists... 340s Building dependency tree... 340s Reading state information... 341s The following packages will be REMOVED: 341s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 341s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 341s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 341s linux-tools-6.11.0-8-generic* 341s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 341s After this operation, 167 MB disk space will be freed. 341s (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 ... 81031 files and directories currently installed.) 341s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 341s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 341s Removing libpython3.12t64:s390x (3.12.9-1) ... 341s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 341s Removing libnsl2:s390x (1.3.0-3build3) ... 341s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 341s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 341s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 342s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 342s Processing triggers for libc-bin (2.40-4ubuntu1) ... 342s (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 ... 55931 files and directories currently installed.) 342s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 342s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 342s + grep -q trusty /etc/lsb-release 342s + [ ! -d /usr/share/doc/unattended-upgrades ] 342s + [ ! -d /usr/share/doc/lxd ] 342s + [ ! -d /usr/share/doc/lxd-client ] 342s + [ ! -d /usr/share/doc/snapd ] 342s + type iptables 342s + cat 342s + chmod 755 /etc/rc.local 342s + . /etc/rc.local 342s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 342s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 342s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 342s + uname -m 342s + [ s390x = ppc64le ] 342s + [ -d /run/systemd/system ] 342s + systemd-detect-virt --quiet --vm 342s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 342s + cat 342s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 342s + echo COMPRESS=lz4 342s autopkgtest: DBG: testbed command exited with code 0 342s autopkgtest [13:25:00]: upgrading testbed (apt dist-upgrade and autopurge) 342s 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'] 342s Reading package lists... 344s Building dependency tree... 344s Reading state information...autopkgtest: DBG: testbed command exited with code 0 344s 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'] 344s 344s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 344s Starting 2 pkgProblemResolver with broken count: 0 344s Done 344s Entering ResolveByKeep 344s 344s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 344s Reading package lists... 344s Building dependency tree... 344s Reading state information... 344s Starting pkgProblemResolver with broken count: 0 344s Starting 2 pkgProblemResolver with broken count: 0 344s Done 344s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 344s autopkgtest: DBG: testbed command exited with code 0 344s 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.nfOOCR/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 344s autopkgtest: DBG: testbed command exited with code 1 344s autopkgtest [13:25:02]: rebooting testbed after setup commands that affected boot 344s autopkgtest: DBG: sending command to testbed: reboot 363s autopkgtest: DBG: got reply from testbed: ok 363s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 363s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 363s autopkgtest: DBG: testbed command exited with code 0 363s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nfOOCR/autopkgtest-reboot 364s autopkgtest: DBG: got reply from testbed: ok 364s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare 365s autopkgtest: DBG: got reply from testbed: ok 365s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.nfOOCR/testbed-packages"], kind short, sout raw, serr pipe, env [] 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/testbed-packages /tmp/autopkgtest-work.ugs0pilw/out/testbed-packages 366s autopkgtest: DBG: got reply from testbed: ok 366s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 366s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.nfOOCR/autopkgtest-reboot 366s autopkgtest: DBG: got reply from testbed: ok 366s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR'], kind short, sout raw, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare 367s autopkgtest: DBG: got reply from testbed: ok 367s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.nfOOCR/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 367s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-watcher'] 367s autopkgtest: DBG: install-deps: satisfying python3-all, python3-watcher 367s autopkgtest: DBG: can use apt-get on testbed: True 367s 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', 'python3-all, python3-watcher'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 368s Reading package lists... 368s Building dependency tree... 368s Reading state information... 368s Starting pkgProblemResolver with broken count: 0 368s Starting 2 pkgProblemResolver with broken count: 0 368s Done 368s The following NEW packages will be installed: 368s alembic docutils-common libjs-jquery libjs-sphinxdoc libjs-underscore 368s libnsl2 libpq5 libpython3.12-minimal libpython3.12-stdlib libxslt1.1 368s pycadf-common python3-alembic python3-all python3-amqp python3-appdirs 368s python3-apscheduler python3-arrow python3-automaton python3-autopage 368s python3-cachetools python3-cinderclient python3-cliff python3-cmd2 368s python3-croniter python3-dateutil python3-debtcollector python3-decorator 368s python3-deprecation python3-dnspython python3-docutils python3-dogpile.cache 368s python3-eventlet python3-fasteners python3-fixtures python3-futurist 368s python3-glanceclient python3-gnocchiclient python3-greenlet 368s python3-importlib-metadata python3-ironicclient python3-iso8601 368s python3-jmespath python3-keystoneauth1 python3-keystoneclient 368s python3-keystonemiddleware python3-kombu python3-legacy-cgi python3-logutils 368s python3-lxml python3-mako python3-memcache python3-microversion-parse 368s python3-monascaclient python3-monotonic python3-msgpack python3-munch 368s python3-networkx python3-neutronclient python3-novaclient 368s python3-observabilityclient python3-openstackclient python3-openstacksdk 368s python3-os-client-config python3-os-resource-classes 368s python3-os-service-types python3-osc-lib python3-osc-placement 368s python3-oslo.cache python3-oslo.concurrency python3-oslo.config 368s python3-oslo.context python3-oslo.db python3-oslo.i18n python3-oslo.log 368s python3-oslo.messaging python3-oslo.metrics python3-oslo.middleware 368s python3-oslo.policy python3-oslo.reports python3-oslo.serialization 368s python3-oslo.service python3-oslo.upgradecheck python3-oslo.utils 368s python3-oslo.versionedobjects python3-packaging python3-paste 368s python3-pastedeploy python3-pastedeploy-tpl python3-pbr python3-pecan 368s python3-platformdirs python3-prettytable python3-prometheus-client 368s python3-psutil python3-psycopg2 python3-pyasyncore python3-pycadf 368s python3-pymysql python3-pyperclip python3-pytz python3-repoze.lru 368s python3-requestsexceptions python3-rfc3986 python3-roman python3-routes 368s python3-simplegeneric python3-six python3-sqlalchemy 368s python3-sqlalchemy-utils python3-statsd python3-stevedore python3-taskflow 368s python3-tempita python3-tenacity python3-testresources python3-testscenarios 368s python3-testtools python3-tz python3-tzlocal python3-vine python3-voluptuous 368s python3-warlock python3-watcher python3-wcwidth python3-webob python3-wrapt 368s python3-wsme python3.12 python3.12-minimal sgml-base xml-core 368s 0 upgraded, 131 newly installed, 0 to remove and 0 not upgraded. 368s Need to get 29.6 MB of archives. 368s After this operation, 178 MB of additional disk space will be used. 368s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 369s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 369s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 369s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 369s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 369s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 369s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 369s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x python3-mako all 1.3.8-2 [63.5 kB] 369s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x python3-greenlet s390x 3.1.0-1 [176 kB] 369s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy all 2.0.38+ds1-0ubuntu1 [1215 kB] 369s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alembic all 1.13.2-4 [149 kB] 369s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 369s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 369s Get:14 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 369s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x alembic all 1.13.2-4 [294 kB] 369s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 369s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 369s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libpq5 s390x 17.3-3 [147 kB] 369s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 369s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x pycadf-common all 3.1.1-5 [4556 B] 369s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 369s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x python3-appdirs all 1.4.4-4 [10.9 kB] 369s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tzlocal all 5.2-1.1 [20.5 kB] 369s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-apscheduler all 3.11.0-1 [44.8 kB] 369s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 369s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x python3-arrow all 1.3.0-1.1ubuntu1 [56.1 kB] 369s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pbr all 6.1.1-0ubuntu1 [58.2 kB] 369s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wrapt s390x 1.15.0-4 [34.4 kB] 369s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x python3-debtcollector all 3.0.0-3 [13.3 kB] 369s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 369s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prettytable all 3.12.0-1 [36.5 kB] 369s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x python3-automaton all 3.2.0-3 [15.0 kB] 369s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x python3-autopage all 0.4.0-4 [13.1 kB] 369s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cachetools all 5.3.3-1 [10.3 kB] 369s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x python3-iso8601 all 2.1.0-2 [9136 B] 369s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 369s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x python3-six all 1.17.0-1 [13.2 kB] 369s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-service-types all 1.7.0-5 [12.8 kB] 369s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x python3-stevedore all 1:5.4.0-0ubuntu1 [21.1 kB] 369s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystoneauth1 all 5.9.1-0ubuntu1 [171 kB] 369s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.i18n all 6.5.0-0ubuntu1 [22.3 kB] 369s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 370s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 370s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.utils all 8.1.0-0ubuntu1 [88.4 kB] 370s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cinderclient all 1:9.6.0-0ubuntu1 [133 kB] 370s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyperclip all 1.8.2-2 [11.5 kB] 370s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cmd2 all 2.5.7+ds-1 [123 kB] 370s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 370s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 370s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cliff all 4.8.0-0ubuntu1 [43.3 kB] 370s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 370s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 370s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x python3-croniter all 2.0.7-3 [22.3 kB] 370s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 370s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x python3-deprecation all 2.1.0-3 [8806 B] 370s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dnspython all 2.7.0-1ubuntu1 [167 kB] 370s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dogpile.cache all 1.3.3-1 [46.8 kB] 370s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x python3-eventlet all 0.39.0-0ubuntu1 [277 kB] 370s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x python3-monotonic all 1.6-3 [5344 B] 370s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fasteners all 0.18-2 [12.5 kB] 370s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testtools all 2.7.2-4 [124 kB] 370s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fixtures all 4.1.0-3 [34.8 kB] 370s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x python3-futurist all 3.0.0-3 [24.2 kB] 370s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jmespath all 1.0.1-1 [21.3 kB] 370s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x python3-munch all 4.0.0-2 [10.9 kB] 370s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 370s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-requestsexceptions all 1.4.0-5 [3824 B] 370s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-openstacksdk all 4.3.0-0ubuntu1 [676 kB] 370s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-client-config all 2.1.0-0ubuntu5 [17.6 kB] 370s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-osc-lib all 3.2.0-0ubuntu1 [53.9 kB] 370s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-gnocchiclient all 7.0.8-0ubuntu1 [31.9 kB] 370s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.context all 1:5.7.0-0ubuntu1 [13.8 kB] 370s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-msgpack s390x 1.0.3-3build3 [117 kB] 370s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.serialization all 5.6.0-0ubuntu1 [15.8 kB] 370s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.log all 7.0.0-0ubuntu1 [45.6 kB] 370s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x python3-rfc3986 all 2.0.0-3 [22.0 kB] 370s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.config all 1:9.7.0-0ubuntu1 [90.4 kB] 370s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystoneclient all 1:5.5.0-0ubuntu1 [180 kB] 370s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x python3-memcache all 1.62-3 [17.6 kB] 370s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.cache all 3.10.0-0ubuntu1 [41.1 kB] 370s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pycadf all 3.1.1-5 [17.5 kB] 370s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x python3-legacy-cgi all 2.6.1-2 [16.3 kB] 370s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x python3-webob all 1:1.8.9-1 [86.8 kB] 370s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystonemiddleware all 10.8.0-0ubuntu1 [80.5 kB] 370s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x python3-vine all 5.1.0+dfsg-1 [14.2 kB] 370s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x python3-amqp all 5.3.1-2 [43.5 kB] 370s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x python3-kombu all 5.4.2-3 [145 kB] 370s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x python3-logutils all 0.3.5-5 [17.8 kB] 370s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x python3-microversion-parse all 1.0.1-3 [10.5 kB] 370s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x python3-monascaclient all 2.8.0-0ubuntu1 [21.5 kB] 370s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 371s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x python3-neutronclient all 1:11.4.0-0ubuntu1 [121 kB] 371s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x python3-novaclient all 2:18.8.0-0ubuntu1 [181 kB] 371s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-observabilityclient all 0.3.0-3 [11.1 kB] 371s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x python3-osc-placement all 4.5.0-0ubuntu1 [35.3 kB] 371s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x python3-openstackclient all 7.2.1-0ubuntu1 [439 kB] 371s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-resource-classes all 1.1.0-0ubuntu1 [6604 B] 371s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.concurrency all 6.2.0-0ubuntu1 [31.0 kB] 371s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testresources all 2.0.1-5 [26.8 kB] 371s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testscenarios all 0.5.0-4 [13.0 kB] 371s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.db all 17.1.0-0ubuntu2 [101 kB] 371s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prometheus-client all 0.21.1+ds1-1 [45.8 kB] 371s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.metrics all 0.10.1-0ubuntu1 [7594 B] 371s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x python3-statsd all 4.0.1-2 [12.2 kB] 371s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.middleware all 6.3.0-0ubuntu1 [34.5 kB] 371s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tempita all 0.6.0-1 [14.8 kB] 371s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x python3-paste all 3.10.1-1 [210 kB] 371s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pastedeploy-tpl all 3.1-1 [5652 B] 371s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pastedeploy all 3.1-1 [13.5 kB] 371s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x python3-repoze.lru all 0.7-3 [12.3 kB] 371s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x python3-routes all 2.5.1-7 [90.8 kB] 371s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.service all 4.0.0-0ubuntu1 [49.4 kB] 371s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tenacity all 9.0.0-0ubuntu1 [17.0 kB] 371s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.messaging all 16.0.0-0ubuntu1 [119 kB] 371s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.policy all 4.5.0-0ubuntu1 [58.3 kB] 371s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.reports all 3.5.0-0ubuntu1 [26.5 kB] 371s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.upgradecheck all 2.4.0-0ubuntu1 [9386 B] 371s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.versionedobjects all 3.5.0-0ubuntu1 [59.8 kB] 371s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x python3-simplegeneric all 0.8.1-5 [10.7 kB] 371s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pecan all 1.5.1-6 [86.8 kB] 371s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psycopg2 s390x 2.9.10-1 [147 kB] 371s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyasyncore all 1.0.2-3 [10.2 kB] 371s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pymysql all 1.1.1-2ubuntu1 [39.5 kB] 371s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy-utils all 0.41.1-0ubuntu1 [59.4 kB] 371s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x python3-taskflow all 5.10.0-0ubuntu1 [261 kB] 372s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x python3-voluptuous all 0.14.2-1 [42.7 kB] 372s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x python3-warlock all 2.0.1-4 [6220 B] 372s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x python3-glanceclient all 1:4.7.0-0ubuntu1 [108 kB] 372s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ironicclient all 5.10.0-0ubuntu1 [120 kB] 372s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wsme all 0.12.1-5ubuntu1 [44.9 kB] 372s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-watcher all 2:13.0.0+git2025021409.5f6fbaea-0ubuntu1 [331 kB] 372s Fetched 29.6 MB in 3s (8592 kB/s) 372s Selecting previously unselected package libpython3.12-minimal:s390x. 372s (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 ... 55929 files and directories currently installed.) 372s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 372s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 372s Selecting previously unselected package python3.12-minimal. 372s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 372s Unpacking python3.12-minimal (3.12.9-1) ... 372s Selecting previously unselected package sgml-base. 372s Preparing to unpack .../002-sgml-base_1.31_all.deb ... 372s Unpacking sgml-base (1.31) ... 372s Selecting previously unselected package libnsl2:s390x. 372s Preparing to unpack .../003-libnsl2_1.3.0-3build3_s390x.deb ... 372s Unpacking libnsl2:s390x (1.3.0-3build3) ... 372s Selecting previously unselected package libpython3.12-stdlib:s390x. 372s Preparing to unpack .../004-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 372s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 372s Selecting previously unselected package python3.12. 372s Preparing to unpack .../005-python3.12_3.12.9-1_s390x.deb ... 372s Unpacking python3.12 (3.12.9-1) ... 372s Selecting previously unselected package python3-importlib-metadata. 372s Preparing to unpack .../006-python3-importlib-metadata_8.6.1-1_all.deb ... 372s Unpacking python3-importlib-metadata (8.6.1-1) ... 372s Selecting previously unselected package python3-mako. 372s Preparing to unpack .../007-python3-mako_1.3.8-2_all.deb ... 372s Unpacking python3-mako (1.3.8-2) ... 372s Selecting previously unselected package python3-greenlet. 372s Preparing to unpack .../008-python3-greenlet_3.1.0-1_s390x.deb ... 372s Unpacking python3-greenlet (3.1.0-1) ... 372s Selecting previously unselected package python3-sqlalchemy. 372s Preparing to unpack .../009-python3-sqlalchemy_2.0.38+ds1-0ubuntu1_all.deb ... 372s Unpacking python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 372s Selecting previously unselected package python3-alembic. 372s Preparing to unpack .../010-python3-alembic_1.13.2-4_all.deb ... 372s Unpacking python3-alembic (1.13.2-4) ... 373s Selecting previously unselected package libjs-jquery. 373s Preparing to unpack .../011-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 373s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 373s Selecting previously unselected package libjs-underscore. 373s Preparing to unpack .../012-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 373s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 373s Selecting previously unselected package libjs-sphinxdoc. 373s Preparing to unpack .../013-libjs-sphinxdoc_8.1.3-5_all.deb ... 373s Unpacking libjs-sphinxdoc (8.1.3-5) ... 373s Selecting previously unselected package alembic. 373s Preparing to unpack .../014-alembic_1.13.2-4_all.deb ... 373s Unpacking alembic (1.13.2-4) ... 373s Selecting previously unselected package xml-core. 373s Preparing to unpack .../015-xml-core_0.19_all.deb ... 373s Unpacking xml-core (0.19) ... 373s Selecting previously unselected package docutils-common. 373s Preparing to unpack .../016-docutils-common_0.21.2+dfsg-2_all.deb ... 373s Unpacking docutils-common (0.21.2+dfsg-2) ... 373s Selecting previously unselected package libpq5:s390x. 373s Preparing to unpack .../017-libpq5_17.3-3_s390x.deb ... 373s Unpacking libpq5:s390x (17.3-3) ... 373s Selecting previously unselected package libxslt1.1:s390x. 373s Preparing to unpack .../018-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 373s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 373s Selecting previously unselected package pycadf-common. 373s Preparing to unpack .../019-pycadf-common_3.1.1-5_all.deb ... 373s Unpacking pycadf-common (3.1.1-5) ... 373s Selecting previously unselected package python3-all. 373s Preparing to unpack .../020-python3-all_3.13.1-1~exp2_s390x.deb ... 373s Unpacking python3-all (3.13.1-1~exp2) ... 373s Selecting previously unselected package python3-appdirs. 373s Preparing to unpack .../021-python3-appdirs_1.4.4-4_all.deb ... 373s Unpacking python3-appdirs (1.4.4-4) ... 373s Selecting previously unselected package python3-tzlocal. 373s Preparing to unpack .../022-python3-tzlocal_5.2-1.1_all.deb ... 373s Unpacking python3-tzlocal (5.2-1.1) ... 373s Selecting previously unselected package python3-apscheduler. 373s Preparing to unpack .../023-python3-apscheduler_3.11.0-1_all.deb ... 373s Unpacking python3-apscheduler (3.11.0-1) ... 373s Selecting previously unselected package python3-dateutil. 373s Preparing to unpack .../024-python3-dateutil_2.9.0-3_all.deb ... 373s Unpacking python3-dateutil (2.9.0-3) ... 373s Selecting previously unselected package python3-arrow. 373s Preparing to unpack .../025-python3-arrow_1.3.0-1.1ubuntu1_all.deb ... 373s Unpacking python3-arrow (1.3.0-1.1ubuntu1) ... 373s Selecting previously unselected package python3-pbr. 373s Preparing to unpack .../026-python3-pbr_6.1.1-0ubuntu1_all.deb ... 373s Unpacking python3-pbr (6.1.1-0ubuntu1) ... 373s Selecting previously unselected package python3-wrapt. 373s Preparing to unpack .../027-python3-wrapt_1.15.0-4_s390x.deb ... 373s Unpacking python3-wrapt (1.15.0-4) ... 373s Selecting previously unselected package python3-debtcollector. 373s Preparing to unpack .../028-python3-debtcollector_3.0.0-3_all.deb ... 373s Unpacking python3-debtcollector (3.0.0-3) ... 373s Selecting previously unselected package python3-wcwidth. 373s Preparing to unpack .../029-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 373s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 373s Selecting previously unselected package python3-prettytable. 373s Preparing to unpack .../030-python3-prettytable_3.12.0-1_all.deb ... 373s Unpacking python3-prettytable (3.12.0-1) ... 373s Selecting previously unselected package python3-automaton. 373s Preparing to unpack .../031-python3-automaton_3.2.0-3_all.deb ... 373s Unpacking python3-automaton (3.2.0-3) ... 373s Selecting previously unselected package python3-autopage. 373s Preparing to unpack .../032-python3-autopage_0.4.0-4_all.deb ... 373s Unpacking python3-autopage (0.4.0-4) ... 373s Selecting previously unselected package python3-cachetools. 373s Preparing to unpack .../033-python3-cachetools_5.3.3-1_all.deb ... 373s Unpacking python3-cachetools (5.3.3-1) ... 373s Selecting previously unselected package python3-iso8601. 373s Preparing to unpack .../034-python3-iso8601_2.1.0-2_all.deb ... 373s Unpacking python3-iso8601 (2.1.0-2) ... 373s Selecting previously unselected package python3-lxml:s390x. 373s Preparing to unpack .../035-python3-lxml_5.3.1-1_s390x.deb ... 373s Unpacking python3-lxml:s390x (5.3.1-1) ... 373s Selecting previously unselected package python3-six. 373s Preparing to unpack .../036-python3-six_1.17.0-1_all.deb ... 373s Unpacking python3-six (1.17.0-1) ... 373s Selecting previously unselected package python3-os-service-types. 373s Preparing to unpack .../037-python3-os-service-types_1.7.0-5_all.deb ... 373s Unpacking python3-os-service-types (1.7.0-5) ... 373s Selecting previously unselected package python3-stevedore. 373s Preparing to unpack .../038-python3-stevedore_1%3a5.4.0-0ubuntu1_all.deb ... 373s Unpacking python3-stevedore (1:5.4.0-0ubuntu1) ... 373s Selecting previously unselected package python3-keystoneauth1. 373s Preparing to unpack .../039-python3-keystoneauth1_5.9.1-0ubuntu1_all.deb ... 373s Unpacking python3-keystoneauth1 (5.9.1-0ubuntu1) ... 373s Selecting previously unselected package python3-oslo.i18n. 373s Preparing to unpack .../040-python3-oslo.i18n_6.5.0-0ubuntu1_all.deb ... 373s Unpacking python3-oslo.i18n (6.5.0-0ubuntu1) ... 373s Selecting previously unselected package python3-psutil. 373s Preparing to unpack .../041-python3-psutil_5.9.8-2build3_s390x.deb ... 373s Unpacking python3-psutil (5.9.8-2build3) ... 373s Selecting previously unselected package python3-packaging. 373s Preparing to unpack .../042-python3-packaging_24.2-1_all.deb ... 373s Unpacking python3-packaging (24.2-1) ... 373s Selecting previously unselected package python3-oslo.utils. 373s Preparing to unpack .../043-python3-oslo.utils_8.1.0-0ubuntu1_all.deb ... 373s Unpacking python3-oslo.utils (8.1.0-0ubuntu1) ... 373s Selecting previously unselected package python3-cinderclient. 373s Preparing to unpack .../044-python3-cinderclient_1%3a9.6.0-0ubuntu1_all.deb ... 373s Unpacking python3-cinderclient (1:9.6.0-0ubuntu1) ... 373s Selecting previously unselected package python3-pyperclip. 373s Preparing to unpack .../045-python3-pyperclip_1.8.2-2_all.deb ... 373s Unpacking python3-pyperclip (1.8.2-2) ... 373s Selecting previously unselected package python3-cmd2. 373s Preparing to unpack .../046-python3-cmd2_2.5.7+ds-1_all.deb ... 373s Unpacking python3-cmd2 (2.5.7+ds-1) ... 373s Selecting previously unselected package python3-roman. 373s Preparing to unpack .../047-python3-roman_5.0-1_all.deb ... 373s Unpacking python3-roman (5.0-1) ... 373s Selecting previously unselected package python3-docutils. 373s Preparing to unpack .../048-python3-docutils_0.21.2+dfsg-2_all.deb ... 373s Unpacking python3-docutils (0.21.2+dfsg-2) ... 373s Selecting previously unselected package python3-cliff. 373s Preparing to unpack .../049-python3-cliff_4.8.0-0ubuntu1_all.deb ... 373s Unpacking python3-cliff (4.8.0-0ubuntu1) ... 373s Selecting previously unselected package python3-pytz. 373s Preparing to unpack .../050-python3-pytz_2025.1-3_all.deb ... 373s Unpacking python3-pytz (2025.1-3) ... 373s Selecting previously unselected package python3-tz. 373s Preparing to unpack .../051-python3-tz_2025.1-3_all.deb ... 373s Unpacking python3-tz (2025.1-3) ... 373s Selecting previously unselected package python3-croniter. 373s Preparing to unpack .../052-python3-croniter_2.0.7-3_all.deb ... 373s Unpacking python3-croniter (2.0.7-3) ... 373s Selecting previously unselected package python3-decorator. 373s Preparing to unpack .../053-python3-decorator_5.1.1-5_all.deb ... 373s Unpacking python3-decorator (5.1.1-5) ... 373s Selecting previously unselected package python3-deprecation. 373s Preparing to unpack .../054-python3-deprecation_2.1.0-3_all.deb ... 373s Unpacking python3-deprecation (2.1.0-3) ... 373s Selecting previously unselected package python3-dnspython. 373s Preparing to unpack .../055-python3-dnspython_2.7.0-1ubuntu1_all.deb ... 373s Unpacking python3-dnspython (2.7.0-1ubuntu1) ... 373s Selecting previously unselected package python3-dogpile.cache. 373s Preparing to unpack .../056-python3-dogpile.cache_1.3.3-1_all.deb ... 373s Unpacking python3-dogpile.cache (1.3.3-1) ... 373s Selecting previously unselected package python3-eventlet. 373s Preparing to unpack .../057-python3-eventlet_0.39.0-0ubuntu1_all.deb ... 373s Unpacking python3-eventlet (0.39.0-0ubuntu1) ... 373s Selecting previously unselected package python3-monotonic. 373s Preparing to unpack .../058-python3-monotonic_1.6-3_all.deb ... 373s Unpacking python3-monotonic (1.6-3) ... 373s Selecting previously unselected package python3-fasteners. 373s Preparing to unpack .../059-python3-fasteners_0.18-2_all.deb ... 373s Unpacking python3-fasteners (0.18-2) ... 373s Selecting previously unselected package python3-testtools. 373s Preparing to unpack .../060-python3-testtools_2.7.2-4_all.deb ... 373s Unpacking python3-testtools (2.7.2-4) ... 373s Selecting previously unselected package python3-fixtures. 373s Preparing to unpack .../061-python3-fixtures_4.1.0-3_all.deb ... 373s Unpacking python3-fixtures (4.1.0-3) ... 373s Selecting previously unselected package python3-futurist. 373s Preparing to unpack .../062-python3-futurist_3.0.0-3_all.deb ... 373s Unpacking python3-futurist (3.0.0-3) ... 373s Selecting previously unselected package python3-jmespath. 373s Preparing to unpack .../063-python3-jmespath_1.0.1-1_all.deb ... 373s Unpacking python3-jmespath (1.0.1-1) ... 373s Selecting previously unselected package python3-munch. 373s Preparing to unpack .../064-python3-munch_4.0.0-2_all.deb ... 373s Unpacking python3-munch (4.0.0-2) ... 373s Selecting previously unselected package python3-platformdirs. 373s Preparing to unpack .../065-python3-platformdirs_4.3.6-1_all.deb ... 373s Unpacking python3-platformdirs (4.3.6-1) ... 373s Selecting previously unselected package python3-requestsexceptions. 373s Preparing to unpack .../066-python3-requestsexceptions_1.4.0-5_all.deb ... 373s Unpacking python3-requestsexceptions (1.4.0-5) ... 373s Selecting previously unselected package python3-openstacksdk. 373s Preparing to unpack .../067-python3-openstacksdk_4.3.0-0ubuntu1_all.deb ... 373s Unpacking python3-openstacksdk (4.3.0-0ubuntu1) ... 373s Selecting previously unselected package python3-os-client-config. 373s Preparing to unpack .../068-python3-os-client-config_2.1.0-0ubuntu5_all.deb ... 373s Unpacking python3-os-client-config (2.1.0-0ubuntu5) ... 373s Selecting previously unselected package python3-osc-lib. 373s Preparing to unpack .../069-python3-osc-lib_3.2.0-0ubuntu1_all.deb ... 373s Unpacking python3-osc-lib (3.2.0-0ubuntu1) ... 373s Selecting previously unselected package python3-gnocchiclient. 373s Preparing to unpack .../070-python3-gnocchiclient_7.0.8-0ubuntu1_all.deb ... 373s Unpacking python3-gnocchiclient (7.0.8-0ubuntu1) ... 373s Selecting previously unselected package python3-oslo.context. 373s Preparing to unpack .../071-python3-oslo.context_1%3a5.7.0-0ubuntu1_all.deb ... 373s Unpacking python3-oslo.context (1:5.7.0-0ubuntu1) ... 373s Selecting previously unselected package python3-msgpack. 373s Preparing to unpack .../072-python3-msgpack_1.0.3-3build3_s390x.deb ... 373s Unpacking python3-msgpack (1.0.3-3build3) ... 373s Selecting previously unselected package python3-oslo.serialization. 373s Preparing to unpack .../073-python3-oslo.serialization_5.6.0-0ubuntu1_all.deb ... 373s Unpacking python3-oslo.serialization (5.6.0-0ubuntu1) ... 373s Selecting previously unselected package python3-oslo.log. 373s Preparing to unpack .../074-python3-oslo.log_7.0.0-0ubuntu1_all.deb ... 373s Unpacking python3-oslo.log (7.0.0-0ubuntu1) ... 373s Selecting previously unselected package python3-rfc3986. 373s Preparing to unpack .../075-python3-rfc3986_2.0.0-3_all.deb ... 373s Unpacking python3-rfc3986 (2.0.0-3) ... 374s Selecting previously unselected package python3-oslo.config. 374s Preparing to unpack .../076-python3-oslo.config_1%3a9.7.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.config (1:9.7.0-0ubuntu1) ... 374s Selecting previously unselected package python3-keystoneclient. 374s Preparing to unpack .../077-python3-keystoneclient_1%3a5.5.0-0ubuntu1_all.deb ... 374s Unpacking python3-keystoneclient (1:5.5.0-0ubuntu1) ... 374s Selecting previously unselected package python3-memcache. 374s Preparing to unpack .../078-python3-memcache_1.62-3_all.deb ... 374s Unpacking python3-memcache (1.62-3) ... 374s Selecting previously unselected package python3-oslo.cache. 374s Preparing to unpack .../079-python3-oslo.cache_3.10.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.cache (3.10.0-0ubuntu1) ... 374s Selecting previously unselected package python3-pycadf. 374s Preparing to unpack .../080-python3-pycadf_3.1.1-5_all.deb ... 374s Unpacking python3-pycadf (3.1.1-5) ... 374s Selecting previously unselected package python3-legacy-cgi. 374s Preparing to unpack .../081-python3-legacy-cgi_2.6.1-2_all.deb ... 374s Unpacking python3-legacy-cgi (2.6.1-2) ... 374s Selecting previously unselected package python3-webob. 374s Preparing to unpack .../082-python3-webob_1%3a1.8.9-1_all.deb ... 374s Unpacking python3-webob (1:1.8.9-1) ... 374s Selecting previously unselected package python3-keystonemiddleware. 374s Preparing to unpack .../083-python3-keystonemiddleware_10.8.0-0ubuntu1_all.deb ... 374s Unpacking python3-keystonemiddleware (10.8.0-0ubuntu1) ... 374s Selecting previously unselected package python3-vine. 374s Preparing to unpack .../084-python3-vine_5.1.0+dfsg-1_all.deb ... 374s Unpacking python3-vine (5.1.0+dfsg-1) ... 374s Selecting previously unselected package python3-amqp. 374s Preparing to unpack .../085-python3-amqp_5.3.1-2_all.deb ... 374s Unpacking python3-amqp (5.3.1-2) ... 374s Selecting previously unselected package python3-kombu. 374s Preparing to unpack .../086-python3-kombu_5.4.2-3_all.deb ... 374s Unpacking python3-kombu (5.4.2-3) ... 374s Selecting previously unselected package python3-logutils. 374s Preparing to unpack .../087-python3-logutils_0.3.5-5_all.deb ... 374s Unpacking python3-logutils (0.3.5-5) ... 374s Selecting previously unselected package python3-microversion-parse. 374s Preparing to unpack .../088-python3-microversion-parse_1.0.1-3_all.deb ... 374s Unpacking python3-microversion-parse (1.0.1-3) ... 374s Selecting previously unselected package python3-monascaclient. 374s Preparing to unpack .../089-python3-monascaclient_2.8.0-0ubuntu1_all.deb ... 374s Unpacking python3-monascaclient (2.8.0-0ubuntu1) ... 374s Selecting previously unselected package python3-networkx. 374s Preparing to unpack .../090-python3-networkx_3.2.1-4ubuntu1_all.deb ... 374s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 374s Selecting previously unselected package python3-neutronclient. 374s Preparing to unpack .../091-python3-neutronclient_1%3a11.4.0-0ubuntu1_all.deb ... 374s Unpacking python3-neutronclient (1:11.4.0-0ubuntu1) ... 374s Selecting previously unselected package python3-novaclient. 374s Preparing to unpack .../092-python3-novaclient_2%3a18.8.0-0ubuntu1_all.deb ... 374s Unpacking python3-novaclient (2:18.8.0-0ubuntu1) ... 374s Selecting previously unselected package python3-observabilityclient. 374s Preparing to unpack .../093-python3-observabilityclient_0.3.0-3_all.deb ... 374s Unpacking python3-observabilityclient (0.3.0-3) ... 374s Selecting previously unselected package python3-osc-placement. 374s Preparing to unpack .../094-python3-osc-placement_4.5.0-0ubuntu1_all.deb ... 374s Unpacking python3-osc-placement (4.5.0-0ubuntu1) ... 374s Selecting previously unselected package python3-openstackclient. 374s Preparing to unpack .../095-python3-openstackclient_7.2.1-0ubuntu1_all.deb ... 374s Unpacking python3-openstackclient (7.2.1-0ubuntu1) ... 374s Selecting previously unselected package python3-os-resource-classes. 374s Preparing to unpack .../096-python3-os-resource-classes_1.1.0-0ubuntu1_all.deb ... 374s Unpacking python3-os-resource-classes (1.1.0-0ubuntu1) ... 374s Selecting previously unselected package python3-oslo.concurrency. 374s Preparing to unpack .../097-python3-oslo.concurrency_6.2.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.concurrency (6.2.0-0ubuntu1) ... 374s Selecting previously unselected package python3-testresources. 374s Preparing to unpack .../098-python3-testresources_2.0.1-5_all.deb ... 374s Unpacking python3-testresources (2.0.1-5) ... 374s Selecting previously unselected package python3-testscenarios. 374s Preparing to unpack .../099-python3-testscenarios_0.5.0-4_all.deb ... 374s Unpacking python3-testscenarios (0.5.0-4) ... 374s Selecting previously unselected package python3-oslo.db. 374s Preparing to unpack .../100-python3-oslo.db_17.1.0-0ubuntu2_all.deb ... 374s Unpacking python3-oslo.db (17.1.0-0ubuntu2) ... 374s Selecting previously unselected package python3-prometheus-client. 374s Preparing to unpack .../101-python3-prometheus-client_0.21.1+ds1-1_all.deb ... 374s Unpacking python3-prometheus-client (0.21.1+ds1-1) ... 374s Selecting previously unselected package python3-oslo.metrics. 374s Preparing to unpack .../102-python3-oslo.metrics_0.10.1-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.metrics (0.10.1-0ubuntu1) ... 374s Selecting previously unselected package python3-statsd. 374s Preparing to unpack .../103-python3-statsd_4.0.1-2_all.deb ... 374s Unpacking python3-statsd (4.0.1-2) ... 374s Selecting previously unselected package python3-oslo.middleware. 374s Preparing to unpack .../104-python3-oslo.middleware_6.3.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.middleware (6.3.0-0ubuntu1) ... 374s Selecting previously unselected package python3-tempita. 374s Preparing to unpack .../105-python3-tempita_0.6.0-1_all.deb ... 374s Unpacking python3-tempita (0.6.0-1) ... 374s Selecting previously unselected package python3-paste. 374s Preparing to unpack .../106-python3-paste_3.10.1-1_all.deb ... 374s Unpacking python3-paste (3.10.1-1) ... 374s Selecting previously unselected package python3-pastedeploy-tpl. 374s Preparing to unpack .../107-python3-pastedeploy-tpl_3.1-1_all.deb ... 374s Unpacking python3-pastedeploy-tpl (3.1-1) ... 374s Selecting previously unselected package python3-pastedeploy. 374s Preparing to unpack .../108-python3-pastedeploy_3.1-1_all.deb ... 374s Unpacking python3-pastedeploy (3.1-1) ... 374s Selecting previously unselected package python3-repoze.lru. 374s Preparing to unpack .../109-python3-repoze.lru_0.7-3_all.deb ... 374s Unpacking python3-repoze.lru (0.7-3) ... 374s Selecting previously unselected package python3-routes. 374s Preparing to unpack .../110-python3-routes_2.5.1-7_all.deb ... 374s Unpacking python3-routes (2.5.1-7) ... 374s Selecting previously unselected package python3-oslo.service. 374s Preparing to unpack .../111-python3-oslo.service_4.0.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.service (4.0.0-0ubuntu1) ... 374s Selecting previously unselected package python3-tenacity. 374s Preparing to unpack .../112-python3-tenacity_9.0.0-0ubuntu1_all.deb ... 374s Unpacking python3-tenacity (9.0.0-0ubuntu1) ... 374s Selecting previously unselected package python3-oslo.messaging. 374s Preparing to unpack .../113-python3-oslo.messaging_16.0.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.messaging (16.0.0-0ubuntu1) ... 374s Selecting previously unselected package python3-oslo.policy. 374s Preparing to unpack .../114-python3-oslo.policy_4.5.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.policy (4.5.0-0ubuntu1) ... 374s Selecting previously unselected package python3-oslo.reports. 374s Preparing to unpack .../115-python3-oslo.reports_3.5.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.reports (3.5.0-0ubuntu1) ... 374s Selecting previously unselected package python3-oslo.upgradecheck. 374s Preparing to unpack .../116-python3-oslo.upgradecheck_2.4.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.upgradecheck (2.4.0-0ubuntu1) ... 374s Selecting previously unselected package python3-oslo.versionedobjects. 374s Preparing to unpack .../117-python3-oslo.versionedobjects_3.5.0-0ubuntu1_all.deb ... 374s Unpacking python3-oslo.versionedobjects (3.5.0-0ubuntu1) ... 374s Selecting previously unselected package python3-simplegeneric. 374s Preparing to unpack .../118-python3-simplegeneric_0.8.1-5_all.deb ... 374s Unpacking python3-simplegeneric (0.8.1-5) ... 374s Selecting previously unselected package python3-pecan. 374s Preparing to unpack .../119-python3-pecan_1.5.1-6_all.deb ... 374s Unpacking python3-pecan (1.5.1-6) ... 374s Selecting previously unselected package python3-psycopg2. 374s Preparing to unpack .../120-python3-psycopg2_2.9.10-1_s390x.deb ... 374s Unpacking python3-psycopg2 (2.9.10-1) ... 374s Selecting previously unselected package python3-pyasyncore. 374s Preparing to unpack .../121-python3-pyasyncore_1.0.2-3_all.deb ... 374s Unpacking python3-pyasyncore (1.0.2-3) ... 374s Selecting previously unselected package python3-pymysql. 374s Preparing to unpack .../122-python3-pymysql_1.1.1-2ubuntu1_all.deb ... 374s Unpacking python3-pymysql (1.1.1-2ubuntu1) ... 374s Selecting previously unselected package python3-sqlalchemy-utils. 374s Preparing to unpack .../123-python3-sqlalchemy-utils_0.41.1-0ubuntu1_all.deb ... 374s Unpacking python3-sqlalchemy-utils (0.41.1-0ubuntu1) ... 374s Selecting previously unselected package python3-taskflow. 374s Preparing to unpack .../124-python3-taskflow_5.10.0-0ubuntu1_all.deb ... 374s Unpacking python3-taskflow (5.10.0-0ubuntu1) ... 374s Selecting previously unselected package python3-voluptuous. 374s Preparing to unpack .../125-python3-voluptuous_0.14.2-1_all.deb ... 374s Unpacking python3-voluptuous (0.14.2-1) ... 374s Selecting previously unselected package python3-warlock. 374s Preparing to unpack .../126-python3-warlock_2.0.1-4_all.deb ... 374s Unpacking python3-warlock (2.0.1-4) ... 374s Selecting previously unselected package python3-glanceclient. 374s Preparing to unpack .../127-python3-glanceclient_1%3a4.7.0-0ubuntu1_all.deb ... 374s Unpacking python3-glanceclient (1:4.7.0-0ubuntu1) ... 374s Selecting previously unselected package python3-ironicclient. 374s Preparing to unpack .../128-python3-ironicclient_5.10.0-0ubuntu1_all.deb ... 374s Unpacking python3-ironicclient (5.10.0-0ubuntu1) ... 375s Selecting previously unselected package python3-wsme. 375s Preparing to unpack .../129-python3-wsme_0.12.1-5ubuntu1_all.deb ... 375s Unpacking python3-wsme (0.12.1-5ubuntu1) ... 375s Selecting previously unselected package python3-watcher. 375s Preparing to unpack .../130-python3-watcher_2%3a13.0.0+git2025021409.5f6fbaea-0ubuntu1_all.deb ... 375s Unpacking python3-watcher (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 375s Setting up python3-importlib-metadata (8.6.1-1) ... 375s Setting up python3-repoze.lru (0.7-3) ... 375s Setting up python3-warlock (2.0.1-4) ... 375s Setting up python3-cachetools (5.3.3-1) ... 375s Setting up python3-pbr (6.1.1-0ubuntu1) ... 375s Setting up python3-statsd (4.0.1-2) ... 376s Setting up python3-tenacity (9.0.0-0ubuntu1) ... 376s Setting up python3-autopage (0.4.0-4) ... 376s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 376s Setting up python3-memcache (1.62-3) ... 376s Setting up libpq5:s390x (17.3-3) ... 376s Setting up python3-requestsexceptions (1.4.0-5) ... 376s Setting up python3-pyperclip (1.8.2-2) ... 376s Setting up python3-pytz (2025.1-3) ... 376s Setting up python3-networkx (3.2.1-4ubuntu1) ... 378s Setting up python3-platformdirs (4.3.6-1) ... 379s Setting up python3-munch (4.0.0-2) ... 379s Setting up python3-psutil (5.9.8-2build3) ... 379s Setting up python3-os-resource-classes (1.1.0-0ubuntu1) ... 379s Setting up python3-tz (2025.1-3) ... 379s Setting up python3-vine (5.1.0+dfsg-1) ... 379s Setting up python3-monotonic (1.6-3) ... 380s Setting up python3-six (1.17.0-1) ... 380s Setting up python3-roman (5.0-1) ... 380s Setting up python3-decorator (5.1.1-5) ... 380s Setting up python3-tempita (0.6.0-1) ... 380s Setting up python3-packaging (24.2-1) ... 380s Setting up python3-iso8601 (2.1.0-2) ... 380s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 381s Setting up python3-rfc3986 (2.0.0-3) ... 381s Setting up python3-paste (3.10.1-1) ... 381s Setting up python3-cmd2 (2.5.7+ds-1) ... 381s Setting up python3-jmespath (1.0.1-1) ... 382s Setting up python3-greenlet (3.1.0-1) ... 382s Setting up python3-pastedeploy-tpl (3.1-1) ... 382s Setting up python3-wrapt (1.15.0-4) ... 382s Setting up python3-psycopg2 (2.9.10-1) ... 382s Setting up python3-deprecation (2.1.0-3) ... 382s Setting up python3-pymysql (1.1.1-2ubuntu1) ... 382s Setting up python3-fasteners (0.18-2) ... 382s Setting up pycadf-common (3.1.1-5) ... 382s Setting up python3-legacy-cgi (2.6.1-2) ... 383s Setting up python3-dnspython (2.7.0-1ubuntu1) ... 383s Setting up libnsl2:s390x (1.3.0-3build3) ... 383s Setting up python3-amqp (5.3.1-2) ... 383s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 383s Setting up python3-os-service-types (1.7.0-5) ... 383s Setting up python3-stevedore (1:5.4.0-0ubuntu1) ... 383s Setting up python3-dateutil (2.9.0-3) ... 384s Setting up sgml-base (1.31) ... 384s Setting up python3-msgpack (1.0.3-3build3) ... 384s Setting up python3-voluptuous (0.14.2-1) ... 384s Setting up python3-logutils (0.3.5-5) ... 384s Setting up python3-pyasyncore (1.0.2-3) ... 384s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 384s Setting up python3-tzlocal (5.2-1.1) ... 384s Setting up python3-simplegeneric (0.8.1-5) ... 385s Setting up python3-prettytable (3.12.0-1) ... 385s Setting up python3-appdirs (1.4.4-4) ... 385s Setting up python3-oslo.i18n (6.5.0-0ubuntu1) ... 385s Setting up python3-mako (1.3.8-2) ... 385s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 385s Setting up python3-webob (1:1.8.9-1) ... 385s Setting up python3.12-minimal (3.12.9-1) ... 386s Setting up python3-pecan (1.5.1-6) ... 386s Setting up python3-testresources (2.0.1-5) ... 387s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 387s Setting up python3-microversion-parse (1.0.1-3) ... 387s Setting up python3-arrow (1.3.0-1.1ubuntu1) ... 387s Setting up python3-wsme (0.12.1-5ubuntu1) ... 387s Setting up python3-pastedeploy (3.1-1) ... 387s Setting up python3.12 (3.12.9-1) ... 388s Setting up python3-croniter (2.0.7-3) ... 388s Setting up python3-all (3.13.1-1~exp2) ... 388s Setting up python3-futurist (3.0.0-3) ... 389s Setting up python3-debtcollector (3.0.0-3) ... 389s Setting up python3-kombu (5.4.2-3) ... 389s Setting up python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 391s Setting up python3-apscheduler (3.11.0-1) ... 391s Setting up python3-dogpile.cache (1.3.3-1) ... 392s Setting up python3-prometheus-client (0.21.1+ds1-1) ... 392s Setting up python3-eventlet (0.39.0-0ubuntu1) ... 392s Setting up python3-oslo.context (1:5.7.0-0ubuntu1) ... 392s Setting up python3-automaton (3.2.0-3) ... 392s Setting up libjs-sphinxdoc (8.1.3-5) ... 392s Setting up python3-lxml:s390x (5.3.1-1) ... 393s Setting up python3-alembic (1.13.2-4) ... 393s Setting up xml-core (0.19) ... 393s Setting up python3-keystoneauth1 (5.9.1-0ubuntu1) ... 394s Setting up alembic (1.13.2-4) ... 394s Setting up python3-sqlalchemy-utils (0.41.1-0ubuntu1) ... 394s Setting up python3-oslo.utils (8.1.0-0ubuntu1) ... 394s Setting up python3-routes (2.5.1-7) ... 394s Setting up python3-openstacksdk (4.3.0-0ubuntu1) ... 396s Setting up python3-cinderclient (1:9.6.0-0ubuntu1) ... 397s Setting up python3-os-client-config (2.1.0-0ubuntu5) ... 397s Setting up python3-oslo.serialization (5.6.0-0ubuntu1) ... 397s Setting up python3-novaclient (2:18.8.0-0ubuntu1) ... 397s Setting up python3-glanceclient (1:4.7.0-0ubuntu1) ... 398s Setting up python3-taskflow (5.10.0-0ubuntu1) ... 399s Setting up python3-testtools (2.7.2-4) ... 399s Setting up python3-fixtures (4.1.0-3) ... 399s Setting up python3-testscenarios (0.5.0-4) ... 399s Processing triggers for libc-bin (2.40-4ubuntu1) ... 399s Processing triggers for systemd (257.2-3ubuntu1) ... 399s Processing triggers for man-db (2.13.0-1) ... 400s Processing triggers for sgml-base (1.31) ... 400s Setting up docutils-common (0.21.2+dfsg-2) ... 400s Processing triggers for sgml-base (1.31) ... 400s Setting up python3-docutils (0.21.2+dfsg-2) ... 401s Setting up python3-cliff (4.8.0-0ubuntu1) ... 401s Setting up python3-oslo.config (1:9.7.0-0ubuntu1) ... 401s Setting up python3-oslo.middleware (6.3.0-0ubuntu1) ... 401s Setting up python3-keystoneclient (1:5.5.0-0ubuntu1) ... 402s Setting up python3-oslo.db (17.1.0-0ubuntu2) ... 402s Setting up python3-osc-lib (3.2.0-0ubuntu1) ... 403s Setting up python3-oslo.concurrency (6.2.0-0ubuntu1) ... 403s Setting up python3-oslo.log (7.0.0-0ubuntu1) ... 403s Setting up python3-pycadf (3.1.1-5) ... 403s Setting up python3-gnocchiclient (7.0.8-0ubuntu1) ... 403s Setting up python3-oslo.metrics (0.10.1-0ubuntu1) ... 403s Setting up python3-oslo.policy (4.5.0-0ubuntu1) ... 404s Setting up python3-monascaclient (2.8.0-0ubuntu1) ... 404s Setting up python3-oslo.reports (3.5.0-0ubuntu1) ... 404s Setting up python3-osc-placement (4.5.0-0ubuntu1) ... 404s Setting up python3-oslo.service (4.0.0-0ubuntu1) ... 404s Setting up python3-oslo.upgradecheck (2.4.0-0ubuntu1) ... 404s Setting up python3-openstackclient (7.2.1-0ubuntu1) ... 406s Setting up python3-observabilityclient (0.3.0-3) ... 406s Setting up python3-oslo.messaging (16.0.0-0ubuntu1) ... 407s Setting up python3-neutronclient (1:11.4.0-0ubuntu1) ... 407s Setting up python3-oslo.cache (3.10.0-0ubuntu1) ... 407s Setting up python3-ironicclient (5.10.0-0ubuntu1) ... 408s Setting up python3-oslo.versionedobjects (3.5.0-0ubuntu1) ... 408s Setting up python3-keystonemiddleware (10.8.0-0ubuntu1) ... 408s Setting up python3-watcher (2:13.0.0+git2025021409.5f6fbaea-0ubuntu1) ... 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-watcher'], kind short, sout pipe, serr pipe, env [] 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.nfOOCR/autodep8-python3-packages.all"], kind short, sout raw, serr pipe, env [] 410s autopkgtest: DBG: testbed command exited with code 0 410s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/autodep8-python3-packages.all /tmp/autopkgtest-work.ugs0pilw/out/autodep8-python3-packages.all 410s autopkgtest: DBG: got reply from testbed: ok 410s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.nfOOCR/build.Ht3/src'], kind short, sout raw, serr raw, env [] 410s autopkgtest: DBG: testbed command exited with code 1 410s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.nfOOCR/build.Ht3'], kind short, sout raw, serr pipe, env [] 411s autopkgtest: DBG: testbed command exited with code 0 411s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.ugs0pilw/out/tests-tree/ /tmp/autopkgtest.nfOOCR/build.Ht3/src/ 415s autopkgtest: DBG: got reply from testbed: ok 415s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.nfOOCR/build.Ht3/src'], kind short, sout raw, serr pipe, env [] 416s autopkgtest: DBG: testbed command exited with code 0 416s autopkgtest [13:26:14]: test autodep8-python3: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import watcher; print(watcher)" ; done 416s autopkgtest [13:26:14]: test autodep8-python3: [----------------------- 416s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.nfOOCR/wrapper.sh --debug --artifacts=/tmp/autopkgtest.nfOOCR/autodep8-python3-artifacts --chdir=/tmp/autopkgtest.nfOOCR/build.Ht3/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.nfOOCR/autodep8-python3-stderr --stdout=/tmp/autopkgtest.nfOOCR/autodep8-python3-stdout --tmp=/tmp/autopkgtest.nfOOCR/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec \'set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import watcher; print(watcher)" ; done\''], kind test, sout raw, serr raw, env [] 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.nfOOCR/autodep8-python3-artifacts 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: changing to directory: /tmp/autopkgtest.nfOOCR/build.Ht3/src 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: LANG=C.UTF-8 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LANGUAGE 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_ADDRESS 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_ALL 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_COLLATE 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_CTYPE 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_IDENTIFICATION 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_MEASUREMENT 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_MESSAGES 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_MONETARY 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_NAME 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_NUMERIC 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_PAPER 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_TELEPHONE 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: unsetting environment: LC_TIME 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: pretending to be a login shell 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: will write standard error to /tmp/autopkgtest.nfOOCR/autodep8-python3-stderr 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: will write stdout to /tmp/autopkgtest.nfOOCR/autodep8-python3-stdout 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.nfOOCR/autopkgtest_tmp 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: command to run: bash -ec set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import watcher; print(watcher)" ; done 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: copying /tmp/tmp.ttciGPQsf2/out to stdout and file: /tmp/autopkgtest.nfOOCR/autodep8-python3-stdout 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: copying /tmp/tmp.ttciGPQsf2/err to standard error and file: /tmp/autopkgtest.nfOOCR/autodep8-python3-stdout 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: writing script pid 3546 to /tmp/autopkgtest_script_pid 416s Testing with python3.12: 416s 416s Testing with python3.13: 416s 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: checking for leaked background processes... 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: waiting for tee/cat subprocesses... 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: cleaning up... 416s /tmp/autopkgtest.nfOOCR/wrapper.sh: Exit status: 0 416s autopkgtest: DBG: testbed command exited with code 0 416s autopkgtest [13:26:14]: test autodep8-python3: -----------------------] 416s autopkgtest: DBG: testbed executing test finished with exit status 0 416s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/autodep8-python3-stdout /tmp/autopkgtest-work.ugs0pilw/out/autodep8-python3-stdout 416s autopkgtest: DBG: got reply from testbed: ok 416s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/autodep8-python3-stderr /tmp/autopkgtest-work.ugs0pilw/out/autodep8-python3-stderr 417s autopkgtest: DBG: got reply from testbed: ok 417s autodep8-python3 PASS (superficial) 417s autopkgtest [13:26:15]: test autodep8-python3: - - - - - - - - - - results - - - - - - - - - - 417s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.nfOOCR/autodep8-python3-artifacts/ /tmp/autopkgtest-work.ugs0pilw/out/artifacts/ 417s autopkgtest: DBG: got reply from testbed: ok 417s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.nfOOCR/autodep8-python3-artifacts', '/tmp/autopkgtest.nfOOCR/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 417s autopkgtest: DBG: testbed command exited with code 0 417s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 417s autopkgtest [13:26:15]: @@@@@@@@@@@@@@@@@@@@ summary 417s watcher-daemons PASS 417s autodep8-python3 PASS (superficial) 417s autopkgtest: DBG: testbed stop 417s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.nfOOCR 417s autopkgtest: DBG: sending command to testbed: close 434s autopkgtest: DBG: got reply from testbed: ok 434s autopkgtest: DBG: sending command to testbed: quit 434s nova [W] Using flock in prodstack6-s390x 434s Creating nova instance adt-plucky-s390x-watcher-20250219-131918-juju-7f2275-prod-proposed-migration-environment-15-128679b5-6bb5-4ec2-a868-b109af64e7d0 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 434s nova [W] Timed out waiting for 1acb2aff-88f0-415f-b7f1-7fa512bf7442 to get deleted. 434s nova [W] Using flock in prodstack6-s390x 434s flock: timeout while waiting to get lock 434s Creating nova instance adt-plucky-s390x-watcher-20250219-131918-juju-7f2275-prod-proposed-migration-environment-15-128679b5-6bb5-4ec2-a868-b109af64e7d0 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 434s nova [W] Timed out waiting for 4198a244-2b5c-4185-aefa-c9ea67e3c890 to get deleted.