1s autopkgtest: DBG: testbed init 1s autopkgtest [21:55:04]: starting date and time: 2025-02-15 21:55:04+0000 1s autopkgtest [21:55:04]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 1s autopkgtest [21:55:04]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.rcloxmh6/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade courier-authlib --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-5.secgroup --name adt-plucky-s390x-courier-authlib-20250215-215502-juju-7f2275-prod-proposed-migration-environment-15-61f9d057-3e1b-45da-8bcf-5f8dbf0a1f17 --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/ 1s autopkgtest: DBG: got reply from testbed: ok 1s autopkgtest: DBG: testbed open, scratch=None 1s autopkgtest: DBG: sending command to testbed: open 113s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Ha08UK 113s autopkgtest: DBG: sending command to testbed: print-execute-command 113s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.0n8d6o2a/runcmd 113s autopkgtest: DBG: sending command to testbed: capabilities 113s autopkgtest: DBG: got reply from testbed: ok revert-full-system revert reboot suggested-normal-user=ubuntu isolation-machine root-on-testbed 113s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'revert', 'reboot', 'suggested-normal-user=ubuntu', 'isolation-machine', 'root-on-testbed', 'has_internet'] 113s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ha08UK'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Ha08UK/wrapper.sh 114s autopkgtest: DBG: got reply from testbed: ok 114s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ha08UK/wrapper.sh'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [21:56:57]: testbed dpkg architecture: s390x 114s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [21:56:57]: testbed apt version: 2.9.28 114s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed has eatmydata 115s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [21:56:58]: @@@@@@@@@@@@@@@@@@@@ test bed setup 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [21:56:58]: testbed release detected to be: None 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT source: Types: deb deb-src 115s URIs: http://ftpmaster.internal/ubuntu/ 115s Suites: plucky-proposed 115s Components: main restricted universe multiverse 115s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 115s 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 [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 115s Package: * 115s Pin: release plucky-proposed 115s Pin-Priority: 500 115s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [21:56:59]: updating testbed package index (apt update) 116s 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'] 116s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 116s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 116s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 116s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 116s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 116s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 116s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 117s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 117s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 117s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 117s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 117s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 117s Fetched 2073 kB in 1s (2166 kB/s) 117s Reading package lists... 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 118s Package: * 118s Pin: release plucky-proposed 118s Pin-Priority: 100 118s 118s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 118s Pin: release plucky-proposed 118s Pin-Priority: 995 118s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s 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.Ha08UK/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 118s autopkgtest: DBG: testbed command exited with code 0 118s 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'] 118s + lsb_release --codename --short 118s + RELEASE=plucky 118s + cat 118s + [ plucky != trusty ] 118s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s Calculating upgrade... 118s The following packages were automatically installed and are no longer required: 118s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 118s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 118s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 118s linux-tools-6.11.0-8-generic 118s Use 'sudo apt autoremove' to remove them. 118s The following packages will be upgraded: 118s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 119s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 119s Need to get 1155 kB of archives. 119s After this operation, 16.4 kB of additional disk space will be used. 119s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 119s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 119s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 119s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 119s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 119s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 119s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 119s Preconfiguring packages ... 119s Fetched 1155 kB in 1s (1794 kB/s) 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 ... 80969 files and directories currently installed.) 119s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 119s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 119s Setting up dash (0.5.12-12ubuntu1) ... 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 ... 80969 files and directories currently installed.) 119s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 119s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 120s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 120s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 120s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 120s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 120s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 120s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 120s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 120s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 120s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 120s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 120s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 120s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 120s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 120s Setting up libtasn1-6:s390x (4.20.0-2) ... 120s Processing triggers for libc-bin (2.40-4ubuntu1) ... 120s Processing triggers for man-db (2.13.0-1) ... 120s Processing triggers for debianutils (5.21) ... 120s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 120s + /usr/lib/apt/apt-helper analyze-pattern ?true 120s + uname+ -r 120s sed s/\./\\./g 120s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 120s + apt list ?obsolete 120s + tail -n+2 120s + cut -d/ -f1 120s + grep -v ^linux-.*6\.12\.0-15-generic.* 120s + true 120s + obsolete_pkgs= 120s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 120s Reading package lists... 121s Building dependency tree... 121s Reading state information... 121s The following packages will be REMOVED: 121s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 121s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 121s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 121s linux-tools-6.11.0-8-generic* 121s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 121s After this operation, 167 MB disk space will be freed. 121s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 121s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 121s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 121s Removing libpython3.12t64:s390x (3.12.9-1) ... 121s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 121s Removing libnsl2:s390x (1.3.0-3build3) ... 121s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 121s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 121s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 122s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 122s Processing triggers for libc-bin (2.40-4ubuntu1) ... 122s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 122s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 122s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 122s + grep -q trusty /etc/lsb-release 122s + [ ! -d /usr/share/doc/unattended-upgrades ] 122s + [ ! -d /usr/share/doc/lxd ] 122s + [ ! -d /usr/share/doc/lxd-client ] 122s + [ ! -d /usr/share/doc/snapd ] 122s + type iptables 122s + cat 122s + chmod 755 /etc/rc.local 122s + . /etc/rc.local 122s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 122s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 122s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 122s + uname -m 122s + [ s390x = ppc64le ] 122s + [ -d /run/systemd/system ] 122s + systemd-detect-virt --quiet --vm 122s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 122s + cat 122s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 122s + echo COMPRESS=lz4 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [21:57:05]: upgrading testbed (apt dist-upgrade and autopurge) 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', 'dist-upgrade'], 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... 123s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 123s Starting 2 pkgProblemResolver with broken count: 0 123s Done 123s Entering ResolveByKeep 123s 123s The following packages will be upgraded: 123s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 123s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s Need to get 10.7 MB of archives. 123s After this operation, 305 kB of additional disk space will be used. 123s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 123s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 124s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 124s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 124s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 124s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 124s Preconfiguring packages ... 124s Fetched 10.7 MB in 1s (12.0 MB/s) 124s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 124s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 124s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 124s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 124s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 124s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 124s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 124s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 124s Checking for services that may need to be restarted... 124s Checking init scripts... 124s Checking for services that may need to be restarted... 124s Checking init scripts... 125s Stopping some services possibly affected by the upgrade (will be restarted later): 125s cron: stopping...done. 125s 125s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 125s Setting up libc6:s390x (2.41-1ubuntu1) ... 125s Checking for services that may need to be restarted... 125s Checking init scripts... 125s Restarting services possibly affected by the upgrade: 125s cron: restarting...done. 125s 125s Services restarted successfully. 125s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 125s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 125s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 125s Setting up libc-bin (2.41-1ubuntu1) ... 125s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 125s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 125s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 125s Setting up iproute2 (6.13.0-1ubuntu1) ... 125s Setting up locales (2.41-1ubuntu1) ... 125s Installing new version of config file /etc/locale.alias ... 125s Generating locales (this might take a while)... 126s en_US.UTF-8... done 126s Generation complete. 126s Setting up libc-dev-bin (2.41-1ubuntu1) ... 126s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 126s Processing triggers for man-db (2.13.0-1) ... 127s Processing triggers for systemd (257.2-3ubuntu1) ... 128s autopkgtest: DBG: testbed command exited with code 0 128s 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'] 128s Reading package lists... 128s Building dependency tree... 128s Reading state information... 128s Starting pkgProblemResolver with broken count: 0 128s Starting 2 pkgProblemResolver with broken count: 0 128s Done 128s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 128s autopkgtest: DBG: testbed command exited with code 0 128s 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.Ha08UK/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 1 129s autopkgtest [21:57:12]: rebooting testbed after setup commands that affected boot 129s autopkgtest: DBG: sending command to testbed: reboot 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ha08UK'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Ha08UK/autopkgtest-reboot 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ha08UK'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Ha08UK/autopkgtest-reboot-prepare 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest [21:57:30]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 147s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Ha08UK/testbed-packages"], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ha08UK/testbed-packages /tmp/autopkgtest-work.rcloxmh6/out/testbed-packages 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ha08UK'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Ha08UK/autopkgtest-reboot 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ha08UK'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Ha08UK/autopkgtest-reboot-prepare 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ha08UK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: Binaries: initialising 149s autopkgtest [21:57:32]: @@@@@@@@@@@@@@@@@@@@ apt-source courier-authlib 149s autopkgtest: DBG: blame += courier-authlib 149s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 149s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'courier-authlib'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authlib-postgresql$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authlib-postgresql=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authdaemon$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authdaemon=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authlib-dev$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authlib-dev=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authlib-sqlite$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authlib-sqlite=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authlib-mysql$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authlib-mysql=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authlib-pipe$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authlib-pipe=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authlib$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authlib=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authlib-ldap$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authlib-ldap=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^courier-authlib-userdb$'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'courier-authlib-userdb=0.71.4-1build4'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: install_deps: deps_new=[] 153s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s 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.Ha08UK/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source courier-authlib=0.71.4-1build4 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 courier-authlib_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 153s + cd / 153s + mktemp -d /tmp/autopkgtest.Ha08UK/build.XXX 153s + builddir=/tmp/autopkgtest.Ha08UK/build.RSq 153s + cd /tmp/autopkgtest.Ha08UK/build.RSq 153s + apt-get source -d -q --only-source courier-authlib=0.71.4-1build4 154s + OUT=Reading package lists... 154s NOTICE: 'courier-authlib' packaging is maintained in the 'Git' version control system at: 154s https://salsa.debian.org/debian/courier-authlib.git 154s Please use: 154s git clone https://salsa.debian.org/debian/courier-authlib.git 154s to retrieve the latest (possibly unreleased) updates to the package. 154s Need to get 2232 kB of source archives. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (dsc) [2925 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (tar) [2211 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (diff) [18.5 kB] 154s Fetched 2232 kB in 1s (3199 kB/s) 154s Download complete and in download only mode 154s + [ -n ] 154s + echo Reading package lists... 154s NOTICE: 'courier-authlib' packaging is maintained in the 'Git' version control system at: 154s https://salsa.debian.org/debian/courier-authlib.git 154s Please use: 154s git clone https://salsa.debian.org/debian/courier-authlib.git 154s to retrieve the latest (possibly unreleased) updates to the package. 154s Need to get 2232 kB of source archives. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (dsc) [2925 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (tar) [2211 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (diff) [18.5 kB] 154s Fetched 2232 kB in 1s (3199 kB/s) 154s Download complete and in download only mode 154s + grep ^Get: 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (dsc) [2925 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (tar) [2211 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe courier-authlib 0.71.4-1build4 (diff) [18.5 kB] 154s + dpkg-source -x courier-authlib_0.71.4-1build4.dsc src 154s gpgv: Signature made Thu Feb 6 13:55:23 2025 UTC 154s gpgv: using RSA key 63EEFC3DE14D5146CE7F24BF34B8AD7D9529E793 154s gpgv: issuer "lena.voytek@canonical.com" 154s gpgv: Can't check signature: No public key 154s dpkg-source: warning: cannot verify inline signature for ./courier-authlib_0.71.4-1build4.dsc: no acceptable signature found 155s + chmod -R a+rX . 155s + cd src/. 155s + pwd 155s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest [21:57:38]: testing package courier-authlib version 0.71.4-1build4 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ha08UK/build.RSq/src/debian/ /tmp/autopkgtest-work.rcloxmh6/out/pkg/debian/ 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: processing dependency courier-authdaemon 155s autopkgtest: DBG: marked alternatives ['courier-authdaemon'] as a synthesised dependency 155s autopkgtest: DBG: processing dependency bsdmainutils 155s autopkgtest: DBG: Test defined: name pam path debian/tests/pam command "None" restrictions ['needs-root'] features [] depends ['courier-authdaemon', 'bsdmainutils'] 155s autopkgtest [21:57:38]: build not needed 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ha08UK/build.RSq/src/ /tmp/autopkgtest-work.rcloxmh6/out/tests-tree/ 156s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: processing dependency courier-authdaemon 157s autopkgtest: DBG: marked alternatives ['courier-authdaemon'] as a synthesised dependency 157s autopkgtest: DBG: processing dependency bsdmainutils 157s autopkgtest: DBG: Test defined: name pam path debian/tests/pam command "None" restrictions ['needs-root'] features [] depends ['courier-authdaemon', 'bsdmainutils'] 157s autopkgtest [21:57:40]: test pam: preparing testbed 157s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['courier-authdaemon', 'bsdmainutils'] 157s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 157s autopkgtest: DBG: install_deps: deps_new=['courier-authdaemon', 'bsdmainutils'] 157s autopkgtest: DBG: install-deps: satisfying courier-authdaemon, bsdmainutils 157s autopkgtest: DBG: can use apt-get on testbed: True 157s 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', 'courier-authdaemon, bsdmainutils'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 157s Reading package lists... 157s Building dependency tree... 157s Reading state information... 157s Starting pkgProblemResolver with broken count: 0 157s Starting 2 pkgProblemResolver with broken count: 0 157s Done 158s The following NEW packages will be installed: 158s bsdmainutils courier-authdaemon courier-authlib libltdl7 ncal 158s 0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded. 158s Need to get 172 kB of archives. 158s After this operation, 912 kB of additional disk space will be used. 158s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x ncal s390x 12.1.8 [21.6 kB] 158s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x bsdmainutils all 12.1.8 [3176 B] 158s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 158s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x courier-authlib s390x 0.71.4-1build4 [76.5 kB] 158s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x courier-authdaemon s390x 0.71.4-1build4 [27.0 kB] 158s Fetched 172 kB in 0s (408 kB/s) 158s Selecting previously unselected package ncal. 158s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 158s Preparing to unpack .../archives/ncal_12.1.8_s390x.deb ... 158s Unpacking ncal (12.1.8) ... 158s Selecting previously unselected package bsdmainutils. 158s Preparing to unpack .../bsdmainutils_12.1.8_all.deb ... 158s Unpacking bsdmainutils (12.1.8) ... 158s Selecting previously unselected package libltdl7:s390x. 158s Preparing to unpack .../libltdl7_2.5.4-3build1_s390x.deb ... 158s Unpacking libltdl7:s390x (2.5.4-3build1) ... 158s Selecting previously unselected package courier-authlib. 158s Preparing to unpack .../courier-authlib_0.71.4-1build4_s390x.deb ... 158s Unpacking courier-authlib (0.71.4-1build4) ... 158s Selecting previously unselected package courier-authdaemon. 158s Preparing to unpack .../courier-authdaemon_0.71.4-1build4_s390x.deb ... 158s Unpacking courier-authdaemon (0.71.4-1build4) ... 159s Setting up ncal (12.1.8) ... 159s Setting up bsdmainutils (12.1.8) ... 159s Setting up libltdl7:s390x (2.5.4-3build1) ... 159s Setting up courier-authlib (0.71.4-1build4) ... 159s Setting up courier-authdaemon (0.71.4-1build4) ... 159s Created symlink '/etc/systemd/system/multi-user.target.wants/courier-authdaemon.service' → '/usr/lib/systemd/system/courier-authdaemon.service'. 159s Processing triggers for man-db (2.13.0-1) ... 160s Processing triggers for libc-bin (2.41-1ubuntu1) ... 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'courier-authdaemon'], kind short, sout pipe, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Ha08UK/pam-packages.all"], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ha08UK/pam-packages.all /tmp/autopkgtest-work.rcloxmh6/out/pam-packages.all 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Ha08UK/build.RSq/src'], kind short, sout raw, serr raw, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.Ha08UK/build.RSq/src already exists 161s autopkgtest [21:57:44]: test pam: [----------------------- 161s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.Ha08UK/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Ha08UK/pam-artifacts --chdir=/tmp/autopkgtest.Ha08UK/build.RSq/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.Ha08UK/pam-stderr --stdout=/tmp/autopkgtest.Ha08UK/pam-stdout --tmp=/tmp/autopkgtest.Ha08UK/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.Ha08UK/build.RSq/src/debian/tests/pam -- /tmp/autopkgtest.Ha08UK/build.RSq/src/debian/tests/pam"], kind test, sout raw, serr raw, env [] 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Ha08UK/pam-artifacts 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: changing to directory: /tmp/autopkgtest.Ha08UK/build.RSq/src 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: setting environment: LANG=C.UTF-8 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LANGUAGE 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_ADDRESS 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_ALL 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_COLLATE 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_CTYPE 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_IDENTIFICATION 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_MEASUREMENT 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_MESSAGES 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_MONETARY 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_NAME 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_NUMERIC 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_PAPER 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_TELEPHONE 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: unsetting environment: LC_TIME 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: pretending to be a login shell 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: will write standard error to /tmp/autopkgtest.Ha08UK/pam-stderr 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: will write stdout to /tmp/autopkgtest.Ha08UK/pam-stdout 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Ha08UK/autopkgtest_tmp 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: marking as executable: /tmp/autopkgtest.Ha08UK/build.RSq/src/debian/tests/pam 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: command to run: /tmp/autopkgtest.Ha08UK/build.RSq/src/debian/tests/pam 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: copying /tmp/tmp.PFAnrl67oz/out to stdout and file: /tmp/autopkgtest.Ha08UK/pam-stdout 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: copying /tmp/tmp.PFAnrl67oz/err to standard error and file: /tmp/autopkgtest.Ha08UK/pam-stdout 161s /tmp/autopkgtest.Ha08UK/wrapper.sh: writing script pid 1701 to /tmp/autopkgtest_script_pid 161s == backup config files... 161s == creating test users... 161s == starting authdameon... 161s == check enumeration... 161s checking for alice: ok 161s checking for bob: ok 161s checking for carol: ok 161s == test completed 161s == dump... 161s ===== BEGIN /etc/courier/authdaemonrc ===== 161s ##VERSION: $Id: 7b218a8185f424046f3ef3322a37443983e443e3-20210515150130$ 161s # 161s # Copyright 2000-2005 Double Precision, Inc. See COPYING for 161s # distribution information. 161s # 161s # authdaemonrc created from authdaemonrc.dist by sysconftool 161s # 161s # Do not alter lines that begin with ##, they are used when upgrading 161s # this configuration. 161s # 161s # This file configures authdaemond, the resident authentication daemon. 161s # 161s # Comments in this file are ignored. Although this file is intended to 161s # be sourced as a shell script, authdaemond parses it manually, so 161s # the acceptable syntax is a bit limited. Multiline variable contents, 161s # with the \ continuation character, are not allowed. Everything must 161s # fit on one line. Do not use any additional whitespace for indentation, 161s # or anything else. 161s 161s ##NAME: authmodulelist:3 161s # 161s # The authentication modules that are linked into authdaemond. The 161s # default list is installed. You may selectively disable modules simply 161s # by removing them from the following list. The available modules you 161s # can use are: authuserdb authpam authpgsql authldap authmysql authsqlite authcustom authpipe 161s 161s authmodulelist="authpam" 161s 161s ##NAME: authmodulelistorig:4 161s # 161s # This setting is used by Courier's webadmin module, and should be left 161s # alone 161s 161s authmodulelistorig="authuserdb authpam authpgsql authldap authmysql authsqlite authcustom authpipe" 161s 161s ##NAME: daemons:0 161s # 161s # The number of daemon processes that are started. authdaemon is typically 161s # installed where authentication modules are relatively expensive: such 161s # as authldap, or authmysql, so it's better to have a number of them running. 161s # PLEASE NOTE: Some platforms may experience a problem if there's more than 161s # one daemon. Specifically, SystemV derived platforms that use TLI with 161s # socket emulation. I'm suspicious of TLI's ability to handle multiple 161s # processes accepting connections on the same filesystem domain socket. 161s # 161s # You may need to increase daemons if as your system load increases. Symptoms 161s # include sporadic authentication failures. If you start getting 161s # authentication failures, increase daemons. However, the default of 5 161s # SHOULD be sufficient. Bumping up daemon count is only a short-term 161s # solution. The permanent solution is to add more resources: RAM, faster 161s # disks, faster CPUs... 161s 161s daemons=5 161s 161s ##NAME: authdaemonvar:2 161s # 161s # authdaemonvar is here, but is not used directly by authdaemond. It's 161s # used by various configuration and build scripts, so don't touch it! 161s 161s authdaemonvar=/run/courier/authdaemon 161s 161s ##NAME: DEBUG_LOGIN:0 161s # 161s # Dump additional diagnostics to syslog 161s # 161s # DEBUG_LOGIN=0 - turn off debugging 161s # DEBUG_LOGIN=1 - turn on debugging 161s # DEBUG_LOGIN=2 - turn on debugging + log passwords too 161s # 161s # ** YES ** - DEBUG_LOGIN=2 places passwords into syslog. 161s # 161s # Note that most information is sent to syslog at level 'debug', so 161s # you may need to modify your /etc/syslog.conf to be able to see it. 161s 161s DEBUG_LOGIN=0 161s 161s ##NAME: DEFAULTOPTIONS:0 161s # 161s # A comma-separated list of option=value pairs. Each option is applied 161s # to an account if the account does not have its own specific value for 161s # that option. So for example, you can set 161s # DEFAULTOPTIONS="disablewebmail=1,disableimap=1" 161s # and then enable webmail and/or imap on individual accounts by setting 161s # disablewebmail=0 and/or disableimap=0 on the account. 161s 161s DEFAULTOPTIONS="" 161s 161s ##NAME: LOGGEROPTS:0 161s # 161s # courierlogger(1) options, e.g. to set syslog facility 161s # 161s 161s LOGGEROPTS="" 161s 161s ##NAME: LDAP_TLS_OPTIONS:0 161s # 161s # Options documented in ldap.conf(5) can be set here, prefixed with 'LDAP'. 161s # Examples: 161s # 161s #LDAPTLS_CACERT=/path/to/cacert.pem 161s #LDAPTLS_REQCERT=demand 161s #LDAPTLS_CERT=/path/to/clientcert.pem 161s #LDAPTLS_KEY=/path/to/clientkey.pem 161s ===== END /etc/courier/authdaemonrc ===== 161s ===== BEGIN /tmp/autopkgtest.Ha08UK/pam-artifacts/authenumerate.err ===== 161s ===== END /tmp/autopkgtest.Ha08UK/pam-artifacts/authenumerate.err ===== 161s ===== BEGIN /tmp/autopkgtest.Ha08UK/pam-artifacts/authenumerate.exitcode ===== 161s 0 161s ===== END /tmp/autopkgtest.Ha08UK/pam-artifacts/authenumerate.exitcode ===== 161s ===== BEGIN /tmp/autopkgtest.Ha08UK/pam-artifacts/authenumerate.out ===== 161s nobody 65534 65534 /nonexistent 161s systemd-network 998 998 / 161s systemd-timesync 996 996 / 161s dhcpcd 100 65534 /usr/lib/dhcpcd 161s messagebus 101 101 /nonexistent 161s systemd-resolve 991 991 / 161s syslog 102 102 /nonexistent 161s uuidd 103 104 /run/uuidd 161s sshd 104 65534 /run/sshd 161s pollinate 105 1 /var/cache/pollinate 161s tcpdump 106 109 /nonexistent 161s fwupd-refresh 990 990 /var/lib/fwupd 161s polkitd 989 989 / 161s ubuntu 1000 1000 /home/ubuntu 161s courier 107 110 /var/lib/courier 161s alice 1001 1001 /home/alice 161s bob 1002 1002 /home/bob 161s carol 1003 1003 /home/carol 161s ===== END /tmp/autopkgtest.Ha08UK/pam-artifacts/authenumerate.out ===== 161s == finish... 161s == dropping user alice 162s == dropping user bob 162s == dropping user carol 162s == restore config files... 162s == stopping service courier-authdaemon... 162s /tmp/autopkgtest.Ha08UK/wrapper.sh: checking for leaked background processes... 162s /tmp/autopkgtest.Ha08UK/wrapper.sh: waiting for tee/cat subprocesses... 162s /tmp/autopkgtest.Ha08UK/wrapper.sh: cleaning up... 162s /tmp/autopkgtest.Ha08UK/wrapper.sh: Exit status: 0 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest [21:57:45]: test pam: -----------------------] 162s autopkgtest: DBG: testbed executing test finished with exit status 0 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ha08UK/pam-stdout /tmp/autopkgtest-work.rcloxmh6/out/pam-stdout 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ha08UK/pam-stderr /tmp/autopkgtest-work.rcloxmh6/out/pam-stderr 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest [21:57:46]: test pam: - - - - - - - - - - results - - - - - - - - - - 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ha08UK/pam-artifacts/ /tmp/autopkgtest-work.rcloxmh6/out/artifacts/ 163s pam PASS 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Ha08UK/pam-artifacts', '/tmp/autopkgtest.Ha08UK/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 163s autopkgtest [21:57:46]: @@@@@@@@@@@@@@@@@@@@ summary 163s pam PASS 163s autopkgtest: DBG: testbed stop 163s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.Ha08UK 163s autopkgtest: DBG: sending command to testbed: close 181s autopkgtest: DBG: got reply from testbed: ok 181s autopkgtest: DBG: sending command to testbed: quit 181s nova [W] Using flock in prodstack6-s390x 181s Creating nova instance adt-plucky-s390x-courier-authlib-20250215-215502-juju-7f2275-prod-proposed-migration-environment-15-61f9d057-3e1b-45da-8bcf-5f8dbf0a1f17 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 181s nova [W] Timed out waiting for 35be9393-e511-4186-b8f5-8ec8437347be to get deleted.