0s autopkgtest: DBG: testbed init 0s autopkgtest [04:31:21]: starting date and time: 2025-02-19 04:31:21+0000 0s autopkgtest [04:31:21]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [04:31:21]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.kdh0qxgr/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:prometheus-nextcloud-exporter --apt-upgrade prometheus-nextcloud-exporter --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=prometheus-nextcloud-exporter/0.8.0-1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-9.secgroup --name adt-plucky-s390x-prometheus-nextcloud-exporter-20250219-043121-juju-7f2275-prod-proposed-migration-environment-15-8eb825b7-0b1b-462a-9775-258ec96aa797 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.9dStwG 103s autopkgtest: DBG: sending command to testbed: print-execute-command 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.9bg9mct8/runcmd 103s autopkgtest: DBG: sending command to testbed: capabilities 103s autopkgtest: DBG: got reply from testbed: ok revert-full-system suggested-normal-user=ubuntu revert reboot isolation-machine root-on-testbed 103s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'reboot', 'isolation-machine', 'root-on-testbed', 'has_internet'] 103s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9dStwG'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.9dStwG/wrapper.sh 104s autopkgtest: DBG: got reply from testbed: ok 104s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9dStwG/wrapper.sh'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [04:33:05]: testbed dpkg architecture: s390x 104s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [04:33:05]: testbed apt version: 2.9.29 104s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed has eatmydata 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [04:33:05]: @@@@@@@@@@@@@@@@@@@@ test bed setup 104s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [04:33:06]: testbed release detected to be: None 105s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT source: Types: deb deb-src 105s URIs: http://ftpmaster.internal/ubuntu/ 105s Suites: plucky-proposed 105s Components: main restricted universe multiverse 105s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 105s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 105s Package: * 105s Pin: release plucky-proposed 105s Pin-Priority: 500 105s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [04:33:06]: updating testbed package index (apt update) 105s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 106s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 106s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 106s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 106s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 106s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 106s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [770 kB] 106s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 106s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 kB] 106s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 kB] 106s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 106s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [648 kB] 106s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 107s Fetched 1723 kB in 1s (1578 kB/s) 107s Reading package lists... 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 100 107s 107s Package: src:prometheus-nextcloud-exporter:any 107s Pin: release plucky-proposed 107s Pin-Priority: 995 107s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:prometheus-nextcloud-exporter:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.9dStwG/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 108s + lsb_release --codename --short 108s + RELEASE=plucky 108s + cat 108s + [ plucky != trusty ] 108s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 108s Reading package lists... 108s Building dependency tree... 108s Reading state information... 108s Calculating upgrade... 108s The following packages were automatically installed and are no longer required: 108s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 108s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 108s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 108s linux-tools-6.11.0-8-generic 108s Use 'sudo apt autoremove' to remove them. 108s The following NEW packages will be installed: 108s libapt-pkg7.0 108s The following packages will be upgraded: 108s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 108s s390-tools-signed 108s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 108s Need to get 8909 kB of archives. 108s After this operation, 3624 kB of additional disk space will be used. 108s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 109s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 109s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 109s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 109s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 109s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 109s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 109s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 110s Fetched 8909 kB in 1s (7324 kB/s) 110s Selecting previously unselected package libapt-pkg7.0:s390x. 110s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80980 files and directories currently installed.) 110s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 110s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 110s Setting up libapt-pkg7.0:s390x (2.9.30) ... 110s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81029 files and directories currently installed.) 110s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 110s Unpacking apt (2.9.30) over (2.9.29) ... 110s Setting up apt (2.9.30) ... 110s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81029 files and directories currently installed.) 110s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 110s Unpacking apt-utils (2.9.30) over (2.9.29) ... 110s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 110s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 110s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 110s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 110s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 110s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 110s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 110s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 111s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 111s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 111s Setting up apt-utils (2.9.30) ... 111s Setting up rsyslog (8.2412.0-2ubuntu1) ... 111s info: The user `syslog' is already a member of `adm'. 112s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 112s Setting up dhcpcd-base (1:10.1.0-7) ... 112s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 112s Setting up s390-tools (2.37.0-0ubuntu2) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s Processing triggers for man-db (2.13.0-1) ... 113s Processing triggers for initramfs-tools (0.145ubuntu2) ... 114s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 114s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 118s Using config file '/etc/zipl.conf' 118s Building bootmap in '/boot' 118s Adding IPL section 'ubuntu' (default) 118s Preparing boot device for LD-IPL: vda (0000). 118s Done. 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 + tail -n+2 118s + cut -d/ -f1 118s + grep -v ^linux-.*6\.12\.0-15-generic.* 119s + true 119s + obsolete_pkgs= 119s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s The following packages will be REMOVED: 119s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 119s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 119s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 119s linux-tools-6.11.0-8-generic* 119s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 119s After this operation, 167 MB disk space will be freed. 119s (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.) 119s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 119s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 119s Removing libpython3.12t64:s390x (3.12.9-1) ... 119s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 119s Removing libnsl2:s390x (1.3.0-3build3) ... 119s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 119s 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 ... 55930 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 121s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 121s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 121s + uname -m 121s + [ s390x = ppc64le ] 121s + [ -d /run/systemd/system ] 121s + systemd-detect-virt --quiet --vm 121s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 121s + cat 121s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 121s + echo COMPRESS=lz4 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest [04:33:22]: upgrading testbed (apt dist-upgrade and autopurge) 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', 'dist-upgrade'], 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 Calculating upgrade...Starting pkgProblemResolver with broken count: 0 121s Starting 2 pkgProblemResolver with broken count: 0 121s Done 121s Entering ResolveByKeep 121s 121s 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 ['/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'] 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 122s Starting pkgProblemResolver with broken count: 0 122s Starting 2 pkgProblemResolver with broken count: 0 122s 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.9dStwG/${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 [04:33:23]: rebooting testbed after setup commands that affected boot 122s autopkgtest: DBG: sending command to testbed: reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9dStwG'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.9dStwG/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9dStwG'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.9dStwG/autopkgtest-reboot-prepare 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest [04:33:43]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 142s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.9dStwG/testbed-packages"], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9dStwG/testbed-packages /tmp/autopkgtest-work.kdh0qxgr/out/testbed-packages 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9dStwG'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.9dStwG/autopkgtest-reboot 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.9dStwG'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.9dStwG/autopkgtest-reboot-prepare 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.9dStwG/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: Binaries: initialising 144s autopkgtest [04:33:45]: @@@@@@@@@@@@@@@@@@@@ apt-source prometheus-nextcloud-exporter 144s autopkgtest: DBG: blame += prometheus-nextcloud-exporter 144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 144s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'prometheus-nextcloud-exporter'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^prometheus-nextcloud-exporter$'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'prometheus-nextcloud-exporter=0.8.0-1'], kind short, sout pipe, serr raw, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: install_deps: deps_new=[] 145s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s 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.9dStwG/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source prometheus-nextcloud-exporter=0.8.0-1 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 prometheus-nextcloud-exporter_*.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=prometheus-nextcloud-exporter/0.8.0-1'] 145s + cd / 145s + mktemp -d /tmp/autopkgtest.9dStwG/build.XXX 145s + builddir=/tmp/autopkgtest.9dStwG/build.j3D 145s + cd /tmp/autopkgtest.9dStwG/build.j3D 145s + apt-get source -d -q --only-source prometheus-nextcloud-exporter=0.8.0-1 146s + OUT=Reading package lists... 146s NOTICE: 'prometheus-nextcloud-exporter' packaging is maintained in the 'Git' version control system at: 146s https://salsa.debian.org/go-team/packages/prometheus-nextcloud-exporter.git 146s Please use: 146s git clone https://salsa.debian.org/go-team/packages/prometheus-nextcloud-exporter.git 146s to retrieve the latest (possibly unreleased) updates to the package. 146s Need to get 102 kB of source archives. 146s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (dsc) [2414 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (tar) [93.3 kB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (diff) [6524 B] 146s Fetched 102 kB in 0s (229 kB/s) 146s Download complete and in download only mode 146s + [ -n ] 146s + echo Reading package lists... 146s NOTICE: 'prometheus-nextcloud-exporter' packaging is maintained in the 'Git' version control system at: 146s https://salsa.debian.org/go-team/packages/prometheus-nextcloud-exporter.git 146s Please use: 146s git clone https://salsa.debian.org/go-team/packages/prometheus-nextcloud-exporter.git 146s to retrieve the latest (possibly unreleased) updates to the package. 146s Need to get 102 kB of source archives. 146s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (dsc) [2414 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (tar) [93.3 kB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (diff) [6524 B] 146s Fetched 102 kB in 0s (229 kB/s) 146s Download complete and in download only mode 146s + grep ^Get: 146s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (dsc) [2414 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (tar) [93.3 kB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe prometheus-nextcloud-exporter 0.8.0-1 (diff) [6524 B] 146s + dpkg-source -x prometheus-nextcloud-exporter_0.8.0-1.dsc src 146s gpgv: Signature made Fri Feb 14 03:55:28 2025 UTC 146s gpgv: using RSA key DAA6EFF1C627EA1C26B1A692AA230FC45F8C27B1 146s gpgv: Can't check signature: No public key 146s dpkg-source: warning: cannot verify inline signature for ./prometheus-nextcloud-exporter_0.8.0-1.dsc: no acceptable signature found 146s + chmod -R a+rX . 146s + cd src/. 146s + pwd 146s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [04:33:47]: testing package prometheus-nextcloud-exporter version 0.8.0-1 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9dStwG/build.j3D/src/debian/ /tmp/autopkgtest-work.kdh0qxgr/out/pkg/debian/ 146s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: autodep8 generated control: ----- 147s Test-Command: /usr/bin/dh_golang_autopkgtest 147s Depends: @, @builddeps@, dh-golang, 147s Restrictions: allow-stderr, 147s Features: test-name=dh-golang-autopkgtest 147s 147s 147s ------- 147s autopkgtest: DBG: processing dependency @ 147s autopkgtest: DBG: synthesised dependency prometheus-nextcloud-exporter 147s autopkgtest: DBG: processing dependency @builddeps@ 147s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 147s autopkgtest: DBG: synthesised dependency dh-golang 147s autopkgtest: DBG: synthesised dependency golang-any 147s autopkgtest: DBG: synthesised dependency golang-github-google-go-cmp-dev 147s autopkgtest: DBG: synthesised dependency golang-github-spf13-pflag-dev 147s autopkgtest: DBG: synthesised dependency golang-logrus-dev 147s autopkgtest: DBG: synthesised dependency golang-prometheus-client-dev 147s autopkgtest: DBG: synthesised dependency golang-yaml.v2-dev 147s autopkgtest: DBG: synthesised dependency po-debconf 147s autopkgtest: DBG: synthesised dependency build-essential 147s autopkgtest: DBG: processing dependency dh-golang 147s autopkgtest: DBG: Test defined: name dh-golang-autopkgtest path None command "/usr/bin/dh_golang_autopkgtest" restrictions ['allow-stderr'] features ['test-name=dh-golang-autopkgtest'] depends ['prometheus-nextcloud-exporter', 'debhelper-compat (= 13)', 'dh-golang', 'golang-any', 'golang-github-google-go-cmp-dev', 'golang-github-spf13-pflag-dev', 'golang-logrus-dev', 'golang-prometheus-client-dev', 'golang-yaml.v2-dev', 'po-debconf', 'build-essential', 'dh-golang'] 147s autopkgtest [04:33:48]: build not needed 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.9dStwG/build.j3D/src/ /tmp/autopkgtest-work.kdh0qxgr/out/tests-tree/ 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: autodep8 generated control: ----- 147s Test-Command: /usr/bin/dh_golang_autopkgtest 147s Depends: @, @builddeps@, dh-golang, 147s Restrictions: allow-stderr, 147s Features: test-name=dh-golang-autopkgtest 147s 147s 147s ------- 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency prometheus-nextcloud-exporter 148s autopkgtest: DBG: processing dependency @builddeps@ 148s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 148s autopkgtest: DBG: synthesised dependency dh-golang 148s autopkgtest: DBG: synthesised dependency golang-any 148s autopkgtest: DBG: synthesised dependency golang-github-google-go-cmp-dev 148s autopkgtest: DBG: synthesised dependency golang-github-spf13-pflag-dev 148s autopkgtest: DBG: synthesised dependency golang-logrus-dev 148s autopkgtest: DBG: synthesised dependency golang-prometheus-client-dev 148s autopkgtest: DBG: synthesised dependency golang-yaml.v2-dev 148s autopkgtest: DBG: synthesised dependency po-debconf 148s autopkgtest: DBG: synthesised dependency build-essential 148s autopkgtest: DBG: processing dependency dh-golang 148s autopkgtest: DBG: Test defined: name dh-golang-autopkgtest path None command "/usr/bin/dh_golang_autopkgtest" restrictions ['allow-stderr'] features ['test-name=dh-golang-autopkgtest'] depends ['prometheus-nextcloud-exporter', 'debhelper-compat (= 13)', 'dh-golang', 'golang-any', 'golang-github-google-go-cmp-dev', 'golang-github-spf13-pflag-dev', 'golang-logrus-dev', 'golang-prometheus-client-dev', 'golang-yaml.v2-dev', 'po-debconf', 'build-essential', 'dh-golang'] 148s autopkgtest [04:33:49]: test dh-golang-autopkgtest: preparing testbed 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['prometheus-nextcloud-exporter', 'debhelper-compat (= 13)', 'dh-golang', 'golang-any', 'golang-github-google-go-cmp-dev', 'golang-github-spf13-pflag-dev', 'golang-logrus-dev', 'golang-prometheus-client-dev', 'golang-yaml.v2-dev', 'po-debconf', 'build-essential', 'dh-golang'] 148s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 148s autopkgtest: DBG: install_deps: deps_new=['prometheus-nextcloud-exporter', 'debhelper-compat (= 13)', 'dh-golang', 'golang-any', 'golang-github-google-go-cmp-dev', 'golang-github-spf13-pflag-dev', 'golang-logrus-dev', 'golang-prometheus-client-dev', 'golang-yaml.v2-dev', 'po-debconf', 'build-essential', 'dh-golang'] 148s autopkgtest: DBG: install-deps: satisfying prometheus-nextcloud-exporter, debhelper-compat (= 13), dh-golang, golang-any, golang-github-google-go-cmp-dev, golang-github-spf13-pflag-dev, golang-logrus-dev, golang-prometheus-client-dev, golang-yaml.v2-dev, po-debconf, build-essential, dh-golang 148s autopkgtest: DBG: can use apt-get on testbed: True 148s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'prometheus-nextcloud-exporter, debhelper-compat (= 13), dh-golang, golang-any, golang-github-google-go-cmp-dev, golang-github-spf13-pflag-dev, golang-logrus-dev, golang-prometheus-client-dev, golang-yaml.v2-dev, po-debconf, build-essential, dh-golang'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 148s Reading package lists... 148s Building dependency tree... 148s Reading state information... 148s Starting pkgProblemResolver with broken count: 0 148s Starting 2 pkgProblemResolver with broken count: 0 148s Done 148s The following NEW packages will be installed: 148s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 148s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 148s dh-golang dh-strip-nondeterminism dwz g++ g++-14 g++-14-s390x-linux-gnu 148s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 148s gettext golang-1.24-go golang-1.24-src golang-any 148s golang-github-alecthomas-units-dev golang-github-aws-aws-sdk-go-dev 148s golang-github-beorn7-perks-dev golang-github-cespare-xxhash-dev 148s golang-github-davecgh-go-spew-dev golang-github-go-kit-log-dev 148s golang-github-go-logfmt-logfmt-dev golang-github-google-go-cmp-dev 148s golang-github-jmespath-go-jmespath-dev golang-github-jpillora-backoff-dev 148s golang-github-json-iterator-go-dev 148s golang-github-julienschmidt-httprouter-dev 148s golang-github-klauspost-compress-dev golang-github-kylelemons-godebug-dev 148s golang-github-modern-go-concurrent-dev golang-github-modern-go-reflect2-dev 148s golang-github-munnerz-goautoneg-dev golang-github-mwitkow-go-conntrack-dev 148s golang-github-pmezard-go-difflib-dev 148s golang-github-prometheus-client-golang-dev 148s golang-github-prometheus-client-model-dev 148s golang-github-prometheus-common-dev golang-github-prometheus-procfs-dev 148s golang-github-prometheus-sigv4-dev golang-github-sirupsen-logrus-dev 148s golang-github-spf13-pflag-dev golang-github-stretchr-objx-dev 148s golang-github-stretchr-testify-dev golang-go golang-golang-x-crypto-dev 148s golang-golang-x-net-dev golang-golang-x-oauth2-dev golang-golang-x-sync-dev 148s golang-golang-x-sys-dev golang-golang-x-term-dev golang-golang-x-text-dev 148s golang-google-protobuf-dev golang-gopkg-alecthomas-kingpin.v2-dev 148s golang-gopkg-yaml.v2-dev golang-gopkg-yaml.v3-dev golang-src intltool-debian 148s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl 148s libfile-stripnondeterminism-perl libgcc-14-dev libgomp1 libisl23 libitm1 148s libmpc3 libstdc++-14-dev libtool libubsan1 m4 po-debconf 148s prometheus-nextcloud-exporter 149s 0 upgraded, 85 newly installed, 0 to remove and 0 not upgraded. 149s Need to get 161 MB of archives. 149s After this operation, 785 MB of additional disk space will be used. 149s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-sys-dev all 0.22.0-1 [457 kB] 149s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-sirupsen-logrus-dev all 1.9.0-1 [43.8 kB] 149s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 149s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 149s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 149s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 149s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 149s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 149s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 149s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 150s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 150s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 150s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 150s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 150s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 150s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 150s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 150s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 150s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 150s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 152s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 152s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 152s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 152s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 152s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 153s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 153s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 153s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 153s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 153s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 153s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 153s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 153s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 153s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 153s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 153s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 153s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 153s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 153s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 153s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 153s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 153s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x golang-1.24-src all 1.24.0-1 [21.2 MB] 155s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x golang-1.24-go s390x 1.24.0-1 [27.8 MB] 157s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x golang-src all 2:1.24~2 [5136 B] 157s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x golang-go s390x 2:1.24~2 [44.0 kB] 157s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-any s390x 2:1.24~2 [2842 B] 157s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-logfmt-logfmt-dev all 0.5.0-2 [12.8 kB] 157s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-kit-log-dev all 0.2.1-1 [27.4 kB] 157s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jpillora-backoff-dev all 1.0.0-1.1 [3744 B] 157s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-modern-go-concurrent-dev all 1.0.3-1.1 [4708 B] 157s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-modern-go-reflect2-dev all 1.0.2-2 [11.0 kB] 157s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-json-iterator-go-dev all 1.1.12-2 [63.9 kB] 157s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-munnerz-goautoneg-dev all 0.0~git20191010.a7dc8b6-2 [4348 B] 157s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-beorn7-perks-dev all 1.0.1-1 [12.2 kB] 157s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-cespare-xxhash-dev all 2.3.0-1 [11.1 kB] 157s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-davecgh-go-spew-dev all 1.1.1-3 [31.1 kB] 157s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-klauspost-compress-dev all 1.17.11+ds1-1 [33.5 MB] 159s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-kylelemons-godebug-dev all 1.1.0-2 [14.9 kB] 159s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-google-protobuf-dev all 1.33.0-1 [632 kB] 159s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-client-model-dev all 0.6.0-1 [11.5 kB] 159s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-pmezard-go-difflib-dev all 1.0.0-3 [12.4 kB] 159s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-stretchr-objx-dev all 0.5.2-1 [26.5 kB] 159s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-yaml.v2-dev all 2.4.0-4 [62.6 kB] 159s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jmespath-go-jmespath-dev all 0.4.0-2 [93.9 kB] 159s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-term-dev all 0.22.0-1 [14.6 kB] 159s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-text-dev all 0.16.0-1 [4603 kB] 159s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-crypto-dev all 1:0.25.0-1 [1724 kB] 160s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-net-dev all 1:0.27.0-1 [935 kB] 160s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-aws-aws-sdk-go-dev all 1.49.0-2 [12.3 MB] 161s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-go-cmp-dev all 0.6.0-1 [89.8 kB] 161s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-julienschmidt-httprouter-dev all 1.3.0-2 [19.4 kB] 161s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-yaml.v3-dev all 3.0.1-3 [76.1 kB] 161s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-stretchr-testify-dev all 1.9.0-1 [75.6 kB] 161s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-sigv4-dev all 0.1.2-2 [8524 B] 161s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-oauth2-dev all 0.15.0-1 [38.8 kB] 161s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-alecthomas-units-dev all 0.0~git20240626.61d1e34-1 [9232 B] 161s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-alecthomas-kingpin.v2-dev all 2.2.6-4 [43.6 kB] 161s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-common-dev all 0.62.0-3 [120 kB] 161s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-sync-dev all 0.7.0-1 [19.5 kB] 161s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-procfs-dev all 0.14.0-1 [187 kB] 161s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-client-golang-dev all 1.20.5-1 [183 kB] 161s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-mwitkow-go-conntrack-dev all 0.0~git20190716.2f06839-3 [15.1 kB] 161s Get:83 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x prometheus-nextcloud-exporter s390x 0.8.0-1 [2899 kB] 161s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x dh-golang all 1.62 [25.2 kB] 161s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-spf13-pflag-dev all 1.0.6~git20210604-d5e0c0615ace-1 [43.6 kB] 161s Preconfiguring packages ... 161s Fetched 161 MB in 13s (12.7 MB/s) 161s Selecting previously unselected package golang-golang-x-sys-dev. 162s (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 ... 55928 files and directories currently installed.) 162s Preparing to unpack .../00-golang-golang-x-sys-dev_0.22.0-1_all.deb ... 162s Unpacking golang-golang-x-sys-dev (0.22.0-1) ... 162s Selecting previously unselected package golang-github-sirupsen-logrus-dev. 162s Preparing to unpack .../01-golang-github-sirupsen-logrus-dev_1.9.0-1_all.deb ... 162s Unpacking golang-github-sirupsen-logrus-dev (1.9.0-1) ... 162s Selecting previously unselected package m4. 162s Preparing to unpack .../02-m4_1.4.19-5_s390x.deb ... 162s Unpacking m4 (1.4.19-5) ... 162s Selecting previously unselected package autoconf. 162s Preparing to unpack .../03-autoconf_2.72-3_all.deb ... 162s Unpacking autoconf (2.72-3) ... 162s Selecting previously unselected package autotools-dev. 162s Preparing to unpack .../04-autotools-dev_20220109.1_all.deb ... 162s Unpacking autotools-dev (20220109.1) ... 162s Selecting previously unselected package automake. 162s Preparing to unpack .../05-automake_1%3a1.17-3_all.deb ... 162s Unpacking automake (1:1.17-3) ... 162s Selecting previously unselected package autopoint. 162s Preparing to unpack .../06-autopoint_0.23.1-1_all.deb ... 162s Unpacking autopoint (0.23.1-1) ... 162s Selecting previously unselected package libisl23:s390x. 162s Preparing to unpack .../07-libisl23_0.27-1_s390x.deb ... 162s Unpacking libisl23:s390x (0.27-1) ... 162s Selecting previously unselected package libmpc3:s390x. 162s Preparing to unpack .../08-libmpc3_1.3.1-1build2_s390x.deb ... 162s Unpacking libmpc3:s390x (1.3.1-1build2) ... 162s Selecting previously unselected package cpp-14-s390x-linux-gnu. 162s Preparing to unpack .../09-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package cpp-14. 162s Preparing to unpack .../10-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package cpp-s390x-linux-gnu. 162s Preparing to unpack .../11-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package cpp. 162s Preparing to unpack .../12-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking cpp (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package libcc1-0:s390x. 162s Preparing to unpack .../13-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libgomp1:s390x. 162s Preparing to unpack .../14-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libitm1:s390x. 162s Preparing to unpack .../15-libitm1_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libasan8:s390x. 162s Preparing to unpack .../16-libasan8_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libubsan1:s390x. 162s Preparing to unpack .../17-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libgcc-14-dev:s390x. 162s Preparing to unpack .../18-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package gcc-14-s390x-linux-gnu. 162s Preparing to unpack .../19-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package gcc-14. 162s Preparing to unpack .../20-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package gcc-s390x-linux-gnu. 162s Preparing to unpack .../21-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package gcc. 162s Preparing to unpack .../22-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking gcc (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package libstdc++-14-dev:s390x. 162s Preparing to unpack .../23-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 163s Selecting previously unselected package g++-14-s390x-linux-gnu. 163s Preparing to unpack .../24-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 163s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 163s Selecting previously unselected package g++-14. 163s Preparing to unpack .../25-g++-14_14.2.0-17ubuntu1_s390x.deb ... 163s Unpacking g++-14 (14.2.0-17ubuntu1) ... 163s Selecting previously unselected package g++-s390x-linux-gnu. 163s Preparing to unpack .../26-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 163s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 163s Selecting previously unselected package g++. 163s Preparing to unpack .../27-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 163s Unpacking g++ (4:14.2.0-1ubuntu1) ... 163s Selecting previously unselected package build-essential. 163s Preparing to unpack .../28-build-essential_12.10ubuntu1_s390x.deb ... 163s Unpacking build-essential (12.10ubuntu1) ... 163s Selecting previously unselected package libdebhelper-perl. 163s Preparing to unpack .../29-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 163s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 163s Selecting previously unselected package libtool. 163s Preparing to unpack .../30-libtool_2.5.4-3build1_all.deb ... 163s Unpacking libtool (2.5.4-3build1) ... 163s Selecting previously unselected package dh-autoreconf. 163s Preparing to unpack .../31-dh-autoreconf_20_all.deb ... 163s Unpacking dh-autoreconf (20) ... 163s Selecting previously unselected package libarchive-zip-perl. 163s Preparing to unpack .../32-libarchive-zip-perl_1.68-1_all.deb ... 163s Unpacking libarchive-zip-perl (1.68-1) ... 163s Selecting previously unselected package libfile-stripnondeterminism-perl. 163s Preparing to unpack .../33-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 163s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 163s Selecting previously unselected package dh-strip-nondeterminism. 163s Preparing to unpack .../34-dh-strip-nondeterminism_1.14.1-2_all.deb ... 163s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 163s Selecting previously unselected package debugedit. 163s Preparing to unpack .../35-debugedit_1%3a5.1-2_s390x.deb ... 163s Unpacking debugedit (1:5.1-2) ... 163s Selecting previously unselected package dwz. 163s Preparing to unpack .../36-dwz_0.15-1build6_s390x.deb ... 163s Unpacking dwz (0.15-1build6) ... 163s Selecting previously unselected package gettext. 163s Preparing to unpack .../37-gettext_0.23.1-1_s390x.deb ... 163s Unpacking gettext (0.23.1-1) ... 163s Selecting previously unselected package intltool-debian. 163s Preparing to unpack .../38-intltool-debian_0.35.0+20060710.6_all.deb ... 163s Unpacking intltool-debian (0.35.0+20060710.6) ... 163s Selecting previously unselected package po-debconf. 163s Preparing to unpack .../39-po-debconf_1.0.21+nmu1_all.deb ... 163s Unpacking po-debconf (1.0.21+nmu1) ... 163s Selecting previously unselected package debhelper. 163s Preparing to unpack .../40-debhelper_13.24.1ubuntu2_all.deb ... 163s Unpacking debhelper (13.24.1ubuntu2) ... 163s Selecting previously unselected package golang-1.24-src. 163s Preparing to unpack .../41-golang-1.24-src_1.24.0-1_all.deb ... 163s Unpacking golang-1.24-src (1.24.0-1) ... 164s Selecting previously unselected package golang-1.24-go. 164s Preparing to unpack .../42-golang-1.24-go_1.24.0-1_s390x.deb ... 164s Unpacking golang-1.24-go (1.24.0-1) ... 165s Selecting previously unselected package golang-src. 165s Preparing to unpack .../43-golang-src_2%3a1.24~2_all.deb ... 165s Unpacking golang-src (2:1.24~2) ... 165s Selecting previously unselected package golang-go:s390x. 165s Preparing to unpack .../44-golang-go_2%3a1.24~2_s390x.deb ... 165s Unpacking golang-go:s390x (2:1.24~2) ... 165s Selecting previously unselected package golang-any:s390x. 165s Preparing to unpack .../45-golang-any_2%3a1.24~2_s390x.deb ... 165s Unpacking golang-any:s390x (2:1.24~2) ... 165s Selecting previously unselected package golang-github-go-logfmt-logfmt-dev. 165s Preparing to unpack .../46-golang-github-go-logfmt-logfmt-dev_0.5.0-2_all.deb ... 165s Unpacking golang-github-go-logfmt-logfmt-dev (0.5.0-2) ... 165s Selecting previously unselected package golang-github-go-kit-log-dev. 165s Preparing to unpack .../47-golang-github-go-kit-log-dev_0.2.1-1_all.deb ... 165s Unpacking golang-github-go-kit-log-dev (0.2.1-1) ... 165s Selecting previously unselected package golang-github-jpillora-backoff-dev. 165s Preparing to unpack .../48-golang-github-jpillora-backoff-dev_1.0.0-1.1_all.deb ... 165s Unpacking golang-github-jpillora-backoff-dev (1.0.0-1.1) ... 165s Selecting previously unselected package golang-github-modern-go-concurrent-dev. 165s Preparing to unpack .../49-golang-github-modern-go-concurrent-dev_1.0.3-1.1_all.deb ... 165s Unpacking golang-github-modern-go-concurrent-dev (1.0.3-1.1) ... 165s Selecting previously unselected package golang-github-modern-go-reflect2-dev. 165s Preparing to unpack .../50-golang-github-modern-go-reflect2-dev_1.0.2-2_all.deb ... 165s Unpacking golang-github-modern-go-reflect2-dev (1.0.2-2) ... 165s Selecting previously unselected package golang-github-json-iterator-go-dev. 165s Preparing to unpack .../51-golang-github-json-iterator-go-dev_1.1.12-2_all.deb ... 165s Unpacking golang-github-json-iterator-go-dev (1.1.12-2) ... 165s Selecting previously unselected package golang-github-munnerz-goautoneg-dev. 165s Preparing to unpack .../52-golang-github-munnerz-goautoneg-dev_0.0~git20191010.a7dc8b6-2_all.deb ... 165s Unpacking golang-github-munnerz-goautoneg-dev (0.0~git20191010.a7dc8b6-2) ... 165s Selecting previously unselected package golang-github-beorn7-perks-dev. 165s Preparing to unpack .../53-golang-github-beorn7-perks-dev_1.0.1-1_all.deb ... 165s Unpacking golang-github-beorn7-perks-dev (1.0.1-1) ... 165s Selecting previously unselected package golang-github-cespare-xxhash-dev. 165s Preparing to unpack .../54-golang-github-cespare-xxhash-dev_2.3.0-1_all.deb ... 165s Unpacking golang-github-cespare-xxhash-dev (2.3.0-1) ... 165s Selecting previously unselected package golang-github-davecgh-go-spew-dev. 165s Preparing to unpack .../55-golang-github-davecgh-go-spew-dev_1.1.1-3_all.deb ... 165s Unpacking golang-github-davecgh-go-spew-dev (1.1.1-3) ... 165s Selecting previously unselected package golang-github-klauspost-compress-dev. 165s Preparing to unpack .../56-golang-github-klauspost-compress-dev_1.17.11+ds1-1_all.deb ... 165s Unpacking golang-github-klauspost-compress-dev (1.17.11+ds1-1) ... 165s Selecting previously unselected package golang-github-kylelemons-godebug-dev. 165s Preparing to unpack .../57-golang-github-kylelemons-godebug-dev_1.1.0-2_all.deb ... 165s Unpacking golang-github-kylelemons-godebug-dev (1.1.0-2) ... 165s Selecting previously unselected package golang-google-protobuf-dev. 165s Preparing to unpack .../58-golang-google-protobuf-dev_1.33.0-1_all.deb ... 165s Unpacking golang-google-protobuf-dev (1.33.0-1) ... 165s Selecting previously unselected package golang-github-prometheus-client-model-dev. 165s Preparing to unpack .../59-golang-github-prometheus-client-model-dev_0.6.0-1_all.deb ... 165s Unpacking golang-github-prometheus-client-model-dev (0.6.0-1) ... 165s Selecting previously unselected package golang-github-pmezard-go-difflib-dev. 165s Preparing to unpack .../60-golang-github-pmezard-go-difflib-dev_1.0.0-3_all.deb ... 165s Unpacking golang-github-pmezard-go-difflib-dev (1.0.0-3) ... 165s Selecting previously unselected package golang-github-stretchr-objx-dev. 165s Preparing to unpack .../61-golang-github-stretchr-objx-dev_0.5.2-1_all.deb ... 165s Unpacking golang-github-stretchr-objx-dev (0.5.2-1) ... 165s Selecting previously unselected package golang-gopkg-yaml.v2-dev. 165s Preparing to unpack .../62-golang-gopkg-yaml.v2-dev_2.4.0-4_all.deb ... 165s Unpacking golang-gopkg-yaml.v2-dev (2.4.0-4) ... 165s Selecting previously unselected package golang-github-jmespath-go-jmespath-dev. 165s Preparing to unpack .../63-golang-github-jmespath-go-jmespath-dev_0.4.0-2_all.deb ... 165s Unpacking golang-github-jmespath-go-jmespath-dev (0.4.0-2) ... 166s Selecting previously unselected package golang-golang-x-term-dev. 166s Preparing to unpack .../64-golang-golang-x-term-dev_0.22.0-1_all.deb ... 166s Unpacking golang-golang-x-term-dev (0.22.0-1) ... 166s Selecting previously unselected package golang-golang-x-text-dev. 166s Preparing to unpack .../65-golang-golang-x-text-dev_0.16.0-1_all.deb ... 166s Unpacking golang-golang-x-text-dev (0.16.0-1) ... 166s Selecting previously unselected package golang-golang-x-crypto-dev. 166s Preparing to unpack .../66-golang-golang-x-crypto-dev_1%3a0.25.0-1_all.deb ... 166s Unpacking golang-golang-x-crypto-dev (1:0.25.0-1) ... 166s Selecting previously unselected package golang-golang-x-net-dev. 166s Preparing to unpack .../67-golang-golang-x-net-dev_1%3a0.27.0-1_all.deb ... 166s Unpacking golang-golang-x-net-dev (1:0.27.0-1) ... 166s Selecting previously unselected package golang-github-aws-aws-sdk-go-dev. 166s Preparing to unpack .../68-golang-github-aws-aws-sdk-go-dev_1.49.0-2_all.deb ... 166s Unpacking golang-github-aws-aws-sdk-go-dev (1.49.0-2) ... 167s Selecting previously unselected package golang-github-google-go-cmp-dev. 167s Preparing to unpack .../69-golang-github-google-go-cmp-dev_0.6.0-1_all.deb ... 167s Unpacking golang-github-google-go-cmp-dev (0.6.0-1) ... 167s Selecting previously unselected package golang-github-julienschmidt-httprouter-dev. 167s Preparing to unpack .../70-golang-github-julienschmidt-httprouter-dev_1.3.0-2_all.deb ... 167s Unpacking golang-github-julienschmidt-httprouter-dev (1.3.0-2) ... 167s Selecting previously unselected package golang-gopkg-yaml.v3-dev. 167s Preparing to unpack .../71-golang-gopkg-yaml.v3-dev_3.0.1-3_all.deb ... 167s Unpacking golang-gopkg-yaml.v3-dev (3.0.1-3) ... 167s Selecting previously unselected package golang-github-stretchr-testify-dev. 167s Preparing to unpack .../72-golang-github-stretchr-testify-dev_1.9.0-1_all.deb ... 167s Unpacking golang-github-stretchr-testify-dev (1.9.0-1) ... 167s Selecting previously unselected package golang-github-prometheus-sigv4-dev. 167s Preparing to unpack .../73-golang-github-prometheus-sigv4-dev_0.1.2-2_all.deb ... 167s Unpacking golang-github-prometheus-sigv4-dev (0.1.2-2) ... 167s Selecting previously unselected package golang-golang-x-oauth2-dev. 167s Preparing to unpack .../74-golang-golang-x-oauth2-dev_0.15.0-1_all.deb ... 167s Unpacking golang-golang-x-oauth2-dev (0.15.0-1) ... 167s Selecting previously unselected package golang-github-alecthomas-units-dev. 167s Preparing to unpack .../75-golang-github-alecthomas-units-dev_0.0~git20240626.61d1e34-1_all.deb ... 167s Unpacking golang-github-alecthomas-units-dev (0.0~git20240626.61d1e34-1) ... 167s Selecting previously unselected package golang-gopkg-alecthomas-kingpin.v2-dev. 167s Preparing to unpack .../76-golang-gopkg-alecthomas-kingpin.v2-dev_2.2.6-4_all.deb ... 167s Unpacking golang-gopkg-alecthomas-kingpin.v2-dev (2.2.6-4) ... 167s Selecting previously unselected package golang-github-prometheus-common-dev. 167s Preparing to unpack .../77-golang-github-prometheus-common-dev_0.62.0-3_all.deb ... 167s Unpacking golang-github-prometheus-common-dev (0.62.0-3) ... 167s Selecting previously unselected package golang-golang-x-sync-dev. 167s Preparing to unpack .../78-golang-golang-x-sync-dev_0.7.0-1_all.deb ... 167s Unpacking golang-golang-x-sync-dev (0.7.0-1) ... 167s Selecting previously unselected package golang-github-prometheus-procfs-dev. 167s Preparing to unpack .../79-golang-github-prometheus-procfs-dev_0.14.0-1_all.deb ... 167s Unpacking golang-github-prometheus-procfs-dev (0.14.0-1) ... 167s Selecting previously unselected package golang-github-prometheus-client-golang-dev. 167s Preparing to unpack .../80-golang-github-prometheus-client-golang-dev_1.20.5-1_all.deb ... 167s Unpacking golang-github-prometheus-client-golang-dev (1.20.5-1) ... 167s Selecting previously unselected package golang-github-mwitkow-go-conntrack-dev. 167s Preparing to unpack .../81-golang-github-mwitkow-go-conntrack-dev_0.0~git20190716.2f06839-3_all.deb ... 167s Unpacking golang-github-mwitkow-go-conntrack-dev (0.0~git20190716.2f06839-3) ... 167s Selecting previously unselected package prometheus-nextcloud-exporter. 167s Preparing to unpack .../82-prometheus-nextcloud-exporter_0.8.0-1_s390x.deb ... 167s Unpacking prometheus-nextcloud-exporter (0.8.0-1) ... 167s Selecting previously unselected package dh-golang. 167s Preparing to unpack .../83-dh-golang_1.62_all.deb ... 167s Unpacking dh-golang (1.62) ... 167s Selecting previously unselected package golang-github-spf13-pflag-dev. 167s Preparing to unpack .../84-golang-github-spf13-pflag-dev_1.0.6~git20210604-d5e0c0615ace-1_all.deb ... 167s Unpacking golang-github-spf13-pflag-dev (1.0.6~git20210604-d5e0c0615ace-1) ... 167s Setting up golang-1.24-src (1.24.0-1) ... 167s Setting up golang-github-google-go-cmp-dev (0.6.0-1) ... 167s Setting up golang-gopkg-yaml.v2-dev (2.4.0-4) ... 167s Setting up golang-github-stretchr-objx-dev (0.5.2-1) ... 167s Setting up libarchive-zip-perl (1.68-1) ... 167s Setting up golang-github-kylelemons-godebug-dev (1.1.0-2) ... 167s Setting up golang-gopkg-yaml.v3-dev (3.0.1-3) ... 167s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 167s Setting up golang-golang-x-sys-dev (0.22.0-1) ... 167s Setting up golang-github-pmezard-go-difflib-dev (1.0.0-3) ... 167s Setting up golang-github-modern-go-concurrent-dev (1.0.3-1.1) ... 167s Setting up m4 (1.4.19-5) ... 167s Setting up golang-golang-x-term-dev (0.22.0-1) ... 167s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 167s Setting up golang-github-beorn7-perks-dev (1.0.1-1) ... 167s Setting up golang-github-cespare-xxhash-dev (2.3.0-1) ... 167s Setting up golang-github-spf13-pflag-dev (1.0.6~git20210604-d5e0c0615ace-1) ... 167s Setting up golang-github-jpillora-backoff-dev (1.0.0-1.1) ... 167s Setting up golang-github-davecgh-go-spew-dev (1.1.1-3) ... 167s Setting up autotools-dev (20220109.1) ... 167s Setting up golang-github-go-logfmt-logfmt-dev (0.5.0-2) ... 167s Setting up golang-google-protobuf-dev (1.33.0-1) ... 167s Setting up golang-github-stretchr-testify-dev (1.9.0-1) ... 167s Setting up libmpc3:s390x (1.3.1-1build2) ... 167s Setting up golang-golang-x-sync-dev (0.7.0-1) ... 167s Setting up autopoint (0.23.1-1) ... 167s Setting up golang-1.24-go (1.24.0-1) ... 167s Setting up golang-github-klauspost-compress-dev (1.17.11+ds1-1) ... 167s Setting up golang-github-julienschmidt-httprouter-dev (1.3.0-2) ... 167s Setting up autoconf (2.72-3) ... 167s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 167s Setting up dwz (0.15-1build6) ... 167s Setting up golang-github-munnerz-goautoneg-dev (0.0~git20191010.a7dc8b6-2) ... 167s Setting up golang-golang-x-text-dev (0.16.0-1) ... 167s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 167s Setting up prometheus-nextcloud-exporter (0.8.0-1) ... 167s chown: invalid group: ‘root:prometheus’ 167s dpkg: error processing package prometheus-nextcloud-exporter (--configure): 167s installed prometheus-nextcloud-exporter package post-installation script subprocess returned error exit status 1 167s Setting up golang-github-prometheus-procfs-dev (0.14.0-1) ... 167s Setting up debugedit (1:5.1-2) ... 167s Setting up golang-github-alecthomas-units-dev (0.0~git20240626.61d1e34-1) ... 167s Setting up golang-github-modern-go-reflect2-dev (1.0.2-2) ... 167s Setting up golang-golang-x-crypto-dev (1:0.25.0-1) ... 167s Setting up golang-github-prometheus-client-model-dev (0.6.0-1) ... 167s Setting up golang-golang-x-oauth2-dev (0.15.0-1) ... 167s Setting up libisl23:s390x (0.27-1) ... 167s Setting up golang-src (2:1.24~2) ... 167s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 167s Setting up golang-github-jmespath-go-jmespath-dev (0.4.0-2) ... 167s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 167s Setting up automake (1:1.17-3) ... 167s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 167s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 167s Setting up golang-github-sirupsen-logrus-dev (1.9.0-1) ... 167s Setting up golang-github-go-kit-log-dev (0.2.1-1) ... 167s Setting up gettext (0.23.1-1) ... 167s Setting up golang-gopkg-alecthomas-kingpin.v2-dev (2.2.6-4) ... 167s Setting up golang-go:s390x (2:1.24~2) ... 167s Setting up golang-github-json-iterator-go-dev (1.1.12-2) ... 167s Setting up golang-any:s390x (2:1.24~2) ... 167s Setting up intltool-debian (0.35.0+20060710.6) ... 167s Setting up golang-golang-x-net-dev (1:0.27.0-1) ... 167s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Setting up cpp-14 (14.2.0-17ubuntu1) ... 167s Setting up dh-strip-nondeterminism (1.14.1-2) ... 167s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 167s Setting up golang-github-aws-aws-sdk-go-dev (1.49.0-2) ... 167s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 167s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Setting up po-debconf (1.0.21+nmu1) ... 167s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Setting up cpp (4:14.2.0-1ubuntu1) ... 167s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Setting up gcc-14 (14.2.0-17ubuntu1) ... 167s Setting up g++-14 (14.2.0-17ubuntu1) ... 167s Setting up libtool (2.5.4-3build1) ... 167s Setting up gcc (4:14.2.0-1ubuntu1) ... 167s Setting up dh-autoreconf (20) ... 167s Setting up g++ (4:14.2.0-1ubuntu1) ... 167s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 167s Setting up build-essential (12.10ubuntu1) ... 167s Setting up debhelper (13.24.1ubuntu2) ... 167s Setting up dh-golang (1.62) ... 167s Setting up golang-github-prometheus-common-dev (0.62.0-3) ... 167s Setting up golang-github-prometheus-sigv4-dev (0.1.2-2) ... 167s Setting up golang-github-prometheus-client-golang-dev (1.20.5-1) ... 167s Setting up golang-github-mwitkow-go-conntrack-dev (0.0~git20190716.2f06839-3) ... 167s Processing triggers for man-db (2.13.0-1) ... 168s Processing triggers for install-info (7.1.1-1) ... 168s Processing triggers for libc-bin (2.40-4ubuntu1) ... 168s Errors were encountered while processing: 168s prometheus-nextcloud-exporter 168s E: Sub-process /usr/bin/dpkg returned an error code (1) 168s E: Failed to process build dependencies 168s autopkgtest: DBG: testbed command exited with code 100 168s autopkgtest: DBG: apt-get satisfy failed; status-fd: 168s dlstatus:1:0.0000:Retrieving file 1 of 85 168s dlstatus:1:0.0000:Retrieving file 1 of 85 168s dlstatus:1:0.0000:Retrieving file 1 of 85 168s dlstatus:1:0.0000:Retrieving file 1 of 85 168s dlstatus:1:0.0000:Retrieving file 1 of 85 168s dlstatus:1:0.0026:Retrieving file 1 of 85 168s dlstatus:2:0.4626:Retrieving file 2 of 85 168s dlstatus:2:0.4626:Retrieving file 2 of 85 168s dlstatus:2:0.4707:Retrieving file 2 of 85 168s dlstatus:3:0.7197:Retrieving file 3 of 85 168s dlstatus:3:0.7223:Retrieving file 3 of 85 168s dlstatus:4:1.0839:Retrieving file 4 of 85 168s dlstatus:4:1.0858:Retrieving file 4 of 85 168s dlstatus:5:1.5089:Retrieving file 5 of 85 168s dlstatus:5:1.5177:Retrieving file 5 of 85 168s dlstatus:6:1.7665:Retrieving file 6 of 85 168s dlstatus:6:1.7768:Retrieving file 6 of 85 168s dlstatus:7:2.2859:Retrieving file 7 of 85 168s dlstatus:7:2.2927:Retrieving file 7 of 85 168s dlstatus:8:2.8289:Retrieving file 8 of 85 168s dlstatus:8:2.8305:Retrieving file 8 of 85 168s dlstatus:9:3.4143:Retrieving file 9 of 85 168s dlstatus:9:3.4325:Retrieving file 9 of 85 168s dlstatus:10:3.6783:Retrieving file 10 of 85 168s dlstatus:10:3.6783:Retrieving file 10 of 85 168s dlstatus:10:3.6783:Retrieving file 10 of 85 168s dlstatus:10:7.0428:Retrieving file 10 of 85 168s dlstatus:11:8.6717:Retrieving file 11 of 85 168s dlstatus:12:8.9075:Retrieving file 12 of 85 168s dlstatus:13:9.1455:Retrieving file 13 of 85 168s dlstatus:13:9.1567:Retrieving file 13 of 85 168s dlstatus:14:9.3920:Retrieving file 14 of 85 168s dlstatus:14:9.4164:Retrieving file 14 of 85 168s dlstatus:15:9.6517:Retrieving file 15 of 85 168s dlstatus:15:9.6517:Retrieving file 15 of 85 168s dlstatus:15:9.6634:Retrieving file 15 of 85 168s dlstatus:16:9.9623:Retrieving file 16 of 85 168s dlstatus:16:9.9628:Retrieving file 16 of 85 168s dlstatus:17:10.2131:Retrieving file 17 of 85 168s dlstatus:17:10.2233:Retrieving file 17 of 85 168s dlstatus:18:11.9249:Retrieving file 18 of 85 168s dlstatus:18:11.9421:Retrieving file 18 of 85 168s dlstatus:19:12.7631:Retrieving file 19 of 85 168s dlstatus:19:12.7872:Retrieving file 19 of 85 168s dlstatus:20:13.5138:Retrieving file 20 of 85 168s dlstatus:20:13.5347:Retrieving file 20 of 85 168s dlstatus:20:17.0677:Retrieving file 20 of 85 168s dlstatus:20:19.8273:Retrieving file 20 of 85 168s dlstatus:20:22.5283:Retrieving file 20 of 85 168s dlstatus:21:23.0555:Retrieving file 21 of 85 168s dlstatus:21:23.0749:Retrieving file 21 of 85 168s dlstatus:22:23.5521:Retrieving file 22 of 85 168s dlstatus:23:23.7880:Retrieving file 23 of 85 168s dlstatus:24:24.0258:Retrieving file 24 of 85 168s dlstatus:24:24.0387:Retrieving file 24 of 85 168s dlstatus:25:25.5591:Retrieving file 25 of 85 168s dlstatus:25:25.5635:Retrieving file 25 of 85 168s dlstatus:25:28.9988:Retrieving file 25 of 85 168s dlstatus:26:31.2777:Retrieving file 26 of 85 168s dlstatus:27:31.5239:Retrieving file 27 of 85 168s dlstatus:27:31.5244:Retrieving file 27 of 85 168s dlstatus:28:31.7596:Retrieving file 28 of 85 168s dlstatus:29:31.9955:Retrieving file 29 of 85 168s dlstatus:29:31.9955:Retrieving file 29 of 85 168s dlstatus:30:32.2332:Retrieving file 30 of 85 168s dlstatus:30:32.2382:Retrieving file 30 of 85 168s dlstatus:31:32.5160:Retrieving file 31 of 85 168s dlstatus:31:32.5287:Retrieving file 31 of 85 168s dlstatus:32:32.8349:Retrieving file 32 of 85 168s dlstatus:32:32.8349:Retrieving file 32 of 85 168s dlstatus:33:33.0783:Retrieving file 33 of 85 168s dlstatus:33:33.0865:Retrieving file 33 of 85 168s dlstatus:34:33.3584:Retrieving file 34 of 85 168s dlstatus:34:33.3627:Retrieving file 34 of 85 168s dlstatus:35:33.6038:Retrieving file 35 of 85 168s dlstatus:35:33.6038:Retrieving file 35 of 85 168s dlstatus:35:33.6063:Retrieving file 35 of 85 168s dlstatus:36:33.8416:Retrieving file 36 of 85 168s dlstatus:36:33.8572:Retrieving file 36 of 85 168s dlstatus:37:34.1018:Retrieving file 37 of 85 168s dlstatus:37:34.1018:Retrieving file 37 of 85 168s dlstatus:37:34.1076:Retrieving file 37 of 85 168s dlstatus:38:34.3978:Retrieving file 38 of 85 168s dlstatus:38:34.3997:Retrieving file 38 of 85 168s dlstatus:39:35.1626:Retrieving file 39 of 85 168s dlstatus:39:35.1742:Retrieving file 39 of 85 168s dlstatus:40:35.4095:Retrieving file 40 of 85 168s dlstatus:40:35.4137:Retrieving file 40 of 85 168s dlstatus:41:35.7606:Retrieving file 41 of 85 168s dlstatus:41:35.7609:Retrieving file 41 of 85 168s dlstatus:42:36.4410:Retrieving file 42 of 85 168s dlstatus:42:36.4463:Retrieving file 42 of 85 168s dlstatus:42:40.3324:Retrieving file 42 of 85 168s dlstatus:42:44.3940:Retrieving file 42 of 85 (7s remaining) 168s dlstatus:43:47.2187:Retrieving file 43 of 85 (7s remaining) 168s dlstatus:43:47.2304:Retrieving file 43 of 85 (7s remaining) 168s dlstatus:43:50.9054:Retrieving file 43 of 85 (6s remaining) 168s dlstatus:43:54.5395:Retrieving file 43 of 85 (6s remaining) 168s dlstatus:43:57.8128:Retrieving file 43 of 85 (5s remaining) 168s dlstatus:44:61.2687:Retrieving file 44 of 85 (5s remaining) 168s dlstatus:44:61.2712:Retrieving file 44 of 85 (5s remaining) 168s dlstatus:45:61.5065:Retrieving file 45 of 85 (5s remaining) 168s dlstatus:45:61.5208:Retrieving file 45 of 85 (5s remaining) 168s dlstatus:46:61.7637:Retrieving file 46 of 85 (5s remaining) 168s dlstatus:46:61.7637:Retrieving file 46 of 85 (5s remaining) 168s dlstatus:47:62.0004:Retrieving file 47 of 85 (5s remaining) 168s dlstatus:47:62.0032:Retrieving file 47 of 85 (5s remaining) 168s dlstatus:48:62.2420:Retrieving file 48 of 85 (5s remaining) 168s dlstatus:48:62.2557:Retrieving file 48 of 85 (5s remaining) 168s dlstatus:49:62.4910:Retrieving file 49 of 85 (5s remaining) 168s dlstatus:50:62.7281:Retrieving file 50 of 85 (5s remaining) 168s dlstatus:50:62.7305:Retrieving file 50 of 85 (5s remaining) 168s dlstatus:51:62.9658:Retrieving file 51 of 85 (5s remaining) 168s dlstatus:51:62.9712:Retrieving file 51 of 85 (5s remaining) 168s dlstatus:52:63.2065:Retrieving file 52 of 85 (5s remaining) 168s dlstatus:52:63.2116:Retrieving file 52 of 85 (5s remaining) 168s dlstatus:53:63.4736:Retrieving file 53 of 85 (5s remaining) 168s dlstatus:53:63.4736:Retrieving file 53 of 85 (5s remaining) 168s dlstatus:53:63.4757:Retrieving file 53 of 85 (5s remaining) 168s dlstatus:54:63.7110:Retrieving file 54 of 85 (5s remaining) 168s dlstatus:54:63.7136:Retrieving file 54 of 85 (5s remaining) 168s dlstatus:55:63.9524:Retrieving file 55 of 85 (5s remaining) 168s dlstatus:55:63.9524:Retrieving file 55 of 85 (5s remaining) 168s dlstatus:55:63.9543:Retrieving file 55 of 85 (5s remaining) 168s dlstatus:56:64.1932:Retrieving file 56 of 85 (5s remaining) 168s dlstatus:56:64.1936:Retrieving file 56 of 85 (5s remaining) 168s dlstatus:57:64.4440:Retrieving file 57 of 85 (5s remaining) 168s dlstatus:57:64.4465:Retrieving file 57 of 85 (5s remaining) 168s dlstatus:57:68.1769:Retrieving file 57 of 85 (4s remaining) 168s dlstatus:57:72.0295:Retrieving file 57 of 85 (3s remaining) 168s dlstatus:57:76.0747:Retrieving file 57 of 85 (3s remaining) 168s dlstatus:57:80.4103:Retrieving file 57 of 85 (2s remaining) 168s dlstatus:58:81.3259:Retrieving file 58 of 85 (2s remaining) 168s dlstatus:59:81.5686:Retrieving file 59 of 85 (2s remaining) 168s dlstatus:59:81.6010:Retrieving file 59 of 85 (2s remaining) 168s dlstatus:60:82.1180:Retrieving file 60 of 85 (2s remaining) 168s dlstatus:61:82.3652:Retrieving file 61 of 85 (2s remaining) 168s dlstatus:62:82.6094:Retrieving file 62 of 85 (2s remaining) 168s dlstatus:62:82.6094:Retrieving file 62 of 85 (2s remaining) 168s dlstatus:63:82.8489:Retrieving file 63 of 85 (2s remaining) 168s dlstatus:63:82.8542:Retrieving file 63 of 85 (2s remaining) 168s dlstatus:64:83.1153:Retrieving file 64 of 85 (2s remaining) 168s dlstatus:64:83.1153:Retrieving file 64 of 85 (2s remaining) 168s dlstatus:64:83.1283:Retrieving file 64 of 85 (2s remaining) 168s dlstatus:65:83.3973:Retrieving file 65 of 85 (2s remaining) 168s dlstatus:65:83.4046:Retrieving file 65 of 85 (2s remaining) 168s dlstatus:66:83.6399:Retrieving file 66 of 85 (2s remaining) 168s dlstatus:66:83.6423:Retrieving file 66 of 85 (2s remaining) 168s dlstatus:67:86.1636:Retrieving file 67 of 85 (1s remaining) 168s dlstatus:67:86.1932:Retrieving file 67 of 85 (1s remaining) 168s dlstatus:68:87.2558:Retrieving file 68 of 85 (1s remaining) 168s dlstatus:68:87.2658:Retrieving file 68 of 85 (1s remaining) 168s dlstatus:69:87.9562:Retrieving file 69 of 85 (1s remaining) 168s dlstatus:69:87.9668:Retrieving file 69 of 85 (1s remaining) 168s dlstatus:69:91.6104:Retrieving file 69 of 85 168s dlstatus:70:94.3195:Retrieving file 70 of 85 168s dlstatus:70:94.3419:Retrieving file 70 of 85 168s dlstatus:71:94.5994:Retrieving file 71 of 85 168s dlstatus:71:94.6034:Retrieving file 71 of 85 168s dlstatus:72:94.8444:Retrieving file 72 of 85 168s dlstatus:72:94.8495:Retrieving file 72 of 85 168s dlstatus:73:95.1175:Retrieving file 73 of 85 168s dlstatus:73:95.1182:Retrieving file 73 of 85 168s dlstatus:74:95.3904:Retrieving file 74 of 85 168s dlstatus:74:95.3946:Retrieving file 74 of 85 168s dlstatus:75:95.6299:Retrieving file 75 of 85 168s dlstatus:75:95.6492:Retrieving file 75 of 85 168s dlstatus:76:95.8845:Retrieving file 76 of 85 168s dlstatus:76:95.8879:Retrieving file 76 of 85 168s dlstatus:77:96.1244:Retrieving file 77 of 85 168s dlstatus:77:96.1299:Retrieving file 77 of 85 168s dlstatus:78:96.3814:Retrieving file 78 of 85 168s dlstatus:78:96.3903:Retrieving file 78 of 85 168s dlstatus:79:96.6764:Retrieving file 79 of 85 168s dlstatus:79:96.6860:Retrieving file 79 of 85 168s dlstatus:80:96.9213:Retrieving file 80 of 85 168s dlstatus:80:96.9213:Retrieving file 80 of 85 168s dlstatus:80:96.9368:Retrieving file 80 of 85 168s dlstatus:81:97.2498:Retrieving file 81 of 85 168s dlstatus:81:97.2636:Retrieving file 81 of 85 168s dlstatus:82:97.5760:Retrieving file 82 of 85 168s dlstatus:82:97.5835:Retrieving file 82 of 85 168s dlstatus:83:97.8188:Retrieving file 83 of 85 168s dlstatus:83:97.8303:Retrieving file 83 of 85 168s dlstatus:84:99.4952:Retrieving file 84 of 85 168s dlstatus:84:99.5077:Retrieving file 84 of 85 168s dlstatus:85:99.7467:Retrieving file 85 of 85 168s dlstatus:85:100.0000:Retrieving file 85 of 85 168s pmstatus:dpkg-exec:0.0000:Running dpkg 168s pmstatus:golang-golang-x-sys-dev:0.0000:Preparing golang-golang-x-sys-dev (s390x) 168s pmstatus:golang-golang-x-sys-dev:0.2933:Unpacking golang-golang-x-sys-dev (s390x) 168s pmstatus:golang-golang-x-sys-dev:0.5865:Installing golang-golang-x-sys-dev (s390x) 168s pmstatus:golang-github-sirupsen-logrus-dev:0.5865:Preparing golang-github-sirupsen-logrus-dev (s390x) 168s pmstatus:golang-github-sirupsen-logrus-dev:0.8798:Unpacking golang-github-sirupsen-logrus-dev (s390x) 168s pmstatus:golang-github-sirupsen-logrus-dev:1.1730:Installing golang-github-sirupsen-logrus-dev (s390x) 168s pmstatus:m4:1.1730:Preparing m4 (s390x) 168s pmstatus:m4:1.4663:Unpacking m4 (s390x) 168s pmstatus:m4:1.7595:Installing m4 (s390x) 168s pmstatus:autoconf:1.7595:Preparing autoconf (s390x) 168s pmstatus:autoconf:2.0528:Unpacking autoconf (s390x) 168s pmstatus:autoconf:2.3460:Installing autoconf (s390x) 168s pmstatus:autotools-dev:2.3460:Preparing autotools-dev (s390x) 168s pmstatus:autotools-dev:2.6393:Unpacking autotools-dev (s390x) 168s pmstatus:autotools-dev:2.9326:Installing autotools-dev (s390x) 168s pmstatus:automake:2.9326:Preparing automake (s390x) 168s pmstatus:automake:3.2258:Unpacking automake (s390x) 168s pmstatus:automake:3.5191:Installing automake (s390x) 168s pmstatus:autopoint:3.5191:Preparing autopoint (s390x) 168s pmstatus:autopoint:3.8123:Unpacking autopoint (s390x) 168s pmstatus:autopoint:4.1056:Installing autopoint (s390x) 168s pmstatus:libisl23:4.1056:Preparing libisl23 (s390x) 168s pmstatus:libisl23:4.3988:Unpacking libisl23 (s390x) 168s pmstatus:libisl23:4.6921:Installing libisl23 (s390x) 168s pmstatus:libmpc3:4.6921:Preparing libmpc3 (s390x) 168s pmstatus:libmpc3:4.9853:Unpacking libmpc3 (s390x) 168s pmstatus:libmpc3:5.2786:Installing libmpc3 (s390x) 168s pmstatus:cpp-14-s390x-linux-gnu:5.2786:Preparing cpp-14-s390x-linux-gnu (s390x) 168s pmstatus:cpp-14-s390x-linux-gnu:5.5718:Unpacking cpp-14-s390x-linux-gnu (s390x) 168s pmstatus:cpp-14-s390x-linux-gnu:5.8651:Installing cpp-14-s390x-linux-gnu (s390x) 168s pmstatus:cpp-14:5.8651:Preparing cpp-14 (s390x) 168s pmstatus:cpp-14:6.1584:Unpacking cpp-14 (s390x) 168s pmstatus:cpp-14:6.4516:Installing cpp-14 (s390x) 168s pmstatus:cpp-s390x-linux-gnu:6.4516:Preparing cpp-s390x-linux-gnu (s390x) 168s pmstatus:cpp-s390x-linux-gnu:6.7449:Unpacking cpp-s390x-linux-gnu (s390x) 168s pmstatus:cpp-s390x-linux-gnu:7.0381:Installing cpp-s390x-linux-gnu (s390x) 168s pmstatus:cpp:7.0381:Preparing cpp (s390x) 168s pmstatus:cpp:7.3314:Unpacking cpp (s390x) 168s pmstatus:cpp:7.6246:Installing cpp (s390x) 168s pmstatus:libcc1-0:7.6246:Preparing libcc1-0 (s390x) 168s pmstatus:libcc1-0:7.9179:Unpacking libcc1-0 (s390x) 168s pmstatus:libcc1-0:8.2111:Installing libcc1-0 (s390x) 168s pmstatus:libgomp1:8.2111:Preparing libgomp1 (s390x) 168s pmstatus:libgomp1:8.5044:Unpacking libgomp1 (s390x) 168s pmstatus:libgomp1:8.7977:Installing libgomp1 (s390x) 168s pmstatus:libitm1:8.7977:Preparing libitm1 (s390x) 168s pmstatus:libitm1:9.0909:Unpacking libitm1 (s390x) 168s pmstatus:libitm1:9.3842:Installing libitm1 (s390x) 168s pmstatus:libasan8:9.3842:Preparing libasan8 (s390x) 168s pmstatus:libasan8:9.6774:Unpacking libasan8 (s390x) 168s pmstatus:libasan8:9.9707:Installing libasan8 (s390x) 168s pmstatus:libubsan1:9.9707:Preparing libubsan1 (s390x) 168s pmstatus:libubsan1:10.2639:Unpacking libubsan1 (s390x) 168s pmstatus:libubsan1:10.5572:Installing libubsan1 (s390x) 168s pmstatus:libgcc-14-dev:10.5572:Preparing libgcc-14-dev (s390x) 168s pmstatus:libgcc-14-dev:10.8504:Unpacking libgcc-14-dev (s390x) 168s pmstatus:libgcc-14-dev:11.1437:Installing libgcc-14-dev (s390x) 168s pmstatus:gcc-14-s390x-linux-gnu:11.1437:Preparing gcc-14-s390x-linux-gnu (s390x) 168s pmstatus:gcc-14-s390x-linux-gnu:11.4370:Unpacking gcc-14-s390x-linux-gnu (s390x) 168s pmstatus:gcc-14-s390x-linux-gnu:11.7302:Installing gcc-14-s390x-linux-gnu (s390x) 168s pmstatus:gcc-14:11.7302:Preparing gcc-14 (s390x) 168s pmstatus:gcc-14:12.0235:Unpacking gcc-14 (s390x) 168s pmstatus:gcc-14:12.3167:Installing gcc-14 (s390x) 168s pmstatus:gcc-s390x-linux-gnu:12.3167:Preparing gcc-s390x-linux-gnu (s390x) 168s pmstatus:gcc-s390x-linux-gnu:12.6100:Unpacking gcc-s390x-linux-gnu (s390x) 168s pmstatus:gcc-s390x-linux-gnu:12.9032:Installing gcc-s390x-linux-gnu (s390x) 168s pmstatus:gcc:12.9032:Preparing gcc (s390x) 168s pmstatus:gcc:13.1965:Unpacking gcc (s390x) 168s pmstatus:gcc:13.4897:Installing gcc (s390x) 168s pmstatus:libstdc++-14-dev:13.4897:Preparing libstdc++-14-dev (s390x) 168s pmstatus:libstdc++-14-dev:13.7830:Unpacking libstdc++-14-dev (s390x) 168s pmstatus:libstdc++-14-dev:14.0762:Installing libstdc++-14-dev (s390x) 168s pmstatus:g++-14-s390x-linux-gnu:14.0762:Preparing g++-14-s390x-linux-gnu (s390x) 168s pmstatus:g++-14-s390x-linux-gnu:14.3695:Unpacking g++-14-s390x-linux-gnu (s390x) 168s pmstatus:g++-14-s390x-linux-gnu:14.6628:Installing g++-14-s390x-linux-gnu (s390x) 168s pmstatus:g++-14:14.6628:Preparing g++-14 (s390x) 168s pmstatus:g++-14:14.9560:Unpacking g++-14 (s390x) 168s pmstatus:g++-14:15.2493:Installing g++-14 (s390x) 168s pmstatus:g++-s390x-linux-gnu:15.2493:Preparing g++-s390x-linux-gnu (s390x) 168s pmstatus:g++-s390x-linux-gnu:15.5425:Unpacking g++-s390x-linux-gnu (s390x) 168s pmstatus:g++-s390x-linux-gnu:15.8358:Installing g++-s390x-linux-gnu (s390x) 168s pmstatus:g++:15.8358:Preparing g++ (s390x) 168s pmstatus:g++:16.1290:Unpacking g++ (s390x) 168s pmstatus:g++:16.4223:Installing g++ (s390x) 168s pmstatus:build-essential:16.4223:Preparing build-essential (s390x) 168s pmstatus:build-essential:16.7155:Unpacking build-essential (s390x) 168s pmstatus:build-essential:17.0088:Installing build-essential (s390x) 168s pmstatus:libdebhelper-perl:17.0088:Preparing libdebhelper-perl (s390x) 168s pmstatus:libdebhelper-perl:17.3021:Unpacking libdebhelper-perl (s390x) 168s pmstatus:libdebhelper-perl:17.5953:Installing libdebhelper-perl (s390x) 168s pmstatus:libtool:17.5953:Preparing libtool (s390x) 168s pmstatus:libtool:17.8886:Unpacking libtool (s390x) 168s pmstatus:libtool:18.1818:Installing libtool (s390x) 168s pmstatus:dh-autoreconf:18.1818:Preparing dh-autoreconf (s390x) 168s pmstatus:dh-autoreconf:18.4751:Unpacking dh-autoreconf (s390x) 168s pmstatus:dh-autoreconf:18.7683:Installing dh-autoreconf (s390x) 168s pmstatus:libarchive-zip-perl:18.7683:Preparing libarchive-zip-perl (s390x) 168s pmstatus:libarchive-zip-perl:19.0616:Unpacking libarchive-zip-perl (s390x) 168s pmstatus:libarchive-zip-perl:19.3548:Installing libarchive-zip-perl (s390x) 168s pmstatus:libfile-stripnondeterminism-perl:19.3548:Preparing libfile-stripnondeterminism-perl (s390x) 168s pmstatus:libfile-stripnondeterminism-perl:19.6481:Unpacking libfile-stripnondeterminism-perl (s390x) 168s pmstatus:libfile-stripnondeterminism-perl:19.9413:Installing libfile-stripnondeterminism-perl (s390x) 168s pmstatus:dh-strip-nondeterminism:19.9413:Preparing dh-strip-nondeterminism (s390x) 168s pmstatus:dh-strip-nondeterminism:20.2346:Unpacking dh-strip-nondeterminism (s390x) 168s pmstatus:dh-strip-nondeterminism:20.5279:Installing dh-strip-nondeterminism (s390x) 168s pmstatus:debugedit:20.5279:Preparing debugedit (s390x) 168s pmstatus:debugedit:20.8211:Unpacking debugedit (s390x) 168s pmstatus:debugedit:21.1144:Installing debugedit (s390x) 168s pmstatus:dwz:21.1144:Preparing dwz (s390x) 168s pmstatus:dwz:21.4076:Unpacking dwz (s390x) 168s pmstatus:dwz:21.7009:Installing dwz (s390x) 168s pmstatus:gettext:21.7009:Preparing gettext (s390x) 168s pmstatus:gettext:21.9941:Unpacking gettext (s390x) 168s pmstatus:gettext:22.2874:Installing gettext (s390x) 168s pmstatus:intltool-debian:22.2874:Preparing intltool-debian (s390x) 168s pmstatus:intltool-debian:22.5806:Unpacking intltool-debian (s390x) 168s pmstatus:intltool-debian:22.8739:Installing intltool-debian (s390x) 168s pmstatus:po-debconf:22.8739:Preparing po-debconf (s390x) 168s pmstatus:po-debconf:23.1672:Unpacking po-debconf (s390x) 168s pmstatus:po-debconf:23.4604:Installing po-debconf (s390x) 168s pmstatus:debhelper:23.4604:Preparing debhelper (s390x) 168s pmstatus:debhelper:23.7537:Unpacking debhelper (s390x) 168s pmstatus:debhelper:24.0469:Installing debhelper (s390x) 168s pmstatus:golang-1.24-src:24.0469:Preparing golang-1.24-src (s390x) 168s pmstatus:golang-1.24-src:24.3402:Unpacking golang-1.24-src (s390x) 168s pmstatus:golang-1.24-src:24.6334:Installing golang-1.24-src (s390x) 168s pmstatus:golang-1.24-go:24.6334:Preparing golang-1.24-go (s390x) 168s pmstatus:golang-1.24-go:24.9267:Unpacking golang-1.24-go (s390x) 168s pmstatus:golang-1.24-go:25.2199:Installing golang-1.24-go (s390x) 168s pmstatus:golang-src:25.2199:Preparing golang-src (s390x) 168s pmstatus:golang-src:25.5132:Unpacking golang-src (s390x) 168s pmstatus:golang-src:25.8064:Installing golang-src (s390x) 168s pmstatus:golang-go:25.8064:Preparing golang-go (s390x) 168s pmstatus:golang-go:26.0997:Unpacking golang-go (s390x) 168s pmstatus:golang-go:26.3930:Installing golang-go (s390x) 168s pmstatus:golang-any:26.3930:Preparing golang-any (s390x) 168s pmstatus:golang-any:26.6862:Unpacking golang-any (s390x) 168s pmstatus:golang-any:26.9795:Installing golang-any (s390x) 168s pmstatus:golang-github-go-logfmt-logfmt-dev:26.9795:Preparing golang-github-go-logfmt-logfmt-dev (s390x) 168s pmstatus:golang-github-go-logfmt-logfmt-dev:27.2727:Unpacking golang-github-go-logfmt-logfmt-dev (s390x) 168s pmstatus:golang-github-go-logfmt-logfmt-dev:27.5660:Installing golang-github-go-logfmt-logfmt-dev (s390x) 168s pmstatus:golang-github-go-kit-log-dev:27.5660:Preparing golang-github-go-kit-log-dev (s390x) 168s pmstatus:golang-github-go-kit-log-dev:27.8592:Unpacking golang-github-go-kit-log-dev (s390x) 168s pmstatus:golang-github-go-kit-log-dev:28.1525:Installing golang-github-go-kit-log-dev (s390x) 168s pmstatus:golang-github-jpillora-backoff-dev:28.1525:Preparing golang-github-jpillora-backoff-dev (s390x) 168s pmstatus:golang-github-jpillora-backoff-dev:28.4457:Unpacking golang-github-jpillora-backoff-dev (s390x) 168s pmstatus:golang-github-jpillora-backoff-dev:28.7390:Installing golang-github-jpillora-backoff-dev (s390x) 168s pmstatus:golang-github-modern-go-concurrent-dev:28.7390:Preparing golang-github-modern-go-concurrent-dev (s390x) 168s pmstatus:golang-github-modern-go-concurrent-dev:29.0323:Unpacking golang-github-modern-go-concurrent-dev (s390x) 168s pmstatus:golang-github-modern-go-concurrent-dev:29.3255:Installing golang-github-modern-go-concurrent-dev (s390x) 168s pmstatus:golang-github-modern-go-reflect2-dev:29.3255:Preparing golang-github-modern-go-reflect2-dev (s390x) 168s pmstatus:golang-github-modern-go-reflect2-dev:29.6188:Unpacking golang-github-modern-go-reflect2-dev (s390x) 168s pmstatus:golang-github-modern-go-reflect2-dev:29.9120:Installing golang-github-modern-go-reflect2-dev (s390x) 168s pmstatus:golang-github-json-iterator-go-dev:29.9120:Preparing golang-github-json-iterator-go-dev (s390x) 168s pmstatus:golang-github-json-iterator-go-dev:30.2053:Unpacking golang-github-json-iterator-go-dev (s390x) 168s pmstatus:golang-github-json-iterator-go-dev:30.4985:Installing golang-github-json-iterator-go-dev (s390x) 168s pmstatus:golang-github-munnerz-goautoneg-dev:30.4985:Preparing golang-github-munnerz-goautoneg-dev (s390x) 168s pmstatus:golang-github-munnerz-goautoneg-dev:30.7918:Unpacking golang-github-munnerz-goautoneg-dev (s390x) 168s pmstatus:golang-github-munnerz-goautoneg-dev:31.0850:Installing golang-github-munnerz-goautoneg-dev (s390x) 168s pmstatus:golang-github-beorn7-perks-dev:31.0850:Preparing golang-github-beorn7-perks-dev (s390x) 168s pmstatus:golang-github-beorn7-perks-dev:31.3783:Unpacking golang-github-beorn7-perks-dev (s390x) 168s pmstatus:golang-github-beorn7-perks-dev:31.6716:Installing golang-github-beorn7-perks-dev (s390x) 168s pmstatus:golang-github-cespare-xxhash-dev:31.6716:Preparing golang-github-cespare-xxhash-dev (s390x) 168s pmstatus:golang-github-cespare-xxhash-dev:31.9648:Unpacking golang-github-cespare-xxhash-dev (s390x) 168s pmstatus:golang-github-cespare-xxhash-dev:32.2581:Installing golang-github-cespare-xxhash-dev (s390x) 168s pmstatus:golang-github-davecgh-go-spew-dev:32.2581:Preparing golang-github-davecgh-go-spew-dev (s390x) 168s pmstatus:golang-github-davecgh-go-spew-dev:32.5513:Unpacking golang-github-davecgh-go-spew-dev (s390x) 168s pmstatus:golang-github-davecgh-go-spew-dev:32.8446:Installing golang-github-davecgh-go-spew-dev (s390x) 168s pmstatus:golang-github-klauspost-compress-dev:32.8446:Preparing golang-github-klauspost-compress-dev (s390x) 168s pmstatus:golang-github-klauspost-compress-dev:33.1378:Unpacking golang-github-klauspost-compress-dev (s390x) 168s pmstatus:golang-github-klauspost-compress-dev:33.4311:Installing golang-github-klauspost-compress-dev (s390x) 168s pmstatus:golang-github-kylelemons-godebug-dev:33.4311:Preparing golang-github-kylelemons-godebug-dev (s390x) 168s pmstatus:golang-github-kylelemons-godebug-dev:33.7243:Unpacking golang-github-kylelemons-godebug-dev (s390x) 168s pmstatus:golang-github-kylelemons-godebug-dev:34.0176:Installing golang-github-kylelemons-godebug-dev (s390x) 168s pmstatus:golang-google-protobuf-dev:34.0176:Preparing golang-google-protobuf-dev (s390x) 168s pmstatus:golang-google-protobuf-dev:34.3109:Unpacking golang-google-protobuf-dev (s390x) 168s pmstatus:golang-google-protobuf-dev:34.6041:Installing golang-google-protobuf-dev (s390x) 168s pmstatus:golang-github-prometheus-client-model-dev:34.6041:Preparing golang-github-prometheus-client-model-dev (s390x) 168s pmstatus:golang-github-prometheus-client-model-dev:34.8974:Unpacking golang-github-prometheus-client-model-dev (s390x) 168s pmstatus:golang-github-prometheus-client-model-dev:35.1906:Installing golang-github-prometheus-client-model-dev (s390x) 168s pmstatus:golang-github-pmezard-go-difflib-dev:35.1906:Preparing golang-github-pmezard-go-difflib-dev (s390x) 168s pmstatus:golang-github-pmezard-go-difflib-dev:35.4839:Unpacking golang-github-pmezard-go-difflib-dev (s390x) 168s pmstatus:golang-github-pmezard-go-difflib-dev:35.7771:Installing golang-github-pmezard-go-difflib-dev (s390x) 168s pmstatus:golang-github-stretchr-objx-dev:35.7771:Preparing golang-github-stretchr-objx-dev (s390x) 168s pmstatus:golang-github-stretchr-objx-dev:36.0704:Unpacking golang-github-stretchr-objx-dev (s390x) 168s pmstatus:golang-github-stretchr-objx-dev:36.3636:Installing golang-github-stretchr-objx-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v2-dev:36.3636:Preparing golang-gopkg-yaml.v2-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v2-dev:36.6569:Unpacking golang-gopkg-yaml.v2-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v2-dev:36.9501:Installing golang-gopkg-yaml.v2-dev (s390x) 168s pmstatus:golang-github-jmespath-go-jmespath-dev:36.9501:Preparing golang-github-jmespath-go-jmespath-dev (s390x) 168s pmstatus:golang-github-jmespath-go-jmespath-dev:37.2434:Unpacking golang-github-jmespath-go-jmespath-dev (s390x) 168s pmstatus:golang-github-jmespath-go-jmespath-dev:37.5367:Installing golang-github-jmespath-go-jmespath-dev (s390x) 168s pmstatus:golang-golang-x-term-dev:37.5367:Preparing golang-golang-x-term-dev (s390x) 168s pmstatus:golang-golang-x-term-dev:37.8299:Unpacking golang-golang-x-term-dev (s390x) 168s pmstatus:golang-golang-x-term-dev:38.1232:Installing golang-golang-x-term-dev (s390x) 168s pmstatus:golang-golang-x-text-dev:38.1232:Preparing golang-golang-x-text-dev (s390x) 168s pmstatus:golang-golang-x-text-dev:38.4164:Unpacking golang-golang-x-text-dev (s390x) 168s pmstatus:golang-golang-x-text-dev:38.7097:Installing golang-golang-x-text-dev (s390x) 168s pmstatus:golang-golang-x-crypto-dev:38.7097:Preparing golang-golang-x-crypto-dev (s390x) 168s pmstatus:golang-golang-x-crypto-dev:39.0029:Unpacking golang-golang-x-crypto-dev (s390x) 168s pmstatus:golang-golang-x-crypto-dev:39.2962:Installing golang-golang-x-crypto-dev (s390x) 168s pmstatus:golang-golang-x-net-dev:39.2962:Preparing golang-golang-x-net-dev (s390x) 168s pmstatus:golang-golang-x-net-dev:39.5894:Unpacking golang-golang-x-net-dev (s390x) 168s pmstatus:golang-golang-x-net-dev:39.8827:Installing golang-golang-x-net-dev (s390x) 168s pmstatus:golang-github-aws-aws-sdk-go-dev:39.8827:Preparing golang-github-aws-aws-sdk-go-dev (s390x) 168s pmstatus:golang-github-aws-aws-sdk-go-dev:40.1760:Unpacking golang-github-aws-aws-sdk-go-dev (s390x) 168s pmstatus:golang-github-aws-aws-sdk-go-dev:40.4692:Installing golang-github-aws-aws-sdk-go-dev (s390x) 168s pmstatus:golang-github-google-go-cmp-dev:40.4692:Preparing golang-github-google-go-cmp-dev (s390x) 168s pmstatus:golang-github-google-go-cmp-dev:40.7625:Unpacking golang-github-google-go-cmp-dev (s390x) 168s pmstatus:golang-github-google-go-cmp-dev:41.0557:Installing golang-github-google-go-cmp-dev (s390x) 168s pmstatus:golang-github-julienschmidt-httprouter-dev:41.0557:Preparing golang-github-julienschmidt-httprouter-dev (s390x) 168s pmstatus:golang-github-julienschmidt-httprouter-dev:41.3490:Unpacking golang-github-julienschmidt-httprouter-dev (s390x) 168s pmstatus:golang-github-julienschmidt-httprouter-dev:41.6422:Installing golang-github-julienschmidt-httprouter-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v3-dev:41.6422:Preparing golang-gopkg-yaml.v3-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v3-dev:41.9355:Unpacking golang-gopkg-yaml.v3-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v3-dev:42.2287:Installing golang-gopkg-yaml.v3-dev (s390x) 168s pmstatus:golang-github-stretchr-testify-dev:42.2287:Preparing golang-github-stretchr-testify-dev (s390x) 168s pmstatus:golang-github-stretchr-testify-dev:42.5220:Unpacking golang-github-stretchr-testify-dev (s390x) 168s pmstatus:golang-github-stretchr-testify-dev:42.8153:Installing golang-github-stretchr-testify-dev (s390x) 168s pmstatus:golang-github-prometheus-sigv4-dev:42.8153:Preparing golang-github-prometheus-sigv4-dev (s390x) 168s pmstatus:golang-github-prometheus-sigv4-dev:43.1085:Unpacking golang-github-prometheus-sigv4-dev (s390x) 168s pmstatus:golang-github-prometheus-sigv4-dev:43.4018:Installing golang-github-prometheus-sigv4-dev (s390x) 168s pmstatus:golang-golang-x-oauth2-dev:43.4018:Preparing golang-golang-x-oauth2-dev (s390x) 168s pmstatus:golang-golang-x-oauth2-dev:43.6950:Unpacking golang-golang-x-oauth2-dev (s390x) 168s pmstatus:golang-golang-x-oauth2-dev:43.9883:Installing golang-golang-x-oauth2-dev (s390x) 168s pmstatus:golang-github-alecthomas-units-dev:43.9883:Preparing golang-github-alecthomas-units-dev (s390x) 168s pmstatus:golang-github-alecthomas-units-dev:44.2815:Unpacking golang-github-alecthomas-units-dev (s390x) 168s pmstatus:golang-github-alecthomas-units-dev:44.5748:Installing golang-github-alecthomas-units-dev (s390x) 168s pmstatus:golang-gopkg-alecthomas-kingpin.v2-dev:44.5748:Preparing golang-gopkg-alecthomas-kingpin.v2-dev (s390x) 168s pmstatus:golang-gopkg-alecthomas-kingpin.v2-dev:44.8680:Unpacking golang-gopkg-alecthomas-kingpin.v2-dev (s390x) 168s pmstatus:golang-gopkg-alecthomas-kingpin.v2-dev:45.1613:Installing golang-gopkg-alecthomas-kingpin.v2-dev (s390x) 168s pmstatus:golang-github-prometheus-common-dev:45.1613:Preparing golang-github-prometheus-common-dev (s390x) 168s pmstatus:golang-github-prometheus-common-dev:45.4545:Unpacking golang-github-prometheus-common-dev (s390x) 168s pmstatus:golang-github-prometheus-common-dev:45.7478:Installing golang-github-prometheus-common-dev (s390x) 168s pmstatus:golang-golang-x-sync-dev:45.7478:Preparing golang-golang-x-sync-dev (s390x) 168s pmstatus:golang-golang-x-sync-dev:46.0411:Unpacking golang-golang-x-sync-dev (s390x) 168s pmstatus:golang-golang-x-sync-dev:46.3343:Installing golang-golang-x-sync-dev (s390x) 168s pmstatus:golang-github-prometheus-procfs-dev:46.3343:Preparing golang-github-prometheus-procfs-dev (s390x) 168s pmstatus:golang-github-prometheus-procfs-dev:46.6276:Unpacking golang-github-prometheus-procfs-dev (s390x) 168s pmstatus:golang-github-prometheus-procfs-dev:46.9208:Installing golang-github-prometheus-procfs-dev (s390x) 168s pmstatus:golang-github-prometheus-client-golang-dev:46.9208:Preparing golang-github-prometheus-client-golang-dev (s390x) 168s pmstatus:golang-github-prometheus-client-golang-dev:47.2141:Unpacking golang-github-prometheus-client-golang-dev (s390x) 168s pmstatus:golang-github-prometheus-client-golang-dev:47.5073:Installing golang-github-prometheus-client-golang-dev (s390x) 168s pmstatus:golang-github-mwitkow-go-conntrack-dev:47.5073:Preparing golang-github-mwitkow-go-conntrack-dev (s390x) 168s pmstatus:golang-github-mwitkow-go-conntrack-dev:47.8006:Unpacking golang-github-mwitkow-go-conntrack-dev (s390x) 168s pmstatus:golang-github-mwitkow-go-conntrack-dev:48.0938:Installing golang-github-mwitkow-go-conntrack-dev (s390x) 168s pmstatus:prometheus-nextcloud-exporter:48.0938:Preparing prometheus-nextcloud-exporter (s390x) 168s pmstatus:prometheus-nextcloud-exporter:48.3871:Unpacking prometheus-nextcloud-exporter (s390x) 168s pmstatus:prometheus-nextcloud-exporter:48.6804:Installing prometheus-nextcloud-exporter (s390x) 168s pmstatus:dh-golang:48.6804:Preparing dh-golang (s390x) 168s pmstatus:dh-golang:48.9736:Unpacking dh-golang (s390x) 168s pmstatus:dh-golang:49.2669:Installing dh-golang (s390x) 168s pmstatus:golang-github-spf13-pflag-dev:49.2669:Preparing golang-github-spf13-pflag-dev (s390x) 168s pmstatus:golang-github-spf13-pflag-dev:49.5601:Unpacking golang-github-spf13-pflag-dev (s390x) 168s pmstatus:golang-github-spf13-pflag-dev:49.8534:Installing golang-github-spf13-pflag-dev (s390x) 168s pmstatus:dpkg-exec:49.8534:Running dpkg 168s pmstatus:golang-1.24-src:49.8534:Preparing to configure golang-1.24-src (s390x) 168s pmstatus:golang-1.24-src:50.1466:Configuring golang-1.24-src (s390x) 168s pmstatus:golang-1.24-src:50.4399:Installed golang-1.24-src (s390x) 168s pmstatus:golang-github-google-go-cmp-dev:50.4399:Preparing to configure golang-github-google-go-cmp-dev (s390x) 168s pmstatus:golang-github-google-go-cmp-dev:50.7331:Configuring golang-github-google-go-cmp-dev (s390x) 168s pmstatus:golang-github-google-go-cmp-dev:51.0264:Installed golang-github-google-go-cmp-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v2-dev:51.0264:Preparing to configure golang-gopkg-yaml.v2-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v2-dev:51.3196:Configuring golang-gopkg-yaml.v2-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v2-dev:51.6129:Installed golang-gopkg-yaml.v2-dev (s390x) 168s pmstatus:golang-github-stretchr-objx-dev:51.6129:Preparing to configure golang-github-stretchr-objx-dev (s390x) 168s pmstatus:golang-github-stretchr-objx-dev:51.9062:Configuring golang-github-stretchr-objx-dev (s390x) 168s pmstatus:golang-github-stretchr-objx-dev:52.1994:Installed golang-github-stretchr-objx-dev (s390x) 168s pmstatus:libarchive-zip-perl:52.1994:Preparing to configure libarchive-zip-perl (s390x) 168s pmstatus:libarchive-zip-perl:52.4927:Configuring libarchive-zip-perl (s390x) 168s pmstatus:libarchive-zip-perl:52.7859:Installed libarchive-zip-perl (s390x) 168s pmstatus:golang-github-kylelemons-godebug-dev:52.7859:Preparing to configure golang-github-kylelemons-godebug-dev (s390x) 168s pmstatus:golang-github-kylelemons-godebug-dev:53.0792:Configuring golang-github-kylelemons-godebug-dev (s390x) 168s pmstatus:golang-github-kylelemons-godebug-dev:53.3724:Installed golang-github-kylelemons-godebug-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v3-dev:53.3724:Preparing to configure golang-gopkg-yaml.v3-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v3-dev:53.6657:Configuring golang-gopkg-yaml.v3-dev (s390x) 168s pmstatus:golang-gopkg-yaml.v3-dev:53.9589:Installed golang-gopkg-yaml.v3-dev (s390x) 168s pmstatus:libdebhelper-perl:53.9589:Preparing to configure libdebhelper-perl (s390x) 168s pmstatus:libdebhelper-perl:54.2522:Configuring libdebhelper-perl (s390x) 168s pmstatus:libdebhelper-perl:54.5455:Installed libdebhelper-perl (s390x) 168s pmstatus:golang-golang-x-sys-dev:54.5455:Preparing to configure golang-golang-x-sys-dev (s390x) 168s pmstatus:golang-golang-x-sys-dev:54.8387:Configuring golang-golang-x-sys-dev (s390x) 168s pmstatus:golang-golang-x-sys-dev:55.1320:Installed golang-golang-x-sys-dev (s390x) 168s pmstatus:golang-github-pmezard-go-difflib-dev:55.1320:Preparing to configure golang-github-pmezard-go-difflib-dev (s390x) 168s pmstatus:golang-github-pmezard-go-difflib-dev:55.4252:Configuring golang-github-pmezard-go-difflib-dev (s390x) 168s pmstatus:golang-github-pmezard-go-difflib-dev:55.7185:Installed golang-github-pmezard-go-difflib-dev (s390x) 168s pmstatus:golang-github-modern-go-concurrent-dev:55.7185:Preparing to configure golang-github-modern-go-concurrent-dev (s390x) 168s pmstatus:golang-github-modern-go-concurrent-dev:56.0117:Configuring golang-github-modern-go-concurrent-dev (s390x) 168s pmstatus:golang-github-modern-go-concurrent-dev:56.3050:Installed golang-github-modern-go-concurrent-dev (s390x) 168s pmstatus:m4:56.3050:Preparing to configure m4 (s390x) 168s pmstatus:m4:56.5982:Configuring m4 (s390x) 168s pmstatus:m4:56.8915:Installed m4 (s390x) 168s pmstatus:golang-golang-x-term-dev:56.8915:Preparing to configure golang-golang-x-term-dev (s390x) 168s pmstatus:golang-golang-x-term-dev:57.1847:Configuring golang-golang-x-term-dev (s390x) 168s pmstatus:golang-golang-x-term-dev:57.4780:Installed golang-golang-x-term-dev (s390x) 168s pmstatus:libgomp1:57.4780:Preparing to configure libgomp1 (s390x) 168s pmstatus:libgomp1:57.7713:Configuring libgomp1 (s390x) 168s pmstatus:libgomp1:58.0645:Installed libgomp1 (s390x) 168s pmstatus:golang-github-beorn7-perks-dev:58.0645:Preparing to configure golang-github-beorn7-perks-dev (s390x) 168s pmstatus:golang-github-beorn7-perks-dev:58.3578:Configuring golang-github-beorn7-perks-dev (s390x) 168s pmstatus:golang-github-beorn7-perks-dev:58.6510:Installed golang-github-beorn7-perks-dev (s390x) 168s pmstatus:golang-github-cespare-xxhash-dev:58.6510:Preparing to configure golang-github-cespare-xxhash-dev (s390x) 168s pmstatus:golang-github-cespare-xxhash-dev:58.9443:Configuring golang-github-cespare-xxhash-dev (s390x) 168s pmstatus:golang-github-cespare-xxhash-dev:59.2375:Installed golang-github-cespare-xxhash-dev (s390x) 168s pmstatus:golang-github-spf13-pflag-dev:59.2375:Preparing to configure golang-github-spf13-pflag-dev (s390x) 168s pmstatus:golang-github-spf13-pflag-dev:59.5308:Configuring golang-github-spf13-pflag-dev (s390x) 168s pmstatus:golang-github-spf13-pflag-dev:59.8241:Installed golang-github-spf13-pflag-dev (s390x) 168s pmstatus:golang-github-jpillora-backoff-dev:59.8241:Preparing to configure golang-github-jpillora-backoff-dev (s390x) 168s pmstatus:golang-github-jpillora-backoff-dev:60.1173:Configuring golang-github-jpillora-backoff-dev (s390x) 168s pmstatus:golang-github-jpillora-backoff-dev:60.4106:Installed golang-github-jpillora-backoff-dev (s390x) 168s pmstatus:golang-github-davecgh-go-spew-dev:60.4106:Preparing to configure golang-github-davecgh-go-spew-dev (s390x) 168s pmstatus:golang-github-davecgh-go-spew-dev:60.7038:Configuring golang-github-davecgh-go-spew-dev (s390x) 168s pmstatus:golang-github-davecgh-go-spew-dev:60.9971:Installed golang-github-davecgh-go-spew-dev (s390x) 168s pmstatus:autotools-dev:60.9971:Preparing to configure autotools-dev (s390x) 168s pmstatus:autotools-dev:61.2903:Configuring autotools-dev (s390x) 168s pmstatus:autotools-dev:61.5836:Installed autotools-dev (s390x) 168s pmstatus:golang-github-go-logfmt-logfmt-dev:61.5836:Preparing to configure golang-github-go-logfmt-logfmt-dev (s390x) 168s pmstatus:golang-github-go-logfmt-logfmt-dev:61.8768:Configuring golang-github-go-logfmt-logfmt-dev (s390x) 168s pmstatus:golang-github-go-logfmt-logfmt-dev:62.1701:Installed golang-github-go-logfmt-logfmt-dev (s390x) 168s pmstatus:golang-google-protobuf-dev:62.1701:Preparing to configure golang-google-protobuf-dev (s390x) 168s pmstatus:golang-google-protobuf-dev:62.4633:Configuring golang-google-protobuf-dev (s390x) 168s pmstatus:golang-google-protobuf-dev:62.7566:Installed golang-google-protobuf-dev (s390x) 168s pmstatus:golang-github-stretchr-testify-dev:62.7566:Preparing to configure golang-github-stretchr-testify-dev (s390x) 168s pmstatus:golang-github-stretchr-testify-dev:63.0499:Configuring golang-github-stretchr-testify-dev (s390x) 168s pmstatus:golang-github-stretchr-testify-dev:63.3431:Installed golang-github-stretchr-testify-dev (s390x) 168s pmstatus:libmpc3:63.3431:Preparing to configure libmpc3 (s390x) 168s pmstatus:libmpc3:63.6364:Configuring libmpc3 (s390x) 168s pmstatus:libmpc3:63.9296:Installed libmpc3 (s390x) 168s pmstatus:golang-golang-x-sync-dev:63.9296:Preparing to configure golang-golang-x-sync-dev (s390x) 168s pmstatus:golang-golang-x-sync-dev:64.2229:Configuring golang-golang-x-sync-dev (s390x) 168s pmstatus:golang-golang-x-sync-dev:64.5161:Installed golang-golang-x-sync-dev (s390x) 168s pmstatus:autopoint:64.5161:Preparing to configure autopoint (s390x) 168s pmstatus:autopoint:64.8094:Configuring autopoint (s390x) 168s pmstatus:autopoint:65.1026:Installed autopoint (s390x) 168s pmstatus:golang-1.24-go:65.1026:Preparing to configure golang-1.24-go (s390x) 168s pmstatus:golang-1.24-go:65.3959:Configuring golang-1.24-go (s390x) 168s pmstatus:golang-1.24-go:65.6892:Installed golang-1.24-go (s390x) 168s pmstatus:golang-github-klauspost-compress-dev:65.6892:Preparing to configure golang-github-klauspost-compress-dev (s390x) 168s pmstatus:golang-github-klauspost-compress-dev:65.9824:Configuring golang-github-klauspost-compress-dev (s390x) 168s pmstatus:golang-github-klauspost-compress-dev:66.2757:Installed golang-github-klauspost-compress-dev (s390x) 168s pmstatus:golang-github-julienschmidt-httprouter-dev:66.2757:Preparing to configure golang-github-julienschmidt-httprouter-dev (s390x) 168s pmstatus:golang-github-julienschmidt-httprouter-dev:66.5689:Configuring golang-github-julienschmidt-httprouter-dev (s390x) 168s pmstatus:golang-github-julienschmidt-httprouter-dev:66.8622:Installed golang-github-julienschmidt-httprouter-dev (s390x) 168s pmstatus:autoconf:66.8622:Preparing to configure autoconf (s390x) 168s pmstatus:autoconf:67.1554:Configuring autoconf (s390x) 168s pmstatus:autoconf:67.4487:Installed autoconf (s390x) 168s pmstatus:libubsan1:67.4487:Preparing to configure libubsan1 (s390x) 168s pmstatus:libubsan1:67.7419:Configuring libubsan1 (s390x) 168s pmstatus:libubsan1:68.0352:Installed libubsan1 (s390x) 168s pmstatus:dwz:68.0352:Preparing to configure dwz (s390x) 168s pmstatus:dwz:68.3284:Configuring dwz (s390x) 168s pmstatus:dwz:68.6217:Installed dwz (s390x) 168s pmstatus:golang-github-munnerz-goautoneg-dev:68.6217:Preparing to configure golang-github-munnerz-goautoneg-dev (s390x) 168s pmstatus:golang-github-munnerz-goautoneg-dev:68.9150:Configuring golang-github-munnerz-goautoneg-dev (s390x) 168s pmstatus:golang-github-munnerz-goautoneg-dev:69.2082:Installed golang-github-munnerz-goautoneg-dev (s390x) 168s pmstatus:golang-golang-x-text-dev:69.2082:Preparing to configure golang-golang-x-text-dev (s390x) 168s pmstatus:golang-golang-x-text-dev:69.5015:Configuring golang-golang-x-text-dev (s390x) 168s pmstatus:golang-golang-x-text-dev:69.7947:Installed golang-golang-x-text-dev (s390x) 168s pmstatus:libasan8:69.7947:Preparing to configure libasan8 (s390x) 168s pmstatus:libasan8:70.0880:Configuring libasan8 (s390x) 168s pmstatus:libasan8:70.3812:Installed libasan8 (s390x) 168s pmstatus:prometheus-nextcloud-exporter:70.3812:Preparing to configure prometheus-nextcloud-exporter (s390x) 168s pmstatus:prometheus-nextcloud-exporter:70.6745:Configuring prometheus-nextcloud-exporter (s390x) 168s pmerror:prometheus-nextcloud-exporter:70.6745:installed prometheus-nextcloud-exporter package post-installation script subprocess returned error exit status 1 168s pmstatus:golang-github-prometheus-procfs-dev:70.6745:Preparing to configure golang-github-prometheus-procfs-dev (s390x) 168s pmstatus:golang-github-prometheus-procfs-dev:70.9677:Configuring golang-github-prometheus-procfs-dev (s390x) 168s pmstatus:golang-github-prometheus-procfs-dev:71.2610:Installed golang-github-prometheus-procfs-dev (s390x) 168s pmstatus:debugedit:71.2610:Preparing to configure debugedit (s390x) 168s pmstatus:debugedit:71.5543:Configuring debugedit (s390x) 168s pmstatus:debugedit:71.8475:Installed debugedit (s390x) 168s pmstatus:golang-github-alecthomas-units-dev:71.8475:Preparing to configure golang-github-alecthomas-units-dev (s390x) 168s pmstatus:golang-github-alecthomas-units-dev:72.1408:Configuring golang-github-alecthomas-units-dev (s390x) 168s pmstatus:golang-github-alecthomas-units-dev:72.4340:Installed golang-github-alecthomas-units-dev (s390x) 168s pmstatus:golang-github-modern-go-reflect2-dev:72.4340:Preparing to configure golang-github-modern-go-reflect2-dev (s390x) 168s pmstatus:golang-github-modern-go-reflect2-dev:72.7273:Configuring golang-github-modern-go-reflect2-dev (s390x) 168s pmstatus:golang-github-modern-go-reflect2-dev:73.0205:Installed golang-github-modern-go-reflect2-dev (s390x) 168s pmstatus:golang-golang-x-crypto-dev:73.0205:Preparing to configure golang-golang-x-crypto-dev (s390x) 168s pmstatus:golang-golang-x-crypto-dev:73.3138:Configuring golang-golang-x-crypto-dev (s390x) 168s pmstatus:golang-golang-x-crypto-dev:73.6070:Installed golang-golang-x-crypto-dev (s390x) 168s pmstatus:golang-github-prometheus-client-model-dev:73.6070:Preparing to configure golang-github-prometheus-client-model-dev (s390x) 168s pmstatus:golang-github-prometheus-client-model-dev:73.9003:Configuring golang-github-prometheus-client-model-dev (s390x) 168s pmstatus:golang-github-prometheus-client-model-dev:74.1936:Installed golang-github-prometheus-client-model-dev (s390x) 168s pmstatus:golang-golang-x-oauth2-dev:74.1936:Preparing to configure golang-golang-x-oauth2-dev (s390x) 168s pmstatus:golang-golang-x-oauth2-dev:74.4868:Configuring golang-golang-x-oauth2-dev (s390x) 168s pmstatus:golang-golang-x-oauth2-dev:74.7801:Installed golang-golang-x-oauth2-dev (s390x) 168s pmstatus:libisl23:74.7801:Preparing to configure libisl23 (s390x) 168s pmstatus:libisl23:75.0733:Configuring libisl23 (s390x) 168s pmstatus:libisl23:75.3666:Installed libisl23 (s390x) 168s pmstatus:golang-src:75.3666:Preparing to configure golang-src (s390x) 168s pmstatus:golang-src:75.6598:Configuring golang-src (s390x) 168s pmstatus:golang-src:75.9531:Installed golang-src (s390x) 168s pmstatus:libcc1-0:75.9531:Preparing to configure libcc1-0 (s390x) 168s pmstatus:libcc1-0:76.2463:Configuring libcc1-0 (s390x) 168s pmstatus:libcc1-0:76.5396:Installed libcc1-0 (s390x) 168s pmstatus:golang-github-jmespath-go-jmespath-dev:76.5396:Preparing to configure golang-github-jmespath-go-jmespath-dev (s390x) 168s pmstatus:golang-github-jmespath-go-jmespath-dev:76.8328:Configuring golang-github-jmespath-go-jmespath-dev (s390x) 168s pmstatus:golang-github-jmespath-go-jmespath-dev:77.1261:Installed golang-github-jmespath-go-jmespath-dev (s390x) 168s pmstatus:libitm1:77.1261:Preparing to configure libitm1 (s390x) 168s pmstatus:libitm1:77.4193:Configuring libitm1 (s390x) 168s pmstatus:libitm1:77.7126:Installed libitm1 (s390x) 168s pmstatus:automake:77.7126:Preparing to configure automake (s390x) 168s pmstatus:automake:78.0059:Configuring automake (s390x) 168s pmstatus:automake:78.2991:Installed automake (s390x) 168s pmstatus:libfile-stripnondeterminism-perl:78.2991:Preparing to configure libfile-stripnondeterminism-perl (s390x) 168s pmstatus:libfile-stripnondeterminism-perl:78.5924:Configuring libfile-stripnondeterminism-perl (s390x) 168s pmstatus:libfile-stripnondeterminism-perl:78.8856:Installed libfile-stripnondeterminism-perl (s390x) 168s pmstatus:golang-github-sirupsen-logrus-dev:78.8856:Preparing to configure golang-github-sirupsen-logrus-dev (s390x) 168s pmstatus:golang-github-sirupsen-logrus-dev:79.1789:Configuring golang-github-sirupsen-logrus-dev (s390x) 168s pmstatus:golang-github-sirupsen-logrus-dev:79.4721:Installed golang-github-sirupsen-logrus-dev (s390x) 168s pmstatus:golang-github-go-kit-log-dev:79.4721:Preparing to configure golang-github-go-kit-log-dev (s390x) 168s pmstatus:golang-github-go-kit-log-dev:79.7654:Configuring golang-github-go-kit-log-dev (s390x) 168s pmstatus:golang-github-go-kit-log-dev:80.0587:Installed golang-github-go-kit-log-dev (s390x) 168s pmstatus:gettext:80.0587:Preparing to configure gettext (s390x) 168s pmstatus:gettext:80.3519:Configuring gettext (s390x) 168s pmstatus:gettext:80.6452:Installed gettext (s390x) 168s pmstatus:golang-gopkg-alecthomas-kingpin.v2-dev:80.6452:Preparing to configure golang-gopkg-alecthomas-kingpin.v2-dev (s390x) 168s pmstatus:golang-gopkg-alecthomas-kingpin.v2-dev:80.9384:Configuring golang-gopkg-alecthomas-kingpin.v2-dev (s390x) 168s pmstatus:golang-gopkg-alecthomas-kingpin.v2-dev:81.2317:Installed golang-gopkg-alecthomas-kingpin.v2-dev (s390x) 168s pmstatus:golang-go:81.2317:Preparing to configure golang-go (s390x) 168s pmstatus:golang-go:81.5249:Configuring golang-go (s390x) 168s pmstatus:golang-go:81.8182:Installed golang-go (s390x) 168s pmstatus:golang-github-json-iterator-go-dev:81.8182:Preparing to configure golang-github-json-iterator-go-dev (s390x) 168s pmstatus:golang-github-json-iterator-go-dev:82.1114:Configuring golang-github-json-iterator-go-dev (s390x) 168s pmstatus:golang-github-json-iterator-go-dev:82.4047:Installed golang-github-json-iterator-go-dev (s390x) 168s pmstatus:golang-any:82.4047:Preparing to configure golang-any (s390x) 168s pmstatus:golang-any:82.6979:Configuring golang-any (s390x) 168s pmstatus:golang-any:82.9912:Installed golang-any (s390x) 168s pmstatus:intltool-debian:82.9912:Preparing to configure intltool-debian (s390x) 168s pmstatus:intltool-debian:83.2845:Configuring intltool-debian (s390x) 168s pmstatus:intltool-debian:83.5777:Installed intltool-debian (s390x) 168s pmstatus:golang-golang-x-net-dev:83.5777:Preparing to configure golang-golang-x-net-dev (s390x) 168s pmstatus:golang-golang-x-net-dev:83.8710:Configuring golang-golang-x-net-dev (s390x) 168s pmstatus:golang-golang-x-net-dev:84.1642:Installed golang-golang-x-net-dev (s390x) 168s pmstatus:cpp-14-s390x-linux-gnu:84.1642:Preparing to configure cpp-14-s390x-linux-gnu (s390x) 168s pmstatus:cpp-14-s390x-linux-gnu:84.4575:Configuring cpp-14-s390x-linux-gnu (s390x) 168s pmstatus:cpp-14-s390x-linux-gnu:84.7507:Installed cpp-14-s390x-linux-gnu (s390x) 168s pmstatus:cpp-14:84.7507:Preparing to configure cpp-14 (s390x) 168s pmstatus:cpp-14:85.0440:Configuring cpp-14 (s390x) 168s pmstatus:cpp-14:85.3372:Installed cpp-14 (s390x) 168s pmstatus:dh-strip-nondeterminism:85.3372:Preparing to configure dh-strip-nondeterminism (s390x) 168s pmstatus:dh-strip-nondeterminism:85.6305:Configuring dh-strip-nondeterminism (s390x) 168s pmstatus:dh-strip-nondeterminism:85.9238:Installed dh-strip-nondeterminism (s390x) 168s pmstatus:libgcc-14-dev:85.9238:Preparing to configure libgcc-14-dev (s390x) 168s pmstatus:libgcc-14-dev:86.2170:Configuring libgcc-14-dev (s390x) 168s pmstatus:libgcc-14-dev:86.5103:Installed libgcc-14-dev (s390x) 168s pmstatus:golang-github-aws-aws-sdk-go-dev:86.5103:Preparing to configure golang-github-aws-aws-sdk-go-dev (s390x) 168s pmstatus:golang-github-aws-aws-sdk-go-dev:86.8035:Configuring golang-github-aws-aws-sdk-go-dev (s390x) 168s pmstatus:golang-github-aws-aws-sdk-go-dev:87.0968:Installed golang-github-aws-aws-sdk-go-dev (s390x) 168s pmstatus:libstdc++-14-dev:87.0968:Preparing to configure libstdc++-14-dev (s390x) 168s pmstatus:libstdc++-14-dev:87.3900:Configuring libstdc++-14-dev (s390x) 168s pmstatus:libstdc++-14-dev:87.6833:Installed libstdc++-14-dev (s390x) 168s pmstatus:cpp-s390x-linux-gnu:87.6833:Preparing to configure cpp-s390x-linux-gnu (s390x) 168s pmstatus:cpp-s390x-linux-gnu:87.9765:Configuring cpp-s390x-linux-gnu (s390x) 168s pmstatus:cpp-s390x-linux-gnu:88.2698:Installed cpp-s390x-linux-gnu (s390x) 168s pmstatus:po-debconf:88.2698:Preparing to configure po-debconf (s390x) 168s pmstatus:po-debconf:88.5630:Configuring po-debconf (s390x) 168s pmstatus:po-debconf:88.8563:Installed po-debconf (s390x) 168s pmstatus:gcc-14-s390x-linux-gnu:88.8563:Preparing to configure gcc-14-s390x-linux-gnu (s390x) 168s pmstatus:gcc-14-s390x-linux-gnu:89.1496:Configuring gcc-14-s390x-linux-gnu (s390x) 168s pmstatus:gcc-14-s390x-linux-gnu:89.4428:Installed gcc-14-s390x-linux-gnu (s390x) 168s pmstatus:gcc-s390x-linux-gnu:89.4428:Preparing to configure gcc-s390x-linux-gnu (s390x) 168s pmstatus:gcc-s390x-linux-gnu:89.7361:Configuring gcc-s390x-linux-gnu (s390x) 168s pmstatus:gcc-s390x-linux-gnu:90.0293:Installed gcc-s390x-linux-gnu (s390x) 168s pmstatus:g++-14-s390x-linux-gnu:90.0293:Preparing to configure g++-14-s390x-linux-gnu (s390x) 168s pmstatus:g++-14-s390x-linux-gnu:90.3226:Configuring g++-14-s390x-linux-gnu (s390x) 168s pmstatus:g++-14-s390x-linux-gnu:90.6158:Installed g++-14-s390x-linux-gnu (s390x) 168s pmstatus:cpp:90.6158:Preparing to configure cpp (s390x) 168s pmstatus:cpp:90.9091:Configuring cpp (s390x) 168s pmstatus:cpp:91.2023:Installed cpp (s390x) 168s pmstatus:g++-s390x-linux-gnu:91.2023:Preparing to configure g++-s390x-linux-gnu (s390x) 168s pmstatus:g++-s390x-linux-gnu:91.4956:Configuring g++-s390x-linux-gnu (s390x) 168s pmstatus:g++-s390x-linux-gnu:91.7889:Installed g++-s390x-linux-gnu (s390x) 168s pmstatus:gcc-14:91.7889:Preparing to configure gcc-14 (s390x) 168s pmstatus:gcc-14:92.0821:Configuring gcc-14 (s390x) 168s pmstatus:gcc-14:92.3754:Installed gcc-14 (s390x) 168s pmstatus:g++-14:92.3754:Preparing to configure g++-14 (s390x) 168s pmstatus:g++-14:92.6686:Configuring g++-14 (s390x) 168s pmstatus:g++-14:92.9619:Installed g++-14 (s390x) 168s pmstatus:libtool:92.9619:Preparing to configure libtool (s390x) 168s pmstatus:libtool:93.2551:Configuring libtool (s390x) 168s pmstatus:libtool:93.5484:Installed libtool (s390x) 168s pmstatus:gcc:93.5484:Preparing to configure gcc (s390x) 168s pmstatus:gcc:93.8416:Configuring gcc (s390x) 168s pmstatus:gcc:94.1349:Installed gcc (s390x) 168s pmstatus:dh-autoreconf:94.1349:Preparing to configure dh-autoreconf (s390x) 168s pmstatus:dh-autoreconf:94.4282:Configuring dh-autoreconf (s390x) 168s pmstatus:dh-autoreconf:94.7214:Installed dh-autoreconf (s390x) 168s pmstatus:g++:94.7214:Preparing to configure g++ (s390x) 168s pmstatus:g++:95.0147:Configuring g++ (s390x) 168s pmstatus:g++:95.3079:Installed g++ (s390x) 168s pmstatus:build-essential:95.3079:Preparing to configure build-essential (s390x) 168s pmstatus:build-essential:95.6012:Configuring build-essential (s390x) 168s pmstatus:build-essential:95.8944:Installed build-essential (s390x) 168s pmstatus:debhelper:95.8944:Preparing to configure debhelper (s390x) 168s pmstatus:debhelper:96.1877:Configuring debhelper (s390x) 168s pmstatus:debhelper:96.4809:Installed debhelper (s390x) 168s pmstatus:dh-golang:96.4809:Preparing to configure dh-golang (s390x) 168s pmstatus:dh-golang:96.7742:Configuring dh-golang (s390x) 168s pmstatus:dh-golang:97.0675:Installed dh-golang (s390x) 168s pmstatus:golang-github-prometheus-common-dev:97.0675:Preparing to configure golang-github-prometheus-common-dev (s390x) 168s pmstatus:golang-github-prometheus-common-dev:97.3607:Configuring golang-github-prometheus-common-dev (s390x) 168s pmstatus:golang-github-prometheus-common-dev:97.6540:Installed golang-github-prometheus-common-dev (s390x) 168s pmstatus:golang-github-prometheus-sigv4-dev:97.6540:Preparing to configure golang-github-prometheus-sigv4-dev (s390x) 168s pmstatus:golang-github-prometheus-sigv4-dev:97.9472:Configuring golang-github-prometheus-sigv4-dev (s390x) 168s pmstatus:golang-github-prometheus-sigv4-dev:98.2405:Installed golang-github-prometheus-sigv4-dev (s390x) 168s pmstatus:golang-github-prometheus-client-golang-dev:98.2405:Preparing to configure golang-github-prometheus-client-golang-dev (s390x) 168s pmstatus:golang-github-prometheus-client-golang-dev:98.5337:Configuring golang-github-prometheus-client-golang-dev (s390x) 168s pmstatus:golang-github-prometheus-client-golang-dev:98.8270:Installed golang-github-prometheus-client-golang-dev (s390x) 168s pmstatus:golang-github-mwitkow-go-conntrack-dev:98.8270:Preparing to configure golang-github-mwitkow-go-conntrack-dev (s390x) 168s pmstatus:golang-github-mwitkow-go-conntrack-dev:99.1202:Configuring golang-github-mwitkow-go-conntrack-dev (s390x) 168s pmstatus:golang-github-mwitkow-go-conntrack-dev:99.4135:Installed golang-github-mwitkow-go-conntrack-dev (s390x) 168s 168s autopkgtest: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 168s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s 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', 'prometheus-nextcloud-exporter, debhelper-compat (= 13), dh-golang, golang-any, golang-github-google-go-cmp-dev, golang-github-spf13-pflag-dev, golang-logrus-dev, golang-prometheus-client-dev, golang-yaml.v2-dev, po-debconf, build-essential, dh-golang'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 169s Reading package lists... 169s Building dependency tree... 169s Reading state information... 169s Starting pkgProblemResolver with broken count: 0 169s Starting 2 pkgProblemResolver with broken count: 0 169s Done 170s 0 upgraded, 0 newly installed, 0 to remove and 74 not upgraded. 170s 1 not fully installed or removed. 170s After this operation, 0 B of additional disk space will be used. 170s Setting up prometheus-nextcloud-exporter (0.8.0-1) ... 170s chown: invalid group: ‘root:prometheus’ 170s dpkg: error processing package prometheus-nextcloud-exporter (--configure): 170s installed prometheus-nextcloud-exporter package post-installation script subprocess returned error exit status 1 170s Errors were encountered while processing: 170s prometheus-nextcloud-exporter 170s E: Sub-process /usr/bin/dpkg returned an error code (1) 170s E: Failed to process build dependencies 170s dh-golang-autopkgtest FAIL badpkg 170s blame: prometheus-nextcloud-exporter 170s badpkg: Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 170s autopkgtest: DBG: testbed command exited with code 100 170s autopkgtest: DBG: apt-get satisfy failed; status-fd: 170s pmstatus:dpkg-exec:0.0000:Running dpkg 170s pmstatus:prometheus-nextcloud-exporter:0.0000:Preparing to configure prometheus-nextcloud-exporter (s390x) 170s pmstatus:prometheus-nextcloud-exporter:33.3333:Configuring prometheus-nextcloud-exporter (s390x) 170s pmerror:prometheus-nextcloud-exporter:33.3333:installed prometheus-nextcloud-exporter package post-installation script subprocess returned error exit status 1 170s 170s autopkgtest: DBG: BadPackageError Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 170s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 170s autopkgtest [04:34:11]: @@@@@@@@@@@@@@@@@@@@ summary 170s dh-golang-autopkgtest FAIL badpkg 170s blame: prometheus-nextcloud-exporter 170s badpkg: Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 170s autopkgtest: DBG: testbed stop 170s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.9dStwG 170s autopkgtest: DBG: sending command to testbed: close 187s autopkgtest: DBG: got reply from testbed: ok 187s autopkgtest: DBG: sending command to testbed: quit 187s nova [W] Using flock in prodstack6-s390x 187s flock: timeout while waiting to get lock 187s Creating nova instance adt-plucky-s390x-prometheus-nextcloud-exporter-20250219-043121-juju-7f2275-prod-proposed-migration-environment-15-8eb825b7-0b1b-462a-9775-258ec96aa797 from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 187s nova [W] Timed out waiting for 3fe93511-64a1-41c5-8419-d2249dbc673d to get deleted.