0s autopkgtest: DBG: testbed init 0s autopkgtest [10:13:52]: starting date and time: 2025-02-11 10:13:52+0000 0s autopkgtest [10:13:52]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [10:13:52]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.jeiu1aap/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:git --apt-upgrade freedombox --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=git/1:2.48.1-0ubuntu1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-32.secgroup --name adt-plucky-s390x-freedombox-20250211-101352-juju-7f2275-prod-proposed-migration-environment-15-9182cf3e-683d-44dd-9c64-371d2f2bf2cc --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 100s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.K7EZkW 100s autopkgtest: DBG: sending command to testbed: print-execute-command 100s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.3bmw7264/runcmd 100s autopkgtest: DBG: sending command to testbed: capabilities 100s autopkgtest: DBG: got reply from testbed: ok reboot revert isolation-machine revert-full-system suggested-normal-user=ubuntu root-on-testbed 100s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert', 'isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 100s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.K7EZkW/wrapper.sh 100s autopkgtest: DBG: got reply from testbed: ok 100s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/wrapper.sh'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest [10:15:32]: testbed dpkg architecture: s390x 100s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest [10:15:32]: testbed apt version: 2.9.28 100s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed has eatmydata 101s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [10:15:33]: @@@@@@@@@@@@@@@@@@@@ test bed setup 101s 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 [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [10:15:33]: testbed release detected to be: None 101s 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 [] 101s autopkgtest: DBG: testbed command exited with code 0 101s 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 [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: adding APT source: Types: deb deb-src 101s URIs: http://ftpmaster.internal/ubuntu/ 101s Suites: plucky-proposed 101s Components: main restricted universe multiverse 101s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 101s 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 [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 101s Package: * 101s Pin: release plucky-proposed 101s Pin-Priority: 500 101s 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 [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [10:15:34]: updating testbed package index (apt update) 102s 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'] 102s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 102s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 102s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 102s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 102s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [844 kB] 103s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 103s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [62.8 kB] 103s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [79.0 kB] 103s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [740 kB] 103s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4652 B] 103s Fetched 1855 kB in 1s (1852 kB/s) 103s Reading package lists... 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 103s Package: * 103s Pin: release plucky-proposed 103s Pin-Priority: 100 103s 103s Package: src:git:any 103s Pin: release plucky-proposed 103s Pin-Priority: 995 103s 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:git:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s 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.K7EZkW/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s 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'] 104s + lsb_release --codename --short 104s + RELEASE=plucky 104s + cat 104s + [ plucky != trusty ] 104s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 104s Reading package lists... 104s Building dependency tree... 104s Reading state information... 104s Calculating upgrade... 104s The following packages were automatically installed and are no longer required: 104s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 104s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 104s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 104s linux-tools-6.11.0-8-generic 104s Use 'sudo apt autoremove' to remove them. 104s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 104s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 104s + /usr/lib/apt/apt-helper analyze-pattern ?true 104s + uname -r 104s + sed s/\./\\./g 104s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 104s + apt list ?obsolete 104s + tail -n+2 104s + cut -d/ -f1 104s + grep -v ^linux-.*6\.12\.0-15-generic.* 105s + true 105s + obsolete_pkgs= 105s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 105s Reading package lists... 105s Building dependency tree... 105s Reading state information... 105s The following packages will be REMOVED: 105s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 105s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 105s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 105s linux-tools-6.11.0-8-generic* 105s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 105s After this operation, 167 MB disk space will be freed. 105s (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.) 105s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 105s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 105s Removing libpython3.12t64:s390x (3.12.9-1) ... 105s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 105s Removing libnsl2:s390x (1.3.0-3build3) ... 105s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 105s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 105s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 107s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 107s Processing triggers for libc-bin (2.40-4ubuntu1) ... 107s (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.) 107s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 107s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 107s + grep -q trusty /etc/lsb-release 107s + [ ! -d /usr/share/doc/unattended-upgrades ] 107s + [ ! -d /usr/share/doc/lxd ] 107s + [ ! -d /usr/share/doc/lxd-client ] 107s + [ ! -d /usr/share/doc/snapd ] 107s + type iptables 107s + cat 107s + chmod 755 /etc/rc.local 107s + . /etc/rc.local 107s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 107s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 107s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 107s + uname -m 107s + [ s390x = ppc64le ] 107s + [ -d /run/systemd/system ] 107s + systemd-detect-virt --quiet --vm 107s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 107s + cat 107s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 107s + echo COMPRESS=lz4 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [10:15:39]: upgrading testbed (apt dist-upgrade and autopurge) 107s 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'] 107s Reading package lists... 107s Building dependency tree... 107s Reading state information... 107s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 107s Starting 2 pkgProblemResolver with broken count: 0 107s Done 108s Entering ResolveByKeep 108s 108s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 108s autopkgtest: DBG: testbed command exited with code 0 108s 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'] 108s Reading package lists... 108s Building dependency tree... 108s Reading state information... 108s Starting pkgProblemResolver with broken count: 0 108s Starting 2 pkgProblemResolver with broken count: 0 108s Done 109s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 109s autopkgtest: DBG: testbed command exited with code 0 109s 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.K7EZkW/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 109s autopkgtest: DBG: testbed command exited with code 1 109s autopkgtest [10:15:41]: rebooting testbed after setup commands that affected boot 109s autopkgtest: DBG: sending command to testbed: reboot 126s autopkgtest: DBG: got reply from testbed: ok 126s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 126s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.K7EZkW/autopkgtest-reboot 126s autopkgtest: DBG: got reply from testbed: ok 126s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare 127s autopkgtest: DBG: got reply from testbed: ok 127s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest [10:16:00]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 128s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.K7EZkW/testbed-packages"], kind short, sout raw, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/testbed-packages /tmp/autopkgtest-work.jeiu1aap/out/testbed-packages 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 129s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.K7EZkW/autopkgtest-reboot 129s autopkgtest: DBG: got reply from testbed: ok 129s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare 130s autopkgtest: DBG: got reply from testbed: ok 130s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: Binaries: initialising 131s autopkgtest [10:16:03]: @@@@@@@@@@@@@@@@@@@@ apt-source freedombox 131s autopkgtest: DBG: blame += freedombox 131s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 131s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'freedombox'], kind short, sout pipe, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^freedombox$'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'freedombox=25.2'], kind short, sout pipe, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^freedombox-doc-es$'], kind short, sout pipe, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'freedombox-doc-es=25.2'], kind short, sout pipe, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^freedombox-doc-en$'], kind short, sout pipe, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'freedombox-doc-en=25.2'], kind short, sout pipe, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: install_deps: deps_new=[] 132s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s 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.K7EZkW/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source freedombox=25.2 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 freedombox_*.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=git/1:2.48.1-0ubuntu1'] 133s + cd / 133s + mktemp -d /tmp/autopkgtest.K7EZkW/build.XXX 133s + builddir=/tmp/autopkgtest.K7EZkW/build.9H4 133s + cd /tmp/autopkgtest.K7EZkW/build.9H4 133s + apt-get source -d -q --only-source freedombox=25.2 136s + OUT=Reading package lists... 136s NOTICE: 'freedombox' packaging is maintained in the 'Git' version control system at: 136s https://salsa.debian.org/freedombox-team/freedombox.git 136s Please use: 136s git clone https://salsa.debian.org/freedombox-team/freedombox.git 136s to retrieve the latest (possibly unreleased) updates to the package. 136s Need to get 54.7 MB of source archives. 136s Get:1 http://ftpmaster.internal/ubuntu plucky/universe freedombox 25.2 (dsc) [2935 B] 136s Get:2 http://ftpmaster.internal/ubuntu plucky/universe freedombox 25.2 (tar) [54.7 MB] 136s Fetched 54.7 MB in 3s (18.0 MB/s) 136s Download complete and in download only mode 136s + [ -n ] 136s + echo Reading package lists... 136s NOTICE: 'freedombox' packaging is maintained in the 'Git' version control system at: 136s https://salsa.debian.org/freedombox-team/freedombox.git 136s Please use: 136s git clone https://salsa.debian.org/freedombox-team/freedombox.git 136s to retrieve the latest (possibly unreleased) updates to the package. 136s Need to get 54.7 MB of source archives. 136s Get:1 http://ftpmaster.internal/ubuntu plucky/universe freedombox 25.2 (dsc) [2935 B] 136s Get:2 http://ftpmaster.internal/ubuntu plucky/universe freedombox 25.2 (tar) [54.7 MB] 136s Fetched 54.7 MB in 3s (18.0 MB/s) 136s Download complete and in download only mode 136s + grep ^Get: 136s Get:1 http://ftpmaster.internal/ubuntu plucky/universe freedombox 25.2 (dsc) [2935 B] 136s Get:2 http://ftpmaster.internal/ubuntu plucky/universe freedombox 25.2 (tar) [54.7 MB] 136s + dpkg-source -x freedombox_25.2.dsc src 136s gpgv: Signature made Tue Jan 28 02:56:22 2025 UTC 136s gpgv: using RSA key 7D6ADB750F91085589484BE677C0C75E7B650808 136s gpgv: issuer "jvalleroy@mailbox.org" 136s gpgv: Can't check signature: No public key 136s dpkg-source: warning: cannot verify inline signature for ./freedombox_25.2.dsc: no acceptable signature found 139s + chmod -R a+rX . 139s + cd src/. 139s + pwd 139s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest [10:16:11]: testing package freedombox version 25.2 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/build.9H4/src/debian/ /tmp/autopkgtest-work.jeiu1aap/out/pkg/debian/ 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: processing dependency @ 139s autopkgtest: DBG: synthesised dependency freedombox 139s autopkgtest: DBG: synthesised dependency freedombox-doc-en 139s autopkgtest: DBG: synthesised dependency freedombox-doc-es 139s autopkgtest: DBG: Test defined: name command1 path None command "plinth --list-apps 2> /dev/null" restrictions ['breaks-testbed', 'needs-root'] features [] depends ['freedombox', 'freedombox-doc-en', 'freedombox-doc-es'] 139s autopkgtest: DBG: processing dependency git 139s autopkgtest: DBG: processing dependency python3-pytest 139s autopkgtest: DBG: processing dependency python3-pytest-cov 139s autopkgtest: DBG: processing dependency python3-pytest-django 139s autopkgtest: DBG: processing dependency python3-tomli 139s autopkgtest: DBG: processing dependency @ 139s autopkgtest: DBG: synthesised dependency freedombox 139s autopkgtest: DBG: synthesised dependency freedombox-doc-en 139s autopkgtest: DBG: synthesised dependency freedombox-doc-es 139s autopkgtest: DBG: Test defined: name command2 path None command "PYTHONPATH='/usr/lib/python3/dist-packages/' py.test-3 -p no:cacheprovider --cov=plinth --cov-report=html:debci/htmlcov --cov-report=term" restrictions ['breaks-testbed'] features [] depends ['git', 'python3-pytest', 'python3-pytest-cov', 'python3-pytest-django', 'python3-tomli', 'freedombox', 'freedombox-doc-en', 'freedombox-doc-es'] 139s autopkgtest [10:16:11]: build not needed 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/build.9H4/src/ /tmp/autopkgtest-work.jeiu1aap/out/tests-tree/ 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: processing dependency @ 157s autopkgtest: DBG: synthesised dependency freedombox 157s autopkgtest: DBG: synthesised dependency freedombox-doc-en 157s autopkgtest: DBG: synthesised dependency freedombox-doc-es 157s autopkgtest: DBG: Test defined: name command1 path None command "plinth --list-apps 2> /dev/null" restrictions ['breaks-testbed', 'needs-root'] features [] depends ['freedombox', 'freedombox-doc-en', 'freedombox-doc-es'] 157s autopkgtest: DBG: processing dependency git 157s autopkgtest: DBG: processing dependency python3-pytest 157s autopkgtest: DBG: processing dependency python3-pytest-cov 157s autopkgtest: DBG: processing dependency python3-pytest-django 157s autopkgtest: DBG: processing dependency python3-tomli 157s autopkgtest: DBG: processing dependency @ 157s autopkgtest: DBG: synthesised dependency freedombox 157s autopkgtest: DBG: synthesised dependency freedombox-doc-en 157s autopkgtest: DBG: synthesised dependency freedombox-doc-es 157s autopkgtest: DBG: Test defined: name command2 path None command "PYTHONPATH='/usr/lib/python3/dist-packages/' py.test-3 -p no:cacheprovider --cov=plinth --cov-report=html:debci/htmlcov --cov-report=term" restrictions ['breaks-testbed'] features [] depends ['git', 'python3-pytest', 'python3-pytest-cov', 'python3-pytest-django', 'python3-tomli', 'freedombox', 'freedombox-doc-en', 'freedombox-doc-es'] 157s autopkgtest [10:16:29]: test command1: preparing testbed 157s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['freedombox', 'freedombox-doc-en', 'freedombox-doc-es'] 157s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 157s autopkgtest: DBG: install_deps: deps_new=['freedombox', 'freedombox-doc-en', 'freedombox-doc-es'] 157s autopkgtest: DBG: install-deps: satisfying freedombox, freedombox-doc-en, freedombox-doc-es 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', 'freedombox, freedombox-doc-en, freedombox-doc-es'], 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 157s The following packages will be REMOVED: 157s ufw 157s The following NEW packages will be installed: 157s apache2 apache2-bin apache2-data apache2-utils augeas-lenses augeas-tools 157s avahi-daemon avahi-utils batctl bc borgbackup certbot cockpit cockpit-bridge 157s cockpit-system cockpit-ws dconf-gsettings-backend dconf-service debsecan 157s fail2ban firewalld flite fonts-fork-awesome fonts-lato freedombox 157s freedombox-doc-en freedombox-doc-es gettext gir1.2-nm-1.0 gir1.2-udisks-2.0 157s glib-networking glib-networking-common glib-networking-services 157s gsettings-desktop-schemas javascript-common ldap-utils ldapscripts 157s libapache2-mod-auth-pubtkt libapr1t64 libaprutil1-dbd-sqlite3 157s libaprutil1-ldap libaprutil1t64 libargon2-1 libasound2-data libasound2t64 157s libaugeas0 libavahi-client3 libavahi-common-data libavahi-common3 157s libavahi-core7 libbluetooth3 libboost-thread1.83.0 libbtrfs0t64 libcrack2 157s libcups2t64 libdaemon0 libdconf1 libdeflate0 libduktape207 libflite1 157s libfreetype6 libglib2.0-bin libgomp1 libgraphite2-3 libharfbuzz0b 157s libimagequant0 libintl-perl libjbig0 libjpeg-turbo8 libjpeg8 157s libjs-bootstrap5 liblcms2-2 libldb2 libltdl7 liblua5.4-0 libmodule-find-perl 157s libmodule-scandeps-perl libndp0 libnm0 libnorm1t64 libnsl2 libnss-ldapd 157s libodbc2 libopenjp2-7 libpam-ldapd libpgm-5.3-0t64 libproc-processtable-perl 157s libproxy1v5 libpwquality-common libpwquality-tools libpwquality1 157s libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 libraqm0 157s libsharpyuv0 libsnapper7t64 libsodium23 libsort-naturally-perl libtalloc2 157s libtdb1 libteamdctl0 libterm-readkey-perl libtevent0t64 libtiff6 157s libwbclient0 libwebp7 libwebpdemux2 libwebpmux3 libyajl2 libzmq5 needrestart 157s network-manager node-popper2 nslcd php-common php-fpm php8.3-cli 157s php8.3-common php8.3-fpm php8.3-opcache php8.3-readline polkitd 157s popularity-contest ppp pppoe python3-acme python3-argon2 python3-asgiref 157s python3-augeas python3-bootstrapform python3-certbot python3-cheroot 157s python3-cherrypy3 python3-configargparse python3-dateutil 157s python3-distro-info python3-django python3-django-axes 157s python3-django-bootstrapform python3-django-captcha python3-django-ipware 157s python3-django-ranged-response python3-django-stronghold python3-firewall 157s python3-jaraco.collections python3-josepy python3-msgpack python3-nftables 157s python3-packaging python3-pampy python3-parsedatetime python3-pexpect 157s python3-pil python3-portend python3-psutil python3-ptyprocess python3-pytz 157s python3-rfc3339 python3-ruamel.yaml python3-ruamel.yaml.clib 157s python3-sqlparse python3-tempora python3-tz python3-zc.lockfile samba-common 157s samba-common-bin samba-libs sgml-base slapd snapper sshfs sshpass ssl-cert 157s tdb-tools ttf-bitstream-vera unattended-upgrades uwsgi uwsgi-core 157s uwsgi-plugin-python3 xml-core zram-tools 158s 0 upgraded, 182 newly installed, 1 to remove and 0 not upgraded. 158s Need to get 151 MB of archives. 158s After this operation, 358 MB of additional disk space will be used. 158s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapr1t64 s390x 1.7.5-1 [114 kB] 158s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1t64 s390x 1.6.3-3ubuntu2 [98.4 kB] 158s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-dbd-sqlite3 s390x 1.6.3-3ubuntu2 [11.7 kB] 158s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-ldap s390x 1.6.3-3ubuntu2 [9064 B] 158s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 158s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-bin s390x 2.4.62-3ubuntu1 [1411 kB] 158s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-data all 2.4.62-3ubuntu1 [163 kB] 158s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-utils s390x 2.4.62-3ubuntu1 [102 kB] 158s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x apache2 s390x 2.4.62-3ubuntu1 [90.4 kB] 158s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 158s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x popularity-contest all 1.77ubuntu1 [58.3 kB] 158s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 158s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libargon2-1 s390x 0~20190702+dfsg-4build1 [54.1 kB] 158s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 158s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libodbc2 s390x 2.3.12-2ubuntu1 [163 kB] 158s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x slapd s390x 2.6.9+dfsg-1~exp2ubuntu1 [1615 kB] 158s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x nslcd s390x 0.9.13-1 [165 kB] 158s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 158s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 158s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 159s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x python3-distro-info all 1.13 [7798 B] 159s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x augeas-lenses all 1.14.1-1build2 [323 kB] 159s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libaugeas0 s390x 1.14.1-1build2 [180 kB] 159s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x augeas-tools s390x 1.14.1-1build2 [47.4 kB] 159s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 159s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 159s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-core7 s390x 0.8-14ubuntu1 [85.6 kB] 159s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libdaemon0 s390x 0.14-7.1ubuntu4 [13.0 kB] 159s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x avahi-daemon s390x 0.8-14ubuntu1 [66.3 kB] 159s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 159s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x avahi-utils s390x 0.8-14ubuntu1 [26.6 kB] 159s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x bc s390x 1.07.1-4 [90.2 kB] 159s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x python3-msgpack s390x 1.0.3-3build3 [117 kB] 159s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 159s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x borgbackup s390x 1.4.0-4build1 [901 kB] 159s Get:36 http://ftpmaster.internal/ubuntu plucky/universe s390x cockpit-bridge s390x 332-1 [381 kB] 159s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libduktape207 s390x 2.7.0+tests-0ubuntu3 [150 kB] 159s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libproxy1v5 s390x 0.5.9-1 [27.8 kB] 159s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking-common all 2.80.1-1 [6680 B] 159s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking-services s390x 2.80.1-1 [12.8 kB] 159s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 159s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 159s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 159s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x gsettings-desktop-schemas all 48~beta-1ubuntu1 [37.4 kB] 159s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking s390x 2.80.1-1 [65.5 kB] 159s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x cockpit-ws s390x 332-1 [892 kB] 159s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libpwquality-common all 1.4.5-4 [7714 B] 159s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libcrack2 s390x 2.9.6-5.2 [29.6 kB] 159s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libpwquality1 s390x 1.4.5-4 [14.6 kB] 159s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x libpwquality-tools s390x 1.4.5-4 [10.0 kB] 159s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x cockpit-system all 332-1 [3296 kB] 159s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x cockpit all 332-1 [19.2 kB] 159s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x debsecan all 0.4.20.1 [30.4 kB] 159s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x fail2ban all 1.1.0-7 [421 kB] 159s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libnm0 s390x 1.50.0-1ubuntu3 [487 kB] 159s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-nm-1.0 s390x 1.50.0-1ubuntu3 [86.0 kB] 159s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 159s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x polkitd s390x 126-2 [97.1 kB] 159s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-nftables s390x 1.1.0-2 [12.5 kB] 159s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-firewall all 2.3.0-1 [135 kB] 159s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x firewalld all 2.3.0-1 [399 kB] 159s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-fork-awesome all 1.2.0+ds1-1 [603 kB] 159s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-augeas s390x 1.2.0-1 [21.1 kB] 159s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cheroot all 10.0.1+ds1-3 [78.6 kB] 159s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jaraco.collections all 5.1.0-1 [12.7 kB] 159s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 159s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tempora all 5.7.0-2 [15.1 kB] 160s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-portend all 3.2.0-1 [7524 B] 160s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-zc.lockfile all 3.0.post1-1 [7852 B] 160s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cherrypy3 all 18.10.0-1 [211 kB] 160s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-asgiref all 3.8.1-1 [24.8 kB] 160s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlparse all 0.5.3-1 [32.9 kB] 160s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-django all 3:4.2.18-1 [2918 kB] 160s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-bootstrapform all 3.4-9 [7162 B] 160s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x ttf-bitstream-vera all 1.10-8.2 [244 kB] 160s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-ranged-response all 0.2.0-5 [5336 B] 160s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 160s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 160s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 160s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 160s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 160s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 160s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 160s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 160s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 160s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 160s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 160s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 160s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 160s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 160s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 160s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 160s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 160s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 160s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-captcha all 0.6.0-1 [24.4 kB] 160s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-stronghold all 0.4.0+debian-2 [10.7 kB] 160s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 160s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ruamel.yaml.clib s390x 0.2.12+ds-1 [201 kB] 160s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ruamel.yaml all 0.18.10+ds-1 [127 kB] 160s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x batctl s390x 2025.0-1 [83.5 kB] 160s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-josepy all 1.14.0-3 [22.2 kB] 160s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-rfc3339 all 2.0.1-1 [6382 B] 160s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 161s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 161s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-acme all 2.11.0-1 [48.7 kB] 161s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-configargparse all 1.7-2 [31.7 kB] 161s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-parsedatetime all 2.6-3 [32.8 kB] 161s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-certbot all 2.11.0-1 [267 kB] 161s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x certbot all 2.11.0-1 [91.1 kB] 161s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 161s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 161s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x libflite1 s390x 2.2-7 [13.6 MB] 162s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x flite s390x 2.2-7 [250 kB] 162s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-udisks-2.0 s390x 2.10.1-11ubuntu2 [32.3 kB] 162s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x ldap-utils s390x 2.6.9+dfsg-1~exp2ubuntu1 [165 kB] 162s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x ldapscripts all 2.0.8-2 [42.4 kB] 162s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x libapache2-mod-auth-pubtkt s390x 0.13-1build3 [35.0 kB] 162s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x libnss-ldapd s390x 0.9.13-1 [30.0 kB] 162s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libpam-ldapd s390x 0.9.13-1 [17.1 kB] 162s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libintl-perl all 1.33-1build4 [703 kB] 162s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libproc-processtable-perl s390x 0.636-1build4 [36.6 kB] 162s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libsort-naturally-perl all 1.03-4 [13.1 kB] 162s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libmodule-scandeps-perl all 1.37-1 [30.1 kB] 162s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libterm-readkey-perl s390x 2.38-2build5 [23.1 kB] 162s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libmodule-find-perl all 0.16-2 [10.7 kB] 162s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x needrestart all 3.6-8ubuntu7 [49.4 kB] 162s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libbluetooth3 s390x 5.79-1 [77.4 kB] 162s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libndp0 s390x 1.9-1 [13.2 kB] 162s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libteamdctl0 s390x 1.31-1build3 [12.1 kB] 162s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x network-manager s390x 1.50.0-1ubuntu3 [2411 kB] 163s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x php-common all 2:93ubuntu2 [13.9 kB] 163s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-common s390x 8.3.11-0ubuntu4 [745 kB] 163s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-opcache s390x 8.3.11-0ubuntu4 [78.0 kB] 163s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-readline s390x 8.3.11-0ubuntu4 [13.9 kB] 163s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 163s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-cli s390x 8.3.11-0ubuntu4 [1940 kB] 163s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.3-fpm s390x 8.3.11-0ubuntu4 [1951 kB] 163s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x php-fpm all 2:8.3+93ubuntu2 [4162 B] 163s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x samba-common all 2:4.20.4+dfsg-1ubuntu5 [68.2 kB] 163s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 163s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libtalloc2 s390x 2.4.2-2build1 [28.4 kB] 163s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libtdb1 s390x 1.4.12-1build1 [49.5 kB] 163s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libtevent0t64 s390x 0.16.1-3 [42.6 kB] 163s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libldb2 s390x 2:2.9.1+samba4.20.4+dfsg-1ubuntu5 [194 kB] 163s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x libwbclient0 s390x 2:4.20.4+dfsg-1ubuntu5 [75.5 kB] 163s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x samba-libs s390x 2:4.20.4+dfsg-1ubuntu5 [6354 kB] 163s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x samba-common-bin s390x 2:4.20.4+dfsg-1ubuntu5 [1332 kB] 163s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-thread1.83.0 s390x 1.83.0-4ubuntu2 [279 kB] 163s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libbtrfs0t64 s390x 6.12-1build1 [17.0 kB] 163s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x libsnapper7t64 s390x 0.10.6-1.2 [306 kB] 163s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x snapper s390x 0.10.6-1.2 [450 kB] 163s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x sshfs s390x 3.7.3-1.1build3 [46.7 kB] 163s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x sshpass s390x 1.10-0.1 [11.5 kB] 163s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x ssl-cert all 1.1.3ubuntu1 [18.7 kB] 163s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x tdb-tools s390x 1.4.12-1build1 [26.7 kB] 163s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x unattended-upgrades all 2.9.1+nmu4ubuntu1 [51.2 kB] 163s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x libyajl2 s390x 2.1.0-5build1 [22.2 kB] 164s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 164s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 164s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 164s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x uwsgi-core s390x 2.0.26-2ubuntu3 [603 kB] 164s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x uwsgi s390x 2.0.26-2ubuntu3 [22.7 kB] 164s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 164s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x uwsgi-plugin-python3 s390x 2.0.26-2ubuntu3 [82.1 kB] 164s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x zram-tools all 0.3.7-1 [6056 B] 164s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 164s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 164s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-bin s390x 2.83.3-2 [99.5 kB] 164s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x node-popper2 all 2.11.2-8 [106 kB] 164s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap5 all 5.3.3+dfsg-3 [382 kB] 164s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x ppp s390x 2.5.1-1+1 [367 kB] 164s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x pppoe s390x 4.0-1ubuntu1 [68.5 kB] 164s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-argon2 s390x 21.1.0-3 [21.3 kB] 164s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bootstrapform all 3.4-9 [1958 B] 164s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-ipware all 4.0.2-1 [12.0 kB] 164s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-axes all 7.0.1-0ubuntu1 [36.8 kB] 164s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pampy all 2.0.2-1 [12.2 kB] 164s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 164s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 164s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x freedombox all 25.2 [3938 kB] 164s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x freedombox-doc-en all 25.2 [41.5 MB] 167s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x freedombox-doc-es all 25.2 [39.9 MB] 170s Preconfiguring packages ... 170s Fetched 151 MB in 12s (12.9 MB/s) 170s (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.) 170s Removing ufw (0.36.2-9) ... 170s Skip stopping firewall: ufw (not enabled) 170s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 170s for fn in glob1(directory, "%s.*" % fname): 170s Selecting previously unselected package libapr1t64:s390x. 170s (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 ... 55772 files and directories currently installed.) 170s Preparing to unpack .../000-libapr1t64_1.7.5-1_s390x.deb ... 170s Unpacking libapr1t64:s390x (1.7.5-1) ... 170s Selecting previously unselected package libaprutil1t64:s390x. 170s Preparing to unpack .../001-libaprutil1t64_1.6.3-3ubuntu2_s390x.deb ... 170s Unpacking libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 170s Selecting previously unselected package libaprutil1-dbd-sqlite3:s390x. 170s Preparing to unpack .../002-libaprutil1-dbd-sqlite3_1.6.3-3ubuntu2_s390x.deb ... 170s Unpacking libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 170s Selecting previously unselected package libaprutil1-ldap:s390x. 170s Preparing to unpack .../003-libaprutil1-ldap_1.6.3-3ubuntu2_s390x.deb ... 170s Unpacking libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 170s Selecting previously unselected package liblua5.4-0:s390x. 170s Preparing to unpack .../004-liblua5.4-0_5.4.7-1_s390x.deb ... 170s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 170s Selecting previously unselected package apache2-bin. 170s Preparing to unpack .../005-apache2-bin_2.4.62-3ubuntu1_s390x.deb ... 170s Unpacking apache2-bin (2.4.62-3ubuntu1) ... 171s Selecting previously unselected package apache2-data. 171s Preparing to unpack .../006-apache2-data_2.4.62-3ubuntu1_all.deb ... 171s Unpacking apache2-data (2.4.62-3ubuntu1) ... 171s Selecting previously unselected package apache2-utils. 171s Preparing to unpack .../007-apache2-utils_2.4.62-3ubuntu1_s390x.deb ... 171s Unpacking apache2-utils (2.4.62-3ubuntu1) ... 171s Selecting previously unselected package apache2. 171s Preparing to unpack .../008-apache2_2.4.62-3ubuntu1_s390x.deb ... 171s Unpacking apache2 (2.4.62-3ubuntu1) ... 171s Selecting previously unselected package fonts-lato. 171s Preparing to unpack .../009-fonts-lato_2.015-1_all.deb ... 171s Unpacking fonts-lato (2.015-1) ... 171s Selecting previously unselected package popularity-contest. 171s Preparing to unpack .../010-popularity-contest_1.77ubuntu1_all.deb ... 171s Unpacking popularity-contest (1.77ubuntu1) ... 171s Selecting previously unselected package sgml-base. 171s Preparing to unpack .../011-sgml-base_1.31_all.deb ... 171s Unpacking sgml-base (1.31) ... 171s Selecting previously unselected package libargon2-1:s390x. 171s Preparing to unpack .../012-libargon2-1_0~20190702+dfsg-4build1_s390x.deb ... 171s Unpacking libargon2-1:s390x (0~20190702+dfsg-4build1) ... 171s Selecting previously unselected package libltdl7:s390x. 171s Preparing to unpack .../013-libltdl7_2.5.4-3build1_s390x.deb ... 171s Unpacking libltdl7:s390x (2.5.4-3build1) ... 171s Selecting previously unselected package libodbc2:s390x. 171s Preparing to unpack .../014-libodbc2_2.3.12-2ubuntu1_s390x.deb ... 171s Unpacking libodbc2:s390x (2.3.12-2ubuntu1) ... 171s Selecting previously unselected package slapd. 171s Preparing to unpack .../015-slapd_2.6.9+dfsg-1~exp2ubuntu1_s390x.deb ... 171s Unpacking slapd (2.6.9+dfsg-1~exp2ubuntu1) ... 171s Selecting previously unselected package nslcd. 171s Preparing to unpack .../016-nslcd_0.9.13-1_s390x.deb ... 171s Unpacking nslcd (0.9.13-1) ... 171s Selecting previously unselected package libnsl2:s390x. 171s Preparing to unpack .../017-libnsl2_1.3.0-3build3_s390x.deb ... 171s Unpacking libnsl2:s390x (1.3.0-3build3) ... 171s Selecting previously unselected package libpython3.12-minimal:s390x. 171s Preparing to unpack .../018-libpython3.12-minimal_3.12.9-1_s390x.deb ... 171s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 171s Selecting previously unselected package libpython3.12-stdlib:s390x. 171s Preparing to unpack .../019-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 171s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 171s Selecting previously unselected package python3-distro-info. 171s Preparing to unpack .../020-python3-distro-info_1.13_all.deb ... 171s Unpacking python3-distro-info (1.13) ... 171s Selecting previously unselected package augeas-lenses. 171s Preparing to unpack .../021-augeas-lenses_1.14.1-1build2_all.deb ... 171s Unpacking augeas-lenses (1.14.1-1build2) ... 171s Selecting previously unselected package libaugeas0:s390x. 171s Preparing to unpack .../022-libaugeas0_1.14.1-1build2_s390x.deb ... 171s Unpacking libaugeas0:s390x (1.14.1-1build2) ... 171s Selecting previously unselected package augeas-tools. 171s Preparing to unpack .../023-augeas-tools_1.14.1-1build2_s390x.deb ... 171s Unpacking augeas-tools (1.14.1-1build2) ... 171s Selecting previously unselected package libavahi-common-data:s390x. 171s Preparing to unpack .../024-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 171s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 171s Selecting previously unselected package libavahi-common3:s390x. 171s Preparing to unpack .../025-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 171s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 171s Selecting previously unselected package libavahi-core7:s390x. 171s Preparing to unpack .../026-libavahi-core7_0.8-14ubuntu1_s390x.deb ... 171s Unpacking libavahi-core7:s390x (0.8-14ubuntu1) ... 171s Selecting previously unselected package libdaemon0:s390x. 171s Preparing to unpack .../027-libdaemon0_0.14-7.1ubuntu4_s390x.deb ... 171s Unpacking libdaemon0:s390x (0.14-7.1ubuntu4) ... 171s Selecting previously unselected package avahi-daemon. 171s Preparing to unpack .../028-avahi-daemon_0.8-14ubuntu1_s390x.deb ... 171s Unpacking avahi-daemon (0.8-14ubuntu1) ... 171s Selecting previously unselected package libavahi-client3:s390x. 171s Preparing to unpack .../029-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 171s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 171s Selecting previously unselected package avahi-utils. 171s Preparing to unpack .../030-avahi-utils_0.8-14ubuntu1_s390x.deb ... 171s Unpacking avahi-utils (0.8-14ubuntu1) ... 171s Selecting previously unselected package bc. 171s Preparing to unpack .../031-bc_1.07.1-4_s390x.deb ... 171s Unpacking bc (1.07.1-4) ... 171s Selecting previously unselected package python3-msgpack. 171s Preparing to unpack .../032-python3-msgpack_1.0.3-3build3_s390x.deb ... 171s Unpacking python3-msgpack (1.0.3-3build3) ... 171s Selecting previously unselected package python3-packaging. 171s Preparing to unpack .../033-python3-packaging_24.2-1_all.deb ... 171s Unpacking python3-packaging (24.2-1) ... 171s Selecting previously unselected package borgbackup. 171s Preparing to unpack .../034-borgbackup_1.4.0-4build1_s390x.deb ... 171s Unpacking borgbackup (1.4.0-4build1) ... 171s Selecting previously unselected package cockpit-bridge. 171s Preparing to unpack .../035-cockpit-bridge_332-1_s390x.deb ... 171s Unpacking cockpit-bridge (332-1) ... 171s Selecting previously unselected package libduktape207:s390x. 171s Preparing to unpack .../036-libduktape207_2.7.0+tests-0ubuntu3_s390x.deb ... 171s Unpacking libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 171s Selecting previously unselected package libproxy1v5:s390x. 171s Preparing to unpack .../037-libproxy1v5_0.5.9-1_s390x.deb ... 171s Unpacking libproxy1v5:s390x (0.5.9-1) ... 171s Selecting previously unselected package glib-networking-common. 171s Preparing to unpack .../038-glib-networking-common_2.80.1-1_all.deb ... 171s Unpacking glib-networking-common (2.80.1-1) ... 171s Selecting previously unselected package glib-networking-services. 171s Preparing to unpack .../039-glib-networking-services_2.80.1-1_s390x.deb ... 171s Unpacking glib-networking-services (2.80.1-1) ... 171s Selecting previously unselected package libdconf1:s390x. 171s Preparing to unpack .../040-libdconf1_0.40.0-5_s390x.deb ... 171s Unpacking libdconf1:s390x (0.40.0-5) ... 171s Selecting previously unselected package dconf-service. 171s Preparing to unpack .../041-dconf-service_0.40.0-5_s390x.deb ... 171s Unpacking dconf-service (0.40.0-5) ... 171s Selecting previously unselected package dconf-gsettings-backend:s390x. 171s Preparing to unpack .../042-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 171s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 171s Selecting previously unselected package gsettings-desktop-schemas. 171s Preparing to unpack .../043-gsettings-desktop-schemas_48~beta-1ubuntu1_all.deb ... 171s Unpacking gsettings-desktop-schemas (48~beta-1ubuntu1) ... 171s Selecting previously unselected package glib-networking:s390x. 171s Preparing to unpack .../044-glib-networking_2.80.1-1_s390x.deb ... 171s Unpacking glib-networking:s390x (2.80.1-1) ... 172s Selecting previously unselected package cockpit-ws. 172s Preparing to unpack .../045-cockpit-ws_332-1_s390x.deb ... 172s Unpacking cockpit-ws (332-1) ... 172s Selecting previously unselected package libpwquality-common. 172s Preparing to unpack .../046-libpwquality-common_1.4.5-4_all.deb ... 172s Unpacking libpwquality-common (1.4.5-4) ... 172s Selecting previously unselected package libcrack2:s390x. 172s Preparing to unpack .../047-libcrack2_2.9.6-5.2_s390x.deb ... 172s Unpacking libcrack2:s390x (2.9.6-5.2) ... 172s Selecting previously unselected package libpwquality1:s390x. 172s Preparing to unpack .../048-libpwquality1_1.4.5-4_s390x.deb ... 172s Unpacking libpwquality1:s390x (1.4.5-4) ... 172s Selecting previously unselected package libpwquality-tools. 172s Preparing to unpack .../049-libpwquality-tools_1.4.5-4_s390x.deb ... 172s Unpacking libpwquality-tools (1.4.5-4) ... 172s Selecting previously unselected package cockpit-system. 172s Preparing to unpack .../050-cockpit-system_332-1_all.deb ... 172s Unpacking cockpit-system (332-1) ... 172s Selecting previously unselected package cockpit. 172s Preparing to unpack .../051-cockpit_332-1_all.deb ... 172s Unpacking cockpit (332-1) ... 172s Selecting previously unselected package debsecan. 172s Preparing to unpack .../052-debsecan_0.4.20.1_all.deb ... 172s Unpacking debsecan (0.4.20.1) ... 172s Selecting previously unselected package fail2ban. 172s Preparing to unpack .../053-fail2ban_1.1.0-7_all.deb ... 172s Unpacking fail2ban (1.1.0-7) ... 172s Selecting previously unselected package libnm0:s390x. 172s Preparing to unpack .../054-libnm0_1.50.0-1ubuntu3_s390x.deb ... 172s Unpacking libnm0:s390x (1.50.0-1ubuntu3) ... 172s Selecting previously unselected package gir1.2-nm-1.0:s390x. 172s Preparing to unpack .../055-gir1.2-nm-1.0_1.50.0-1ubuntu3_s390x.deb ... 172s Unpacking gir1.2-nm-1.0:s390x (1.50.0-1ubuntu3) ... 172s Selecting previously unselected package xml-core. 172s Preparing to unpack .../056-xml-core_0.19_all.deb ... 172s Unpacking xml-core (0.19) ... 172s Selecting previously unselected package polkitd. 172s Preparing to unpack .../057-polkitd_126-2_s390x.deb ... 172s Unpacking polkitd (126-2) ... 172s Selecting previously unselected package python3-nftables. 172s Preparing to unpack .../058-python3-nftables_1.1.0-2_s390x.deb ... 172s Unpacking python3-nftables (1.1.0-2) ... 172s Selecting previously unselected package python3-firewall. 172s Preparing to unpack .../059-python3-firewall_2.3.0-1_all.deb ... 172s Unpacking python3-firewall (2.3.0-1) ... 172s Selecting previously unselected package firewalld. 172s Preparing to unpack .../060-firewalld_2.3.0-1_all.deb ... 172s Unpacking firewalld (2.3.0-1) ... 172s Selecting previously unselected package fonts-fork-awesome. 172s Preparing to unpack .../061-fonts-fork-awesome_1.2.0+ds1-1_all.deb ... 172s Unpacking fonts-fork-awesome (1.2.0+ds1-1) ... 172s Selecting previously unselected package python3-augeas. 172s Preparing to unpack .../062-python3-augeas_1.2.0-1_s390x.deb ... 172s Unpacking python3-augeas (1.2.0-1) ... 172s Selecting previously unselected package python3-cheroot. 172s Preparing to unpack .../063-python3-cheroot_10.0.1+ds1-3_all.deb ... 172s Unpacking python3-cheroot (10.0.1+ds1-3) ... 172s Selecting previously unselected package python3-jaraco.collections. 172s Preparing to unpack .../064-python3-jaraco.collections_5.1.0-1_all.deb ... 172s Unpacking python3-jaraco.collections (5.1.0-1) ... 172s Selecting previously unselected package python3-dateutil. 172s Preparing to unpack .../065-python3-dateutil_2.9.0-3_all.deb ... 172s Unpacking python3-dateutil (2.9.0-3) ... 172s Selecting previously unselected package python3-tempora. 172s Preparing to unpack .../066-python3-tempora_5.7.0-2_all.deb ... 172s Unpacking python3-tempora (5.7.0-2) ... 172s Selecting previously unselected package python3-portend. 172s Preparing to unpack .../067-python3-portend_3.2.0-1_all.deb ... 172s Unpacking python3-portend (3.2.0-1) ... 172s Selecting previously unselected package python3-zc.lockfile. 172s Preparing to unpack .../068-python3-zc.lockfile_3.0.post1-1_all.deb ... 172s Unpacking python3-zc.lockfile (3.0.post1-1) ... 172s Selecting previously unselected package python3-cherrypy3. 172s Preparing to unpack .../069-python3-cherrypy3_18.10.0-1_all.deb ... 172s Unpacking python3-cherrypy3 (18.10.0-1) ... 172s Selecting previously unselected package python3-asgiref. 172s Preparing to unpack .../070-python3-asgiref_3.8.1-1_all.deb ... 172s Unpacking python3-asgiref (3.8.1-1) ... 172s Selecting previously unselected package python3-sqlparse. 172s Preparing to unpack .../071-python3-sqlparse_0.5.3-1_all.deb ... 172s Unpacking python3-sqlparse (0.5.3-1) ... 172s Selecting previously unselected package python3-django. 172s Preparing to unpack .../072-python3-django_3%3a4.2.18-1_all.deb ... 172s Unpacking python3-django (3:4.2.18-1) ... 172s Selecting previously unselected package python3-django-bootstrapform. 172s Preparing to unpack .../073-python3-django-bootstrapform_3.4-9_all.deb ... 172s Unpacking python3-django-bootstrapform (3.4-9) ... 172s Selecting previously unselected package ttf-bitstream-vera. 172s Preparing to unpack .../074-ttf-bitstream-vera_1.10-8.2_all.deb ... 172s Unpacking ttf-bitstream-vera (1.10-8.2) ... 172s Selecting previously unselected package python3-django-ranged-response. 172s Preparing to unpack .../075-python3-django-ranged-response_0.2.0-5_all.deb ... 172s Unpacking python3-django-ranged-response (0.2.0-5) ... 172s Selecting previously unselected package libfreetype6:s390x. 172s Preparing to unpack .../076-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 172s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 172s Selecting previously unselected package libgomp1:s390x. 172s Preparing to unpack .../077-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 172s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 172s Selecting previously unselected package libimagequant0:s390x. 172s Preparing to unpack .../078-libimagequant0_2.18.0-1build1_s390x.deb ... 172s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 172s Selecting previously unselected package libjpeg-turbo8:s390x. 172s Preparing to unpack .../079-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 172s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 172s Selecting previously unselected package libjpeg8:s390x. 172s Preparing to unpack .../080-libjpeg8_8c-2ubuntu11_s390x.deb ... 172s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 172s Selecting previously unselected package liblcms2-2:s390x. 172s Preparing to unpack .../081-liblcms2-2_2.16-2_s390x.deb ... 172s Unpacking liblcms2-2:s390x (2.16-2) ... 172s Selecting previously unselected package libopenjp2-7:s390x. 172s Preparing to unpack .../082-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 172s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 172s Selecting previously unselected package libgraphite2-3:s390x. 172s Preparing to unpack .../083-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 172s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 172s Selecting previously unselected package libharfbuzz0b:s390x. 172s Preparing to unpack .../084-libharfbuzz0b_10.2.0-1_s390x.deb ... 172s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 172s Selecting previously unselected package libraqm0:s390x. 172s Preparing to unpack .../085-libraqm0_0.10.2-1_s390x.deb ... 172s Unpacking libraqm0:s390x (0.10.2-1) ... 173s Selecting previously unselected package libdeflate0:s390x. 173s Preparing to unpack .../086-libdeflate0_1.23-1_s390x.deb ... 173s Unpacking libdeflate0:s390x (1.23-1) ... 173s Selecting previously unselected package libjbig0:s390x. 173s Preparing to unpack .../087-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 173s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 173s Selecting previously unselected package libsharpyuv0:s390x. 173s Preparing to unpack .../088-libsharpyuv0_1.5.0-0.1_s390x.deb ... 173s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 173s Selecting previously unselected package libwebp7:s390x. 173s Preparing to unpack .../089-libwebp7_1.5.0-0.1_s390x.deb ... 173s Unpacking libwebp7:s390x (1.5.0-0.1) ... 173s Selecting previously unselected package libtiff6:s390x. 173s Preparing to unpack .../090-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 173s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 173s Selecting previously unselected package libwebpdemux2:s390x. 173s Preparing to unpack .../091-libwebpdemux2_1.5.0-0.1_s390x.deb ... 173s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 173s Selecting previously unselected package libwebpmux3:s390x. 173s Preparing to unpack .../092-libwebpmux3_1.5.0-0.1_s390x.deb ... 173s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 173s Selecting previously unselected package python3-pil:s390x. 173s Preparing to unpack .../093-python3-pil_11.1.0-5_s390x.deb ... 173s Unpacking python3-pil:s390x (11.1.0-5) ... 173s Selecting previously unselected package python3-django-captcha. 173s Preparing to unpack .../094-python3-django-captcha_0.6.0-1_all.deb ... 173s Unpacking python3-django-captcha (0.6.0-1) ... 173s Selecting previously unselected package python3-django-stronghold. 173s Preparing to unpack .../095-python3-django-stronghold_0.4.0+debian-2_all.deb ... 173s Unpacking python3-django-stronghold (0.4.0+debian-2) ... 173s Selecting previously unselected package python3-psutil. 173s Preparing to unpack .../096-python3-psutil_5.9.8-2build3_s390x.deb ... 173s Unpacking python3-psutil (5.9.8-2build3) ... 173s Selecting previously unselected package python3-ruamel.yaml.clib. 173s Preparing to unpack .../097-python3-ruamel.yaml.clib_0.2.12+ds-1_s390x.deb ... 173s Unpacking python3-ruamel.yaml.clib (0.2.12+ds-1) ... 173s Selecting previously unselected package python3-ruamel.yaml. 173s Preparing to unpack .../098-python3-ruamel.yaml_0.18.10+ds-1_all.deb ... 173s Unpacking python3-ruamel.yaml (0.18.10+ds-1) ... 173s Selecting previously unselected package batctl. 173s Preparing to unpack .../099-batctl_2025.0-1_s390x.deb ... 173s Unpacking batctl (2025.0-1) ... 173s Selecting previously unselected package python3-josepy. 173s Preparing to unpack .../100-python3-josepy_1.14.0-3_all.deb ... 173s Unpacking python3-josepy (1.14.0-3) ... 173s Selecting previously unselected package python3-rfc3339. 173s Preparing to unpack .../101-python3-rfc3339_2.0.1-1_all.deb ... 173s Unpacking python3-rfc3339 (2.0.1-1) ... 173s Selecting previously unselected package python3-pytz. 173s Preparing to unpack .../102-python3-pytz_2025.1-3_all.deb ... 173s Unpacking python3-pytz (2025.1-3) ... 173s Selecting previously unselected package python3-tz. 173s Preparing to unpack .../103-python3-tz_2025.1-3_all.deb ... 173s Unpacking python3-tz (2025.1-3) ... 173s Selecting previously unselected package python3-acme. 173s Preparing to unpack .../104-python3-acme_2.11.0-1_all.deb ... 173s Unpacking python3-acme (2.11.0-1) ... 173s Selecting previously unselected package python3-configargparse. 173s Preparing to unpack .../105-python3-configargparse_1.7-2_all.deb ... 173s Unpacking python3-configargparse (1.7-2) ... 173s Selecting previously unselected package python3-parsedatetime. 173s Preparing to unpack .../106-python3-parsedatetime_2.6-3_all.deb ... 173s Unpacking python3-parsedatetime (2.6-3) ... 173s Selecting previously unselected package python3-certbot. 173s Preparing to unpack .../107-python3-certbot_2.11.0-1_all.deb ... 173s Unpacking python3-certbot (2.11.0-1) ... 173s Selecting previously unselected package certbot. 173s Preparing to unpack .../108-certbot_2.11.0-1_all.deb ... 173s Unpacking certbot (2.11.0-1) ... 173s Selecting previously unselected package libasound2-data. 173s Preparing to unpack .../109-libasound2-data_1.2.13-1build1_all.deb ... 173s Unpacking libasound2-data (1.2.13-1build1) ... 173s Selecting previously unselected package libasound2t64:s390x. 173s Preparing to unpack .../110-libasound2t64_1.2.13-1build1_s390x.deb ... 173s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 173s Selecting previously unselected package libflite1:s390x. 173s Preparing to unpack .../111-libflite1_2.2-7_s390x.deb ... 173s Unpacking libflite1:s390x (2.2-7) ... 173s Selecting previously unselected package flite. 173s Preparing to unpack .../112-flite_2.2-7_s390x.deb ... 173s Unpacking flite (2.2-7) ... 173s Selecting previously unselected package gir1.2-udisks-2.0:s390x. 173s Preparing to unpack .../113-gir1.2-udisks-2.0_2.10.1-11ubuntu2_s390x.deb ... 173s Unpacking gir1.2-udisks-2.0:s390x (2.10.1-11ubuntu2) ... 173s Selecting previously unselected package ldap-utils. 173s Preparing to unpack .../114-ldap-utils_2.6.9+dfsg-1~exp2ubuntu1_s390x.deb ... 173s Unpacking ldap-utils (2.6.9+dfsg-1~exp2ubuntu1) ... 173s Selecting previously unselected package ldapscripts. 173s Preparing to unpack .../115-ldapscripts_2.0.8-2_all.deb ... 173s Unpacking ldapscripts (2.0.8-2) ... 173s Selecting previously unselected package libapache2-mod-auth-pubtkt. 173s Preparing to unpack .../116-libapache2-mod-auth-pubtkt_0.13-1build3_s390x.deb ... 173s Unpacking libapache2-mod-auth-pubtkt (0.13-1build3) ... 173s Selecting previously unselected package libnss-ldapd:s390x. 173s Preparing to unpack .../117-libnss-ldapd_0.9.13-1_s390x.deb ... 173s Unpacking libnss-ldapd:s390x (0.9.13-1) ... 173s Selecting previously unselected package libpam-ldapd:s390x. 173s Preparing to unpack .../118-libpam-ldapd_0.9.13-1_s390x.deb ... 173s Unpacking libpam-ldapd:s390x (0.9.13-1) ... 173s Selecting previously unselected package libintl-perl. 173s Preparing to unpack .../119-libintl-perl_1.33-1build4_all.deb ... 173s Unpacking libintl-perl (1.33-1build4) ... 173s Selecting previously unselected package libproc-processtable-perl:s390x. 173s Preparing to unpack .../120-libproc-processtable-perl_0.636-1build4_s390x.deb ... 173s Unpacking libproc-processtable-perl:s390x (0.636-1build4) ... 173s Selecting previously unselected package libsort-naturally-perl. 173s Preparing to unpack .../121-libsort-naturally-perl_1.03-4_all.deb ... 173s Unpacking libsort-naturally-perl (1.03-4) ... 173s Selecting previously unselected package libmodule-scandeps-perl. 173s Preparing to unpack .../122-libmodule-scandeps-perl_1.37-1_all.deb ... 173s Unpacking libmodule-scandeps-perl (1.37-1) ... 173s Selecting previously unselected package libterm-readkey-perl. 173s Preparing to unpack .../123-libterm-readkey-perl_2.38-2build5_s390x.deb ... 173s Unpacking libterm-readkey-perl (2.38-2build5) ... 173s Selecting previously unselected package libmodule-find-perl. 173s Preparing to unpack .../124-libmodule-find-perl_0.16-2_all.deb ... 173s Unpacking libmodule-find-perl (0.16-2) ... 173s Selecting previously unselected package needrestart. 173s Preparing to unpack .../125-needrestart_3.6-8ubuntu7_all.deb ... 173s Unpacking needrestart (3.6-8ubuntu7) ... 173s Selecting previously unselected package libbluetooth3:s390x. 173s Preparing to unpack .../126-libbluetooth3_5.79-1_s390x.deb ... 173s Unpacking libbluetooth3:s390x (5.79-1) ... 173s Selecting previously unselected package libndp0:s390x. 173s Preparing to unpack .../127-libndp0_1.9-1_s390x.deb ... 173s Unpacking libndp0:s390x (1.9-1) ... 173s Selecting previously unselected package libteamdctl0:s390x. 173s Preparing to unpack .../128-libteamdctl0_1.31-1build3_s390x.deb ... 173s Unpacking libteamdctl0:s390x (1.31-1build3) ... 173s Selecting previously unselected package network-manager. 173s Preparing to unpack .../129-network-manager_1.50.0-1ubuntu3_s390x.deb ... 173s ls: cannot access '/etc/NetworkManager/system-connections': No such file or directory 173s Unpacking network-manager (1.50.0-1ubuntu3) ... 173s Selecting previously unselected package php-common. 173s Preparing to unpack .../130-php-common_2%3a93ubuntu2_all.deb ... 173s Unpacking php-common (2:93ubuntu2) ... 173s Selecting previously unselected package php8.3-common. 173s Preparing to unpack .../131-php8.3-common_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-common (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php8.3-opcache. 173s Preparing to unpack .../132-php8.3-opcache_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-opcache (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php8.3-readline. 173s Preparing to unpack .../133-php8.3-readline_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-readline (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package libsodium23:s390x. 173s Preparing to unpack .../134-libsodium23_1.0.18-1build3_s390x.deb ... 173s Unpacking libsodium23:s390x (1.0.18-1build3) ... 173s Selecting previously unselected package php8.3-cli. 173s Preparing to unpack .../135-php8.3-cli_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-cli (8.3.11-0ubuntu4) ... 173s Selecting previously unselected package php8.3-fpm. 173s Preparing to unpack .../136-php8.3-fpm_8.3.11-0ubuntu4_s390x.deb ... 173s Unpacking php8.3-fpm (8.3.11-0ubuntu4) ... 174s Selecting previously unselected package php-fpm. 174s Preparing to unpack .../137-php-fpm_2%3a8.3+93ubuntu2_all.deb ... 174s Unpacking php-fpm (2:8.3+93ubuntu2) ... 174s Selecting previously unselected package samba-common. 174s Preparing to unpack .../138-samba-common_2%3a4.20.4+dfsg-1ubuntu5_all.deb ... 174s Unpacking samba-common (2:4.20.4+dfsg-1ubuntu5) ... 174s Selecting previously unselected package libcups2t64:s390x. 174s Preparing to unpack .../139-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 174s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 174s Selecting previously unselected package libtalloc2:s390x. 174s Preparing to unpack .../140-libtalloc2_2.4.2-2build1_s390x.deb ... 174s Unpacking libtalloc2:s390x (2.4.2-2build1) ... 174s Selecting previously unselected package libtdb1:s390x. 174s Preparing to unpack .../141-libtdb1_1.4.12-1build1_s390x.deb ... 174s Unpacking libtdb1:s390x (1.4.12-1build1) ... 174s Selecting previously unselected package libtevent0t64:s390x. 174s Preparing to unpack .../142-libtevent0t64_0.16.1-3_s390x.deb ... 174s Unpacking libtevent0t64:s390x (0.16.1-3) ... 174s Selecting previously unselected package libldb2:s390x. 174s Preparing to unpack .../143-libldb2_2%3a2.9.1+samba4.20.4+dfsg-1ubuntu5_s390x.deb ... 174s Unpacking libldb2:s390x (2:2.9.1+samba4.20.4+dfsg-1ubuntu5) ... 174s Selecting previously unselected package libwbclient0:s390x. 174s Preparing to unpack .../144-libwbclient0_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 174s Unpacking libwbclient0:s390x (2:4.20.4+dfsg-1ubuntu5) ... 174s Selecting previously unselected package samba-libs:s390x. 174s Preparing to unpack .../145-samba-libs_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 174s Unpacking samba-libs:s390x (2:4.20.4+dfsg-1ubuntu5) ... 174s Selecting previously unselected package samba-common-bin. 174s Preparing to unpack .../146-samba-common-bin_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 174s Unpacking samba-common-bin (2:4.20.4+dfsg-1ubuntu5) ... 174s Selecting previously unselected package libboost-thread1.83.0:s390x. 174s Preparing to unpack .../147-libboost-thread1.83.0_1.83.0-4ubuntu2_s390x.deb ... 174s Unpacking libboost-thread1.83.0:s390x (1.83.0-4ubuntu2) ... 174s Selecting previously unselected package libbtrfs0t64:s390x. 174s Preparing to unpack .../148-libbtrfs0t64_6.12-1build1_s390x.deb ... 174s Unpacking libbtrfs0t64:s390x (6.12-1build1) ... 174s Selecting previously unselected package libsnapper7t64:s390x. 174s Preparing to unpack .../149-libsnapper7t64_0.10.6-1.2_s390x.deb ... 174s Unpacking libsnapper7t64:s390x (0.10.6-1.2) ... 174s Selecting previously unselected package snapper. 174s Preparing to unpack .../150-snapper_0.10.6-1.2_s390x.deb ... 174s Unpacking snapper (0.10.6-1.2) ... 174s Selecting previously unselected package sshfs. 174s Preparing to unpack .../151-sshfs_3.7.3-1.1build3_s390x.deb ... 174s Unpacking sshfs (3.7.3-1.1build3) ... 174s Selecting previously unselected package sshpass. 174s Preparing to unpack .../152-sshpass_1.10-0.1_s390x.deb ... 174s Unpacking sshpass (1.10-0.1) ... 174s Selecting previously unselected package ssl-cert. 174s Preparing to unpack .../153-ssl-cert_1.1.3ubuntu1_all.deb ... 174s Unpacking ssl-cert (1.1.3ubuntu1) ... 174s Selecting previously unselected package tdb-tools. 174s Preparing to unpack .../154-tdb-tools_1.4.12-1build1_s390x.deb ... 174s Unpacking tdb-tools (1.4.12-1build1) ... 174s Selecting previously unselected package unattended-upgrades. 174s Preparing to unpack .../155-unattended-upgrades_2.9.1+nmu4ubuntu1_all.deb ... 174s Unpacking unattended-upgrades (2.9.1+nmu4ubuntu1) ... 174s Selecting previously unselected package libyajl2:s390x. 174s Preparing to unpack .../156-libyajl2_2.1.0-5build1_s390x.deb ... 174s Unpacking libyajl2:s390x (2.1.0-5build1) ... 174s Selecting previously unselected package libnorm1t64:s390x. 174s Preparing to unpack .../157-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 174s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 174s Selecting previously unselected package libpgm-5.3-0t64:s390x. 174s Preparing to unpack .../158-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 174s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 174s Selecting previously unselected package libzmq5:s390x. 174s Preparing to unpack .../159-libzmq5_4.3.5-1build2_s390x.deb ... 174s Unpacking libzmq5:s390x (4.3.5-1build2) ... 174s Selecting previously unselected package uwsgi-core. 174s Preparing to unpack .../160-uwsgi-core_2.0.26-2ubuntu3_s390x.deb ... 174s Unpacking uwsgi-core (2.0.26-2ubuntu3) ... 174s Selecting previously unselected package uwsgi. 174s Preparing to unpack .../161-uwsgi_2.0.26-2ubuntu3_s390x.deb ... 174s Unpacking uwsgi (2.0.26-2ubuntu3) ... 174s Selecting previously unselected package libpython3.12t64:s390x. 174s Preparing to unpack .../162-libpython3.12t64_3.12.9-1_s390x.deb ... 174s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 174s Selecting previously unselected package uwsgi-plugin-python3. 174s Preparing to unpack .../163-uwsgi-plugin-python3_2.0.26-2ubuntu3_s390x.deb ... 174s Unpacking uwsgi-plugin-python3 (2.0.26-2ubuntu3) ... 174s Selecting previously unselected package zram-tools. 174s Preparing to unpack .../164-zram-tools_0.3.7-1_all.deb ... 174s Unpacking zram-tools (0.3.7-1) ... 174s Selecting previously unselected package gettext. 174s Preparing to unpack .../165-gettext_0.23.1-1_s390x.deb ... 174s Unpacking gettext (0.23.1-1) ... 174s Selecting previously unselected package javascript-common. 174s Preparing to unpack .../166-javascript-common_11+nmu1_all.deb ... 174s Unpacking javascript-common (11+nmu1) ... 174s Selecting previously unselected package libglib2.0-bin. 174s Preparing to unpack .../167-libglib2.0-bin_2.83.3-2_s390x.deb ... 174s Unpacking libglib2.0-bin (2.83.3-2) ... 174s Selecting previously unselected package node-popper2. 174s Preparing to unpack .../168-node-popper2_2.11.2-8_all.deb ... 174s Unpacking node-popper2 (2.11.2-8) ... 174s Selecting previously unselected package libjs-bootstrap5. 174s Preparing to unpack .../169-libjs-bootstrap5_5.3.3+dfsg-3_all.deb ... 174s Unpacking libjs-bootstrap5 (5.3.3+dfsg-3) ... 174s Selecting previously unselected package ppp. 174s Preparing to unpack .../170-ppp_2.5.1-1+1_s390x.deb ... 175s Unpacking ppp (2.5.1-1+1) ... 175s Selecting previously unselected package pppoe. 175s Preparing to unpack .../171-pppoe_4.0-1ubuntu1_s390x.deb ... 175s Unpacking pppoe (4.0-1ubuntu1) ... 175s Selecting previously unselected package python3-argon2. 175s Preparing to unpack .../172-python3-argon2_21.1.0-3_s390x.deb ... 175s Unpacking python3-argon2 (21.1.0-3) ... 175s Selecting previously unselected package python3-bootstrapform. 175s Preparing to unpack .../173-python3-bootstrapform_3.4-9_all.deb ... 175s Unpacking python3-bootstrapform (3.4-9) ... 175s Selecting previously unselected package python3-django-ipware. 175s Preparing to unpack .../174-python3-django-ipware_4.0.2-1_all.deb ... 175s Unpacking python3-django-ipware (4.0.2-1) ... 175s Selecting previously unselected package python3-django-axes. 175s Preparing to unpack .../175-python3-django-axes_7.0.1-0ubuntu1_all.deb ... 175s Unpacking python3-django-axes (7.0.1-0ubuntu1) ... 175s Selecting previously unselected package python3-pampy. 175s Preparing to unpack .../176-python3-pampy_2.0.2-1_all.deb ... 175s Unpacking python3-pampy (2.0.2-1) ... 175s Selecting previously unselected package python3-ptyprocess. 175s Preparing to unpack .../177-python3-ptyprocess_0.7.0-6_all.deb ... 175s Unpacking python3-ptyprocess (0.7.0-6) ... 175s Selecting previously unselected package python3-pexpect. 175s Preparing to unpack .../178-python3-pexpect_4.9-3_all.deb ... 175s Unpacking python3-pexpect (4.9-3) ... 175s Selecting previously unselected package freedombox. 175s Preparing to unpack .../179-freedombox_25.2_all.deb ... 175s Unpacking freedombox (25.2) ... 175s Selecting previously unselected package freedombox-doc-en. 175s Preparing to unpack .../180-freedombox-doc-en_25.2_all.deb ... 175s Unpacking freedombox-doc-en (25.2) ... 175s Selecting previously unselected package freedombox-doc-es. 175s Preparing to unpack .../181-freedombox-doc-es_25.2_all.deb ... 175s Unpacking freedombox-doc-es (25.2) ... 176s Setting up libpwquality-common (1.4.5-4) ... 176s Setting up python3-jaraco.collections (5.1.0-1) ... 176s Setting up javascript-common (11+nmu1) ... 176s Package apache2 is not configured yet. Will defer actions by package javascript-common. 176s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 176s Setting up python3-configargparse (1.7-2) ... 176s Setting up liblcms2-2:s390x (2.16-2) ... 176s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 176s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 176s Setting up freedombox-doc-en (25.2) ... 176s Setting up php-common (2:93ubuntu2) ... 176s Created symlink '/etc/systemd/system/timers.target.wants/phpsessionclean.timer' → '/usr/lib/systemd/system/phpsessionclean.timer'. 176s Setting up ttf-bitstream-vera (1.10-8.2) ... 176s Setting up fonts-lato (2.015-1) ... 176s Setting up libsodium23:s390x (1.0.18-1build3) ... 176s Setting up python3-parsedatetime (2.6-3) ... 176s Setting up augeas-lenses (1.14.1-1build2) ... 176s Setting up fonts-fork-awesome (1.2.0+ds1-1) ... 176s Setting up libtdb1:s390x (1.4.12-1build1) ... 176s Setting up libargon2-1:s390x (0~20190702+dfsg-4build1) ... 176s Setting up fail2ban (1.1.0-7) ... 177s Created symlink '/etc/systemd/system/multi-user.target.wants/fail2ban.service' → '/usr/lib/systemd/system/fail2ban.service'. 177s Setting up popularity-contest (1.77ubuntu1) ... 177s Setting up freedombox-doc-es (25.2) ... 177s Setting up gir1.2-udisks-2.0:s390x (2.10.1-11ubuntu2) ... 177s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 177s Setting up python3-ruamel.yaml.clib (0.2.12+ds-1) ... 177s Setting up libyajl2:s390x (2.1.0-5build1) ... 177s Setting up sshfs (3.7.3-1.1build3) ... 177s Setting up libdeflate0:s390x (1.23-1) ... 177s Setting up bc (1.07.1-4) ... 177s Setting up libglib2.0-bin (2.83.3-2) ... 177s Setting up libboost-thread1.83.0:s390x (1.83.0-4ubuntu2) ... 177s Setting up python3-pytz (2025.1-3) ... 177s Setting up php8.3-common (8.3.11-0ubuntu4) ... 177s Creating config file /etc/php/8.3/mods-available/calendar.ini with new version 178s Creating config file /etc/php/8.3/mods-available/ctype.ini with new version 178s Creating config file /etc/php/8.3/mods-available/exif.ini with new version 178s Creating config file /etc/php/8.3/mods-available/fileinfo.ini with new version 178s Creating config file /etc/php/8.3/mods-available/ffi.ini with new version 178s Creating config file /etc/php/8.3/mods-available/ftp.ini with new version 179s Creating config file /etc/php/8.3/mods-available/gettext.ini with new version 179s Creating config file /etc/php/8.3/mods-available/iconv.ini with new version 179s Creating config file /etc/php/8.3/mods-available/pdo.ini with new version 179s Creating config file /etc/php/8.3/mods-available/phar.ini with new version 179s Creating config file /etc/php/8.3/mods-available/posix.ini with new version 180s Creating config file /etc/php/8.3/mods-available/shmop.ini with new version 180s Creating config file /etc/php/8.3/mods-available/sockets.ini with new version 180s Creating config file /etc/php/8.3/mods-available/sysvmsg.ini with new version 180s Creating config file /etc/php/8.3/mods-available/sysvsem.ini with new version 180s Creating config file /etc/php/8.3/mods-available/sysvshm.ini with new version 180s Creating config file /etc/php/8.3/mods-available/tokenizer.ini with new version 181s Setting up samba-common (2:4.20.4+dfsg-1ubuntu5) ... 181s Creating config file /etc/samba/smb.conf with new version 181s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 181s Setting up ldap-utils (2.6.9+dfsg-1~exp2ubuntu1) ... 181s Setting up sshpass (1.10-0.1) ... 181s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 181s Setting up libwbclient0:s390x (2:4.20.4+dfsg-1ubuntu5) ... 181s Setting up python3-psutil (5.9.8-2build3) ... 181s Setting up python3-tz (2025.1-3) ... 181s Setting up python3-firewall (2.3.0-1) ... 181s Setting up libtalloc2:s390x (2.4.2-2build1) ... 181s Setting up libdconf1:s390x (0.40.0-5) ... 181s Setting up libasound2-data (1.2.13-1build1) ... 181s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 181s Setting up batctl (2025.0-1) ... 181s Setting up python3-packaging (24.2-1) ... 181s Setting up python3-sqlparse (0.5.3-1) ... 181s Setting up libasound2t64:s390x (1.2.13-1build1) ... 181s Setting up php8.3-readline (8.3.11-0ubuntu4) ... 181s Creating config file /etc/php/8.3/mods-available/readline.ini with new version 182s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 182s Setting up ssl-cert (1.1.3ubuntu1) ... 182s Created symlink '/etc/systemd/system/multi-user.target.wants/ssl-cert.service' → '/usr/lib/systemd/system/ssl-cert.service'. 182s Setting up python3-cheroot (10.0.1+ds1-3) ... 182s Setting up libmodule-find-perl (0.16-2) ... 182s Setting up libteamdctl0:s390x (1.31-1build3) ... 182s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 182s Setting up libaugeas0:s390x (1.14.1-1build2) ... 182s Setting up tdb-tools (1.4.12-1build1) ... 182s update-alternatives: using /usr/bin/tdbbackup.tdbtools to provide /usr/bin/tdbbackup (tdbbackup) in auto mode 182s Setting up zram-tools (0.3.7-1) ... 182s Created symlink '/etc/systemd/system/multi-user.target.wants/zramswap.service' → '/usr/lib/systemd/system/zramswap.service'. 183s Setting up libimagequant0:s390x (2.18.0-1build1) ... 183s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 183s Setting up libltdl7:s390x (2.5.4-3build1) ... 183s Setting up libbtrfs0t64:s390x (6.12-1build1) ... 183s Setting up libnm0:s390x (1.50.0-1ubuntu3) ... 183s Setting up libcrack2:s390x (2.9.6-5.2) ... 183s Setting up libwebp7:s390x (1.5.0-0.1) ... 183s Setting up ppp (2.5.1-1+1) ... 183s Setting up python3-josepy (1.14.0-3) ... 183s Setting up python3-ruamel.yaml (0.18.10+ds-1) ... 183s Setting up libodbc2:s390x (2.3.12-2ubuntu1) ... 183s Setting up debsecan (0.4.20.1) ... 183s Setting up python3-zc.lockfile (3.0.post1-1) ... 183s Setting up libproc-processtable-perl:s390x (0.636-1build4) ... 183s Setting up libflite1:s390x (2.2-7) ... 183s Setting up cockpit-bridge (332-1) ... 183s Setting up node-popper2 (2.11.2-8) ... 183s Setting up libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 183s Setting up python3-augeas (1.2.0-1) ... 184s Setting up libbluetooth3:s390x (5.79-1) ... 184s Setting up libapr1t64:s390x (1.7.5-1) ... 184s Setting up libnsl2:s390x (1.3.0-3build3) ... 184s Setting up python3-argon2 (21.1.0-3) ... 184s Setting up libintl-perl (1.33-1build4) ... 184s Setting up flite (2.2-7) ... 184s Setting up liblua5.4-0:s390x (5.4.7-1) ... 184s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 184s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 184s Setting up python3-dateutil (2.9.0-3) ... 184s Setting up sgml-base (1.31) ... 184s Setting up python3-msgpack (1.0.3-3build3) ... 184s Setting up apache2-data (2.4.62-3ubuntu1) ... 184s Setting up python3-tempora (5.7.0-2) ... 184s Setting up libndp0:s390x (1.9-1) ... 184s Setting up php8.3-opcache (8.3.11-0ubuntu4) ... 184s Creating config file /etc/php/8.3/mods-available/opcache.ini with new version 184s Setting up glib-networking-common (2.80.1-1) ... 184s Setting up nslcd (0.9.13-1) ... 184s info: The home dir /run/nslcd you specified can't be accessed: No such file or directory 184s 184s info: Selecting UID from range 100 to 999 ... 184s 184s info: Selecting GID from range 100 to 999 ... 184s info: Adding system user `nslcd' (UID 107) ... 184s info: Adding new group `nslcd' (GID 113) ... 184s info: Adding new user `nslcd' (UID 107) with group `nslcd' ... 184s info: Not creating home directory `/run/nslcd'. 185s Created symlink '/etc/systemd/system/multi-user.target.wants/nslcd.service' -> '/usr/lib/systemd/system/nslcd.service'. 185s Setting up gir1.2-nm-1.0:s390x (1.50.0-1ubuntu3) ... 185s Setting up libterm-readkey-perl (2.38-2build5) ... 185s Setting up python3-rfc3339 (2.0.1-1) ... 185s Setting up libdaemon0:s390x (0.14-7.1ubuntu4) ... 185s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 185s Setting up libjs-bootstrap5 (5.3.3+dfsg-3) ... 185s Setting up python3-nftables (1.1.0-2) ... 185s Setting up python3-distro-info (1.13) ... 185s Setting up libsort-naturally-perl (1.03-4) ... 185s Setting up libmodule-scandeps-perl (1.37-1) ... 185s Setting up python3-pampy (2.0.2-1) ... 185s Setting up libtevent0t64:s390x (0.16.1-3) ... 185s Setting up python3-asgiref (3.8.1-1) ... 185s Setting up python3-ptyprocess (0.7.0-6) ... 185s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 185s Setting up ldapscripts (2.0.8-2) ... 185s Setting up slapd (2.6.9+dfsg-1~exp2ubuntu1) ... 186s Creating new user openldap... done. 186s Creating initial configuration... done. 186s Creating LDAP directory... done. 186s Created symlink '/etc/systemd/system/multi-user.target.wants/slapd.service' → '/usr/lib/systemd/system/slapd.service'. 186s Setting up libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 186s Setting up needrestart (3.6-8ubuntu7) ... 186s Setting up borgbackup (1.4.0-4build1) ... 187s Setting up libsnapper7t64:s390x (0.10.6-1.2) ... 187s Setting up libproxy1v5:s390x (0.5.9-1) ... 187s Setting up gettext (0.23.1-1) ... 187s Setting up python3-django (3:4.2.18-1) ... 187s Setting up libzmq5:s390x (4.3.5-1build2) ... 187s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 187s Setting up python3-django-bootstrapform (3.4-9) ... 188s Setting up python3-django-ranged-response (0.2.0-5) ... 188s Setting up libpam-ldapd:s390x (0.9.13-1) ... 188s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 188s Setting up pppoe (4.0-1ubuntu1) ... 188s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 188s Setting up dconf-service (0.40.0-5) ... 188s Setting up network-manager (1.50.0-1ubuntu3) ... 188s Created symlink '/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service' → '/usr/lib/systemd/system/NetworkManager-dispatcher.service'. 188s Created symlink '/etc/systemd/system/network-online.target.wants/NetworkManager-wait-online.service' → '/usr/lib/systemd/system/NetworkManager-wait-online.service'. 188s Created symlink '/etc/systemd/system/multi-user.target.wants/NetworkManager.service' → '/usr/lib/systemd/system/NetworkManager.service'. 189s Setting up libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 189s Setting up php8.3-cli (8.3.11-0ubuntu4) ... 189s update-alternatives: using /usr/bin/php8.3 to provide /usr/bin/php (php) in auto mode 189s update-alternatives: using /usr/bin/phar8.3 to provide /usr/bin/phar (phar) in auto mode 189s update-alternatives: using /usr/bin/phar.phar8.3 to provide /usr/bin/phar.phar (phar.phar) in auto mode 190s Creating config file /etc/php/8.3/cli/php.ini with new version 190s Setting up uwsgi-core (2.0.26-2ubuntu3) ... 190s Setting up libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 190s Setting up python3-django-stronghold (0.4.0+debian-2) ... 190s Setting up python3-portend (3.2.0-1) ... 190s Setting up python3-django-ipware (4.0.2-1) ... 190s Setting up libpython3.12t64:s390x (3.12.9-1) ... 190s Setting up unattended-upgrades (2.9.1+nmu4ubuntu1) ... 190s Creating config file /etc/apt/apt.conf.d/20auto-upgrades with new version 190s Creating config file /etc/apt/apt.conf.d/50unattended-upgrades with new version 190s Created symlink '/etc/systemd/system/multi-user.target.wants/unattended-upgrades.service' → '/usr/lib/systemd/system/unattended-upgrades.service'. 191s Synchronizing state of unattended-upgrades.service with SysV service script with /usr/lib/systemd/systemd-sysv-install. 191s Executing: /usr/lib/systemd/systemd-sysv-install enable unattended-upgrades 191s Setting up libpwquality1:s390x (1.4.5-4) ... 191s Setting up augeas-tools (1.14.1-1build2) ... 191s Setting up python3-acme (2.11.0-1) ... 191s Setting up python3-pexpect (4.9-3) ... 192s Setting up libnss-ldapd:s390x (0.9.13-1) ... 192s Setting up libraqm0:s390x (0.10.2-1) ... 192s Setting up python3-certbot (2.11.0-1) ... 192s Setting up python3-bootstrapform (3.4-9) ... 192s Setting up certbot (2.11.0-1) ... 192s Created symlink '/etc/systemd/system/timers.target.wants/certbot.timer' → '/usr/lib/systemd/system/certbot.timer'. 192s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 192s Setting up snapper (0.10.6-1.2) ... 192s Created symlink '/etc/systemd/system/timers.target.wants/snapper-boot.timer' → '/usr/lib/systemd/system/snapper-boot.timer'. 193s Created symlink '/etc/systemd/system/timers.target.wants/snapper-cleanup.timer' → '/usr/lib/systemd/system/snapper-cleanup.timer'. 193s Created symlink '/etc/systemd/system/timers.target.wants/snapper-timeline.timer' → '/usr/lib/systemd/system/snapper-timeline.timer'. 193s Created symlink '/etc/systemd/system/sysinit.target.wants/snapperd.service' → '/usr/lib/systemd/system/snapperd.service'. 193s snapper-boot.service is a disabled or a static unit, not starting it. 193s snapper-cleanup.service is a disabled or a static unit, not starting it. 193s snapper-timeline.service is a disabled or a static unit, not starting it. 193s Setting up xml-core (0.19) ... 193s Setting up python3-django-axes (7.0.1-0ubuntu1) ... 193s Setting up uwsgi (2.0.26-2ubuntu3) ... 194s Setting up uwsgi-plugin-python3 (2.0.26-2ubuntu3) ... 194s Setting up libavahi-core7:s390x (0.8-14ubuntu1) ... 194s Setting up libldb2:s390x (2:2.9.1+samba4.20.4+dfsg-1ubuntu5) ... 194s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 194s Setting up python3-cherrypy3 (18.10.0-1) ... 194s Setting up apache2-utils (2.4.62-3ubuntu1) ... 194s Setting up glib-networking-services (2.80.1-1) ... 194s Setting up libpwquality-tools (1.4.5-4) ... 194s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 194s Setting up php8.3-fpm (8.3.11-0ubuntu4) ... 194s Package apache2 is not configured yet. Will defer actions by package php8.3-fpm. 194s Creating config file /etc/php/8.3/fpm/php.ini with new version 194s NOTICE: Not enabling PHP 8.3 FPM by default. 194s NOTICE: To enable PHP 8.3 FPM in Apache2 do: 194s NOTICE: a2enmod proxy_fcgi setenvif 194s NOTICE: a2enconf php8.3-fpm 194s NOTICE: You are seeing this message because you have apache2 package installed. 194s Created symlink '/etc/systemd/system/multi-user.target.wants/php8.3-fpm.service' → '/usr/lib/systemd/system/php8.3-fpm.service'. 195s Setting up samba-libs:s390x (2:4.20.4+dfsg-1ubuntu5) ... 195s Setting up apache2-bin (2.4.62-3ubuntu1) ... 195s Setting up python3-pil:s390x (11.1.0-5) ... 195s Setting up php-fpm (2:8.3+93ubuntu2) ... 195s Setting up avahi-daemon (0.8-14ubuntu1) ... 195s Created symlink '/etc/systemd/system/dbus-org.freedesktop.Avahi.service' → '/usr/lib/systemd/system/avahi-daemon.service'. 195s Created symlink '/etc/systemd/system/multi-user.target.wants/avahi-daemon.service' → '/usr/lib/systemd/system/avahi-daemon.service'. 195s Created symlink '/etc/systemd/system/sockets.target.wants/avahi-daemon.socket' → '/usr/lib/systemd/system/avahi-daemon.socket'. 196s Setting up libapache2-mod-auth-pubtkt (0.13-1build3) ... 196s Package apache2 is not configured yet. Will defer actions by package libapache2-mod-auth-pubtkt. 196s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 196s Setting up cockpit-system (332-1) ... 196s Setting up gsettings-desktop-schemas (48~beta-1ubuntu1) ... 196s Setting up apache2 (2.4.62-3ubuntu1) ... 196s Enabling module mpm_event. 196s Enabling module authz_core. 196s Enabling module authz_host. 196s Enabling module authn_core. 196s Enabling module auth_basic. 196s Enabling module access_compat. 196s Enabling module authn_file. 196s Enabling module authz_user. 196s Enabling module alias. 196s Enabling module dir. 196s Enabling module autoindex. 196s Enabling module env. 196s Enabling module mime. 196s Enabling module negotiation. 196s Enabling module setenvif. 196s Enabling module filter. 196s Enabling module deflate. 196s Enabling module status. 196s Enabling module reqtimeout. 196s Enabling conf charset. 196s Enabling conf localized-error-pages. 196s Enabling conf other-vhosts-access-log. 196s Enabling conf security. 196s Enabling conf serve-cgi-bin. 196s Enabling site 000-default. 196s info: Executing deferred 'a2enconf javascript-common' for package javascript-common 196s Enabling conf javascript-common. 196s info: Executing deferred 'a2enmod auth_pubtkt' for package libapache2-mod-auth-pubtkt 196s Enabling module auth_pubtkt. 197s Created symlink '/etc/systemd/system/multi-user.target.wants/apache2.service' → '/usr/lib/systemd/system/apache2.service'. 197s Created symlink '/etc/systemd/system/multi-user.target.wants/apache-htcacheclean.service' → '/usr/lib/systemd/system/apache-htcacheclean.service'. 198s Setting up avahi-utils (0.8-14ubuntu1) ... 198s Setting up python3-django-captcha (0.6.0-1) ... 198s Setting up samba-common-bin (2:4.20.4+dfsg-1ubuntu5) ... 198s Processing triggers for libc-bin (2.40-4ubuntu1) ... 198s Processing triggers for man-db (2.13.0-1) ... 199s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 199s Processing triggers for dbus (1.14.10-4ubuntu5) ... 199s Setting up glib-networking:s390x (2.80.1-1) ... 199s Processing triggers for install-info (7.1.1-1) ... 199s Setting up cockpit-ws (332-1) ... 199s Created symlink '/etc/systemd/system/sockets.target.wants/cockpit.socket' → '/usr/lib/systemd/system/cockpit.socket'. 200s Setting up cockpit (332-1) ... 200s Processing triggers for sgml-base (1.31) ... 200s Setting up polkitd (126-2) ... 200s Setting up firewalld (2.3.0-1) ... 200s update-alternatives: using /usr/share/polkit-1/actions/org.fedoraproject.FirewallD1.server.policy.choice to provide /usr/share/polkit-1/actions/org.fedoraproject.FirewallD1.policy (org.fedoraproject.FirewallD1.policy) in auto mode 200s Created symlink '/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service' → '/usr/lib/systemd/system/firewalld.service'. 200s Created symlink '/etc/systemd/system/multi-user.target.wants/firewalld.service' → '/usr/lib/systemd/system/firewalld.service'. 201s Setting up freedombox (25.2) ... 202s Created symlink '/etc/systemd/system/multi-user.target.wants/plinth.service' → '/usr/lib/systemd/system/plinth.service'. 202s Processing triggers for php8.3-cli (8.3.11-0ubuntu4) ... 202s Processing triggers for php8.3-fpm (8.3.11-0ubuntu4) ... 202s NOTICE: Not enabling PHP 8.3 FPM by default. 202s NOTICE: To enable PHP 8.3 FPM in Apache2 do: 202s NOTICE: a2enmod proxy_fcgi setenvif 202s NOTICE: a2enconf php8.3-fpm 202s NOTICE: You are seeing this message because you have apache2 package installed. 202s autopkgtest: DBG: testbed command exited with code 0 202s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'freedombox'], kind short, sout pipe, serr pipe, env [] 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'freedombox-doc-en'], kind short, sout pipe, serr pipe, env [] 214s autopkgtest: DBG: testbed command exited with code 0 214s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'freedombox-doc-es'], kind short, sout pipe, serr pipe, env [] 214s autopkgtest: DBG: testbed command exited with code 0 214s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.K7EZkW/command1-packages.all"], kind short, sout raw, serr pipe, env [] 214s autopkgtest: DBG: testbed command exited with code 0 214s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/command1-packages.all /tmp/autopkgtest-work.jeiu1aap/out/command1-packages.all 214s autopkgtest: DBG: got reply from testbed: ok 214s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.K7EZkW/build.9H4/src'], kind short, sout raw, serr raw, env [] 215s autopkgtest: DBG: testbed command exited with code 0 215s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.K7EZkW/build.9H4/src already exists 215s autopkgtest [10:17:27]: test command1: plinth --list-apps 2> /dev/null 215s autopkgtest [10:17:27]: test command1: [----------------------- 215s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.K7EZkW/wrapper.sh --debug --artifacts=/tmp/autopkgtest.K7EZkW/command1-artifacts --chdir=/tmp/autopkgtest.K7EZkW/build.9H4/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.K7EZkW/command1-stderr --stdout=/tmp/autopkgtest.K7EZkW/command1-stdout --tmp=/tmp/autopkgtest.K7EZkW/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=git/1:2.48.1-0ubuntu1 -- bash -ec 'plinth --list-apps 2> /dev/null'"], kind test, sout raw, serr raw, env [] 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.K7EZkW/command1-artifacts 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: changing to directory: /tmp/autopkgtest.K7EZkW/build.9H4/src 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: LANG=C.UTF-8 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LANGUAGE 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_ADDRESS 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_ALL 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_COLLATE 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_CTYPE 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_IDENTIFICATION 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_MEASUREMENT 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_MESSAGES 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_MONETARY 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_NAME 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_NUMERIC 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_PAPER 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_TELEPHONE 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_TIME 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: pretending to be a login shell 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: will write standard error to /tmp/autopkgtest.K7EZkW/command1-stderr 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: will write stdout to /tmp/autopkgtest.K7EZkW/command1-stdout 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.K7EZkW/autopkgtest_tmp 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=git/1:2.48.1-0ubuntu1 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: command to run: bash -ec plinth --list-apps 2> /dev/null 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: copying /tmp/tmp.BXsctLQsZ3/out to stdout and file: /tmp/autopkgtest.K7EZkW/command1-stdout 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: copying /tmp/tmp.BXsctLQsZ3/err to standard error and file: /tmp/autopkgtest.K7EZkW/command1-stdout 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: writing script pid 14760 to /tmp/autopkgtest_script_pid 215s help 215s apache 215s cockpit 215s storage 215s names 215s avahi 215s power 215s firewall 215s config 215s users 215s letsencrypt 215s datetime 215s diagnostics 215s dynamicdns 215s api 215s privacy 215s security 215s snapshot 215s upgrades 215s networks 215s ssh 215s first_boot 215s sso 215s backups 215s tiddlywiki 215s miniflux 215s janus 215s ikiwiki 215s torproxy 215s performance 215s sharing 215s email 215s wordpress 215s nextcloud 215s coturn 215s featherwiki 215s kiwix 215s openvpn 215s bind 215s roundcube 215s mediawiki 215s sogo 215s quassel 215s gitweb 215s ttrss 215s shadowsocksserver 215s syncthing 215s pagekite 215s calibre 215s mumble 215s samba 215s minidlna 215s ejabberd 215s tor 215s deluge 215s searx 215s rssbridge 215s shaarli 215s minetest 215s radicale 215s matrixsynapse 215s privoxy 215s gnome 215s bepasty 215s transmission 215s shadowsocks 215s zoph 215s infinoted 215s jsxc 215s wireguard 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: checking for leaked background processes... 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: waiting for tee/cat subprocesses... 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: cleaning up... 215s /tmp/autopkgtest.K7EZkW/wrapper.sh: Exit status: 0 215s autopkgtest: DBG: testbed command exited with code 0 215s autopkgtest [10:17:27]: test command1: -----------------------] 215s autopkgtest: DBG: testbed executing test finished with exit status 0 215s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/command1-stdout /tmp/autopkgtest-work.jeiu1aap/out/command1-stdout 216s autopkgtest: DBG: got reply from testbed: ok 216s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/command1-stderr /tmp/autopkgtest-work.jeiu1aap/out/command1-stderr 216s autopkgtest: DBG: got reply from testbed: ok 216s command1 PASS 216s autopkgtest [10:17:28]: test command1: - - - - - - - - - - results - - - - - - - - - - 216s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/command1-artifacts/ /tmp/autopkgtest-work.jeiu1aap/out/artifacts/ 216s autopkgtest: DBG: got reply from testbed: ok 216s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.K7EZkW/command1-artifacts', '/tmp/autopkgtest.K7EZkW/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 216s autopkgtest: DBG: testbed command exited with code 0 216s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 223 216s autopkgtest [10:17:28]: test command2: preparing testbed 216s autopkgtest: DBG: testbed reset: modified=True, deps_installed=['freedombox', 'freedombox-doc-en', 'freedombox-doc-es'], deps_new=['git', 'python3-pytest', 'python3-pytest-cov', 'python3-pytest-django', 'python3-tomli', 'freedombox', 'freedombox-doc-en', 'freedombox-doc-es'] 216s autopkgtest: DBG: testbed reset 216s autopkgtest: DBG: sending command to testbed: revert 342s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.K7EZkW 342s autopkgtest: DBG: sending command to testbed: print-execute-command 342s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.3bmw7264/runcmd 342s autopkgtest: DBG: sending command to testbed: capabilities 342s autopkgtest: DBG: got reply from testbed: ok reboot revert isolation-machine root-on-testbed revert-full-system suggested-normal-user=ubuntu ok 342s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert', 'isolation-machine', 'root-on-testbed', 'revert-full-system', 'suggested-normal-user=ubuntu', 'ok', 'has_internet'] 342s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 342s autopkgtest: DBG: testbed command exited with code 0 342s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.K7EZkW/wrapper.sh 342s autopkgtest: DBG: got reply from testbed: ok 342s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/wrapper.sh'], kind short, sout raw, serr pipe, env [] 342s autopkgtest: DBG: testbed command exited with code 0 342s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 342s autopkgtest: DBG: testbed command exited with code 0 342s autopkgtest [10:19:34]: testbed dpkg architecture: s390x 342s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 343s autopkgtest: DBG: testbed command exited with code 0 343s autopkgtest [10:19:35]: testbed apt version: 2.9.28 343s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 343s autopkgtest: DBG: testbed command exited with code 0 343s autopkgtest: DBG: testbed has eatmydata 343s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 343s autopkgtest: DBG: testbed command exited with code 0 343s autopkgtest [10:19:35]: @@@@@@@@@@@@@@@@@@@@ test bed setup 343s 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 [] 343s autopkgtest: DBG: testbed command exited with code 0 343s autopkgtest [10:19:35]: testbed release detected to be: plucky 343s 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 [] 343s autopkgtest: DBG: testbed command exited with code 0 343s 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 [] 343s autopkgtest: DBG: testbed command exited with code 0 343s autopkgtest: DBG: adding APT source: Types: deb deb-src 343s URIs: http://ftpmaster.internal/ubuntu/ 343s Suites: plucky-proposed 343s Components: main restricted universe multiverse 343s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 343s 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 [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 344s Package: * 344s Pin: release plucky-proposed 344s Pin-Priority: 500 344s 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 [] 344s autopkgtest: DBG: testbed command exited with code 0 344s autopkgtest [10:19:36]: updating testbed package index (apt update) 344s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 344s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 344s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 345s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 345s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 345s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [69.1 kB] 345s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 345s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [843 kB] 345s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.3 kB] 345s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [741 kB] 345s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4652 B] 345s Fetched 1862 kB in 1s (1619 kB/s) 346s Reading package lists... 346s autopkgtest: DBG: testbed command exited with code 0 346s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 346s Package: * 346s Pin: release plucky-proposed 346s Pin-Priority: 100 346s 346s Package: src:git:any 346s Pin: release plucky-proposed 346s Pin-Priority: 995 346s 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:git:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 346s autopkgtest: DBG: testbed command exited with code 0 346s 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.K7EZkW/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 346s autopkgtest: DBG: testbed command exited with code 0 346s 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'] 346s + lsb_release --codename --short 346s + RELEASE=plucky 346s + cat 346s + [ plucky != trusty ] 346s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 346s Reading package lists... 346s Building dependency tree... 346s Reading state information... 347s Calculating upgrade... 347s The following packages were automatically installed and are no longer required: 347s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 347s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 347s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 347s linux-tools-6.11.0-8-generic 347s Use 'sudo apt autoremove' to remove them. 347s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 347s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 347s + /usr/lib/apt/apt-helper analyze-pattern ?true 347s + uname -r 347s + sed s/\./\\./g 347s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 347s + apt list ?obsolete 347s + + cut -d/ -f1 347s tail -n+2 347s + grep -v ^linux-.*6\.12\.0-15-generic.* 347s + true 347s + obsolete_pkgs= 347s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 347s Reading package lists... 347s Building dependency tree... 347s Reading state information... 347s The following packages will be REMOVED: 347s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 347s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 347s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 347s linux-tools-6.11.0-8-generic* 347s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 347s After this operation, 167 MB disk space will be freed. 348s (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.) 348s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 348s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 348s Removing libpython3.12t64:s390x (3.12.9-1) ... 348s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 348s Removing libnsl2:s390x (1.3.0-3build3) ... 348s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 348s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 348s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 349s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 349s Processing triggers for libc-bin (2.40-4ubuntu1) ... 349s (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.) 349s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 349s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 349s + grep -q trusty /etc/lsb-release 349s + [ ! -d /usr/share/doc/unattended-upgrades ] 349s + [ ! -d /usr/share/doc/lxd ] 349s + [ ! -d /usr/share/doc/lxd-client ] 349s + [ ! -d /usr/share/doc/snapd ] 349s + type iptables 349s + cat 349s + chmod 755 /etc/rc.local 349s + . /etc/rc.local 349s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 349s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 349s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 349s + uname -m 349s + [ s390x = ppc64le ] 349s + [ -d /run/systemd/system ] 349s + systemd-detect-virt --quiet --vm 349s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 349s + cat 349s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 349s + echo COMPRESS=lz4 349s autopkgtest: DBG: testbed command exited with code 0 349s autopkgtest [10:19:41]: upgrading testbed (apt dist-upgrade and autopurge) 349s 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'] 349s Reading package lists... 350s Building dependency tree... 350s Reading state information... 350s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 350s Starting 2 pkgProblemResolver with broken count: 0 350s Done 350s Entering ResolveByKeep 350s 350s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 350s autopkgtest: DBG: testbed command exited with code 0 350s 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'] 350s Reading package lists... 351s Building dependency tree... 351s Reading state information... 351s Starting pkgProblemResolver with broken count: 0 351s Starting 2 pkgProblemResolver with broken count: 0 351s Done 351s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 351s autopkgtest: DBG: testbed command exited with code 0 351s 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.K7EZkW/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 351s autopkgtest: DBG: testbed command exited with code 1 351s autopkgtest [10:19:43]: rebooting testbed after setup commands that affected boot 351s autopkgtest: DBG: sending command to testbed: reboot 367s autopkgtest: DBG: got reply from testbed: ok 367s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 367s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.K7EZkW/autopkgtest-reboot 367s autopkgtest: DBG: got reply from testbed: ok 367s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 367s autopkgtest: DBG: testbed command exited with code 0 367s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 368s autopkgtest: DBG: testbed command exited with code 0 368s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 368s autopkgtest: DBG: testbed command exited with code 0 368s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 368s autopkgtest: DBG: testbed command exited with code 0 368s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare 368s autopkgtest: DBG: got reply from testbed: ok 368s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 368s autopkgtest: DBG: testbed command exited with code 0 368s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 368s autopkgtest: DBG: testbed command exited with code 0 368s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 369s autopkgtest: DBG: testbed command exited with code 0 369s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.K7EZkW/testbed-packages"], kind short, sout raw, serr pipe, env [] 369s autopkgtest: DBG: testbed command exited with code 0 369s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/testbed-packages /tmp/autopkgtest-work.jeiu1aap/out/testbed-packages 369s autopkgtest: DBG: got reply from testbed: ok 369s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 369s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 370s autopkgtest: DBG: testbed command exited with code 0 370s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.K7EZkW/autopkgtest-reboot 370s autopkgtest: DBG: got reply from testbed: ok 370s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 370s autopkgtest: DBG: testbed command exited with code 0 370s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 370s autopkgtest: DBG: testbed command exited with code 0 370s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 370s autopkgtest: DBG: testbed command exited with code 0 370s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW'], kind short, sout raw, serr pipe, env [] 370s autopkgtest: DBG: testbed command exited with code 0 370s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare 371s autopkgtest: DBG: got reply from testbed: ok 371s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 371s autopkgtest: DBG: testbed command exited with code 0 371s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.K7EZkW/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 371s autopkgtest: DBG: testbed command exited with code 0 371s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 371s autopkgtest: DBG: testbed command exited with code 0 371s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 371s autopkgtest: DBG: install_deps: deps_new=['git', 'python3-pytest', 'python3-pytest-cov', 'python3-pytest-django', 'python3-tomli', 'freedombox', 'freedombox-doc-en', 'freedombox-doc-es'] 371s autopkgtest: DBG: install-deps: satisfying git, python3-pytest, python3-pytest-cov, python3-pytest-django, python3-tomli, freedombox, freedombox-doc-en, freedombox-doc-es 371s autopkgtest: DBG: can use apt-get on testbed: True 371s 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', 'git, python3-pytest, python3-pytest-cov, python3-pytest-django, python3-tomli, freedombox, freedombox-doc-en, freedombox-doc-es'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 371s Reading package lists... 372s Building dependency tree... 372s Reading state information... 372s Starting pkgProblemResolver with broken count: 0 372s Starting 2 pkgProblemResolver with broken count: 0 372s Done 372s The following packages will be REMOVED: 372s ufw 372s The following NEW packages will be installed: 372s apache2 apache2-bin apache2-data apache2-utils augeas-lenses augeas-tools 372s avahi-daemon avahi-utils batctl bc borgbackup certbot cockpit cockpit-bridge 372s cockpit-system cockpit-ws dconf-gsettings-backend dconf-service debsecan 372s fail2ban firewalld flite fonts-fork-awesome fonts-lato freedombox 372s freedombox-doc-en freedombox-doc-es gettext gir1.2-nm-1.0 gir1.2-udisks-2.0 372s git git-man glib-networking glib-networking-common glib-networking-services 372s gsettings-desktop-schemas javascript-common ldap-utils ldapscripts 372s libapache2-mod-auth-pubtkt libapr1t64 libaprutil1-dbd-sqlite3 372s libaprutil1-ldap libaprutil1t64 libargon2-1 libasound2-data libasound2t64 372s libaugeas0 libavahi-client3 libavahi-common-data libavahi-common3 372s libavahi-core7 libbluetooth3 libboost-thread1.83.0 libbtrfs0t64 libcrack2 372s libcups2t64 libdaemon0 libdconf1 libdeflate0 libduktape207 liberror-perl 372s libflite1 libfreetype6 libglib2.0-bin libgomp1 libgraphite2-3 libharfbuzz0b 372s libimagequant0 libintl-perl libjbig0 libjpeg-turbo8 libjpeg8 372s libjs-bootstrap5 libjs-jquery libjs-jquery-hotkeys libjs-jquery-isonscreen 372s libjs-jquery-metadata libjs-jquery-tablesorter 372s libjs-jquery-throttle-debounce liblcms2-2 libldb2 libltdl7 liblua5.4-0 372s libmodule-find-perl libmodule-scandeps-perl libndp0 libnm0 libnorm1t64 372s libnsl2 libnss-ldapd libodbc2 libopenjp2-7 libpam-ldapd libpgm-5.3-0t64 372s libproc-processtable-perl libproxy1v5 libpwquality-common libpwquality-tools 372s libpwquality1 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 372s libraqm0 libsharpyuv0 libsnapper7t64 libsodium23 libsort-naturally-perl 372s libtalloc2 libtdb1 libteamdctl0 libterm-readkey-perl libtevent0t64 libtiff6 372s libwbclient0 libwebp7 libwebpdemux2 libwebpmux3 libyajl2 libzmq5 needrestart 372s network-manager node-popper2 nslcd php-common php-fpm php8.3-cli 372s php8.3-common php8.3-fpm php8.3-opcache php8.3-readline polkitd 372s popularity-contest ppp pppoe python3-acme python3-argon2 python3-asgiref 372s python3-augeas python3-bootstrapform python3-certbot python3-cheroot 372s python3-cherrypy3 python3-configargparse python3-coverage python3-dateutil 372s python3-distro-info python3-django python3-django-axes 372s python3-django-bootstrapform python3-django-captcha python3-django-ipware 372s python3-django-ranged-response python3-django-stronghold python3-firewall 372s python3-iniconfig python3-jaraco.collections python3-josepy python3-msgpack 372s python3-nftables python3-packaging python3-pampy python3-parsedatetime 372s python3-pexpect python3-pil python3-pluggy python3-portend python3-psutil 372s python3-ptyprocess python3-pytest python3-pytest-cov python3-pytest-django 372s python3-pytz python3-rfc3339 python3-ruamel.yaml python3-ruamel.yaml.clib 372s python3-sqlparse python3-tempora python3-tomli python3-tz 372s python3-zc.lockfile python3.12 python3.12-minimal samba-common 372s samba-common-bin samba-libs sgml-base slapd snapper sshfs sshpass ssl-cert 372s tdb-tools ttf-bitstream-vera unattended-upgrades uwsgi uwsgi-core 372s uwsgi-plugin-python3 xml-core zram-tools 372s 0 upgraded, 200 newly installed, 1 to remove and 0 not upgraded. 372s Need to get 161 MB of archives. 372s After this operation, 401 MB of additional disk space will be used. 372s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 373s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 374s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libapr1t64 s390x 1.7.5-1 [114 kB] 374s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1t64 s390x 1.6.3-3ubuntu2 [98.4 kB] 374s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-dbd-sqlite3 s390x 1.6.3-3ubuntu2 [11.7 kB] 374s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libaprutil1-ldap s390x 1.6.3-3ubuntu2 [9064 B] 374s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 374s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-bin s390x 2.4.62-3ubuntu1 [1411 kB] 374s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-data all 2.4.62-3ubuntu1 [163 kB] 374s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x apache2-utils s390x 2.4.62-3ubuntu1 [102 kB] 374s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x apache2 s390x 2.4.62-3ubuntu1 [90.4 kB] 374s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-lato all 2.015-1 [2781 kB] 375s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x popularity-contest all 1.77ubuntu1 [58.3 kB] 375s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 375s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libargon2-1 s390x 0~20190702+dfsg-4build1 [54.1 kB] 375s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 375s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libodbc2 s390x 2.3.12-2ubuntu1 [163 kB] 375s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x slapd s390x 2.6.9+dfsg-1~exp2ubuntu1 [1615 kB] 375s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x nslcd s390x 0.9.13-1 [165 kB] 375s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 375s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 375s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 375s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x python3-distro-info all 1.13 [7798 B] 375s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x augeas-lenses all 1.14.1-1build2 [323 kB] 375s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libaugeas0 s390x 1.14.1-1build2 [180 kB] 375s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x augeas-tools s390x 1.14.1-1build2 [47.4 kB] 375s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 375s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 375s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-core7 s390x 0.8-14ubuntu1 [85.6 kB] 375s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libdaemon0 s390x 0.14-7.1ubuntu4 [13.0 kB] 375s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x avahi-daemon s390x 0.8-14ubuntu1 [66.3 kB] 375s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 375s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x avahi-utils s390x 0.8-14ubuntu1 [26.6 kB] 375s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x bc s390x 1.07.1-4 [90.2 kB] 375s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x python3-msgpack s390x 1.0.3-3build3 [117 kB] 375s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 375s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x borgbackup s390x 1.4.0-4build1 [901 kB] 375s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x cockpit-bridge s390x 332-1 [381 kB] 375s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libduktape207 s390x 2.7.0+tests-0ubuntu3 [150 kB] 375s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libproxy1v5 s390x 0.5.9-1 [27.8 kB] 375s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking-common all 2.80.1-1 [6680 B] 375s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking-services s390x 2.80.1-1 [12.8 kB] 375s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 375s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 375s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 375s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x gsettings-desktop-schemas all 48~beta-1ubuntu1 [37.4 kB] 376s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking s390x 2.80.1-1 [65.5 kB] 376s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x cockpit-ws s390x 332-1 [892 kB] 376s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libpwquality-common all 1.4.5-4 [7714 B] 376s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libcrack2 s390x 2.9.6-5.2 [29.6 kB] 376s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libpwquality1 s390x 1.4.5-4 [14.6 kB] 376s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libpwquality-tools s390x 1.4.5-4 [10.0 kB] 376s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x cockpit-system all 332-1 [3296 kB] 376s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x cockpit all 332-1 [19.2 kB] 376s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x debsecan all 0.4.20.1 [30.4 kB] 376s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x fail2ban all 1.1.0-7 [421 kB] 376s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libnm0 s390x 1.50.0-1ubuntu3 [487 kB] 376s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-nm-1.0 s390x 1.50.0-1ubuntu3 [86.0 kB] 376s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 376s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x polkitd s390x 126-2 [97.1 kB] 376s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-nftables s390x 1.1.0-2 [12.5 kB] 376s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-firewall all 2.3.0-1 [135 kB] 376s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x firewalld all 2.3.0-1 [399 kB] 376s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-fork-awesome all 1.2.0+ds1-1 [603 kB] 376s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-augeas s390x 1.2.0-1 [21.1 kB] 376s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cheroot all 10.0.1+ds1-3 [78.6 kB] 376s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jaraco.collections all 5.1.0-1 [12.7 kB] 376s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 376s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tempora all 5.7.0-2 [15.1 kB] 376s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x python3-portend all 3.2.0-1 [7524 B] 376s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x python3-zc.lockfile all 3.0.post1-1 [7852 B] 376s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cherrypy3 all 18.10.0-1 [211 kB] 376s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x python3-asgiref all 3.8.1-1 [24.8 kB] 376s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlparse all 0.5.3-1 [32.9 kB] 376s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x python3-django all 3:4.2.18-1 [2918 kB] 376s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-bootstrapform all 3.4-9 [7162 B] 376s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x ttf-bitstream-vera all 1.10-8.2 [244 kB] 376s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-ranged-response all 0.2.0-5 [5336 B] 376s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 376s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 376s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 376s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 376s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 376s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 376s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 376s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 377s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 377s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 377s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 377s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 377s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 377s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 377s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 377s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 377s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 377s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 377s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-captcha all 0.6.0-1 [24.4 kB] 377s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-stronghold all 0.4.0+debian-2 [10.7 kB] 377s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 377s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ruamel.yaml.clib s390x 0.2.12+ds-1 [201 kB] 377s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ruamel.yaml all 0.18.10+ds-1 [127 kB] 377s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x batctl s390x 2025.0-1 [83.5 kB] 377s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-josepy all 1.14.0-3 [22.2 kB] 377s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-rfc3339 all 2.0.1-1 [6382 B] 377s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 377s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 377s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-acme all 2.11.0-1 [48.7 kB] 377s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-configargparse all 1.7-2 [31.7 kB] 377s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-parsedatetime all 2.6-3 [32.8 kB] 377s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-certbot all 2.11.0-1 [267 kB] 377s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x certbot all 2.11.0-1 [91.1 kB] 377s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 377s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 377s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x libflite1 s390x 2.2-7 [13.6 MB] 379s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x flite s390x 2.2-7 [250 kB] 379s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-udisks-2.0 s390x 2.10.1-11ubuntu2 [32.3 kB] 379s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x ldap-utils s390x 2.6.9+dfsg-1~exp2ubuntu1 [165 kB] 379s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x ldapscripts all 2.0.8-2 [42.4 kB] 379s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libapache2-mod-auth-pubtkt s390x 0.13-1build3 [35.0 kB] 379s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x libnss-ldapd s390x 0.9.13-1 [30.0 kB] 379s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x libpam-ldapd s390x 0.9.13-1 [17.1 kB] 379s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libintl-perl all 1.33-1build4 [703 kB] 379s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libproc-processtable-perl s390x 0.636-1build4 [36.6 kB] 379s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libsort-naturally-perl all 1.03-4 [13.1 kB] 379s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libmodule-scandeps-perl all 1.37-1 [30.1 kB] 379s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libterm-readkey-perl s390x 2.38-2build5 [23.1 kB] 379s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libmodule-find-perl all 0.16-2 [10.7 kB] 379s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x needrestart all 3.6-8ubuntu7 [49.4 kB] 379s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libbluetooth3 s390x 5.79-1 [77.4 kB] 379s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libndp0 s390x 1.9-1 [13.2 kB] 379s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libteamdctl0 s390x 1.31-1build3 [12.1 kB] 379s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x network-manager s390x 1.50.0-1ubuntu3 [2411 kB] 379s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x php-common all 2:93ubuntu2 [13.9 kB] 379s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-common s390x 8.3.11-0ubuntu4 [745 kB] 379s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-opcache s390x 8.3.11-0ubuntu4 [78.0 kB] 379s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-readline s390x 8.3.11-0ubuntu4 [13.9 kB] 379s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 379s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x php8.3-cli s390x 8.3.11-0ubuntu4 [1940 kB] 379s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x php8.3-fpm s390x 8.3.11-0ubuntu4 [1951 kB] 379s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x php-fpm all 2:8.3+93ubuntu2 [4162 B] 379s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x samba-common all 2:4.20.4+dfsg-1ubuntu5 [68.2 kB] 379s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 379s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libtalloc2 s390x 2.4.2-2build1 [28.4 kB] 379s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libtdb1 s390x 1.4.12-1build1 [49.5 kB] 379s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x libtevent0t64 s390x 0.16.1-3 [42.6 kB] 379s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x libldb2 s390x 2:2.9.1+samba4.20.4+dfsg-1ubuntu5 [194 kB] 379s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libwbclient0 s390x 2:4.20.4+dfsg-1ubuntu5 [75.5 kB] 379s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x samba-libs s390x 2:4.20.4+dfsg-1ubuntu5 [6354 kB] 380s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x samba-common-bin s390x 2:4.20.4+dfsg-1ubuntu5 [1332 kB] 380s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-thread1.83.0 s390x 1.83.0-4ubuntu2 [279 kB] 380s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libbtrfs0t64 s390x 6.12-1build1 [17.0 kB] 380s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x libsnapper7t64 s390x 0.10.6-1.2 [306 kB] 380s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x snapper s390x 0.10.6-1.2 [450 kB] 380s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x sshfs s390x 3.7.3-1.1build3 [46.7 kB] 380s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x sshpass s390x 1.10-0.1 [11.5 kB] 380s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x ssl-cert all 1.1.3ubuntu1 [18.7 kB] 380s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x tdb-tools s390x 1.4.12-1build1 [26.7 kB] 380s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x unattended-upgrades all 2.9.1+nmu4ubuntu1 [51.2 kB] 380s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libyajl2 s390x 2.1.0-5build1 [22.2 kB] 380s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 380s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 380s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 380s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x uwsgi-core s390x 2.0.26-2ubuntu3 [603 kB] 380s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x uwsgi s390x 2.0.26-2ubuntu3 [22.7 kB] 380s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 380s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x uwsgi-plugin-python3 s390x 2.0.26-2ubuntu3 [82.1 kB] 380s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x zram-tools all 0.3.7-1 [6056 B] 380s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 380s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 380s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-bin s390x 2.83.3-2 [99.5 kB] 380s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x node-popper2 all 2.11.2-8 [106 kB] 380s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap5 all 5.3.3+dfsg-3 [382 kB] 380s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x ppp s390x 2.5.1-1+1 [367 kB] 380s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x pppoe s390x 4.0-1ubuntu1 [68.5 kB] 380s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-argon2 s390x 21.1.0-3 [21.3 kB] 380s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-bootstrapform all 3.4-9 [1958 B] 380s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-ipware all 4.0.2-1 [12.0 kB] 380s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-django-axes all 7.0.1-0ubuntu1 [36.8 kB] 380s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pampy all 2.0.2-1 [12.2 kB] 380s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 380s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 380s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x freedombox all 25.2 [3938 kB] 380s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x freedombox-doc-en all 25.2 [41.5 MB] 382s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x freedombox-doc-es all 25.2 [39.9 MB] 383s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x liberror-perl all 0.17029-2 [25.6 kB] 383s Get:186 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x git-man all 1:2.48.1-0ubuntu1 [1148 kB] 383s Get:187 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x git s390x 1:2.48.1-0ubuntu1 [4284 kB] 383s Get:188 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 383s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-metadata all 12-4 [6582 B] 383s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-tablesorter all 1:2.31.3+dfsg1-4 [192 kB] 383s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-throttle-debounce all 1.1+dfsg.1-2 [12.5 kB] 383s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-coverage s390x 7.4.4+dfsg1-0ubuntu3 [150 kB] 383s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 383s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 383s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tomli s390x 2.2.1-2 [153 kB] 383s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 383s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-hotkeys all 0.2.0-1 [13.3 kB] 383s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-isonscreen all 1.2.0-1.1 [3244 B] 383s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-cov all 5.0.0-1 [21.3 kB] 383s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-django all 4.5.2-3 [18.5 kB] 384s Preconfiguring packages ... 384s Fetched 161 MB in 11s (14.2 MB/s) 384s (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.) 384s Removing ufw (0.36.2-9) ... 384s Skip stopping firewall: ufw (not enabled) 384s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 384s for fn in glob1(directory, "%s.*" % fname): 385s Selecting previously unselected package libpython3.12-minimal:s390x. 385s (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 ... 55772 files and directories currently installed.) 385s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 385s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 385s Selecting previously unselected package python3.12-minimal. 385s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 385s Unpacking python3.12-minimal (3.12.9-1) ... 385s Selecting previously unselected package libapr1t64:s390x. 385s Preparing to unpack .../002-libapr1t64_1.7.5-1_s390x.deb ... 385s Unpacking libapr1t64:s390x (1.7.5-1) ... 385s Selecting previously unselected package libaprutil1t64:s390x. 385s Preparing to unpack .../003-libaprutil1t64_1.6.3-3ubuntu2_s390x.deb ... 385s Unpacking libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 385s Selecting previously unselected package libaprutil1-dbd-sqlite3:s390x. 385s Preparing to unpack .../004-libaprutil1-dbd-sqlite3_1.6.3-3ubuntu2_s390x.deb ... 385s Unpacking libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 385s Selecting previously unselected package libaprutil1-ldap:s390x. 385s Preparing to unpack .../005-libaprutil1-ldap_1.6.3-3ubuntu2_s390x.deb ... 385s Unpacking libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 385s Selecting previously unselected package liblua5.4-0:s390x. 385s Preparing to unpack .../006-liblua5.4-0_5.4.7-1_s390x.deb ... 385s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 385s Selecting previously unselected package apache2-bin. 385s Preparing to unpack .../007-apache2-bin_2.4.62-3ubuntu1_s390x.deb ... 385s Unpacking apache2-bin (2.4.62-3ubuntu1) ... 385s Selecting previously unselected package apache2-data. 385s Preparing to unpack .../008-apache2-data_2.4.62-3ubuntu1_all.deb ... 385s Unpacking apache2-data (2.4.62-3ubuntu1) ... 385s Selecting previously unselected package apache2-utils. 385s Preparing to unpack .../009-apache2-utils_2.4.62-3ubuntu1_s390x.deb ... 385s Unpacking apache2-utils (2.4.62-3ubuntu1) ... 385s Selecting previously unselected package apache2. 385s Preparing to unpack .../010-apache2_2.4.62-3ubuntu1_s390x.deb ... 385s Unpacking apache2 (2.4.62-3ubuntu1) ... 385s Selecting previously unselected package fonts-lato. 385s Preparing to unpack .../011-fonts-lato_2.015-1_all.deb ... 385s Unpacking fonts-lato (2.015-1) ... 385s Selecting previously unselected package popularity-contest. 385s Preparing to unpack .../012-popularity-contest_1.77ubuntu1_all.deb ... 385s Unpacking popularity-contest (1.77ubuntu1) ... 385s Selecting previously unselected package sgml-base. 385s Preparing to unpack .../013-sgml-base_1.31_all.deb ... 385s Unpacking sgml-base (1.31) ... 385s Selecting previously unselected package libargon2-1:s390x. 385s Preparing to unpack .../014-libargon2-1_0~20190702+dfsg-4build1_s390x.deb ... 385s Unpacking libargon2-1:s390x (0~20190702+dfsg-4build1) ... 385s Selecting previously unselected package libltdl7:s390x. 385s Preparing to unpack .../015-libltdl7_2.5.4-3build1_s390x.deb ... 385s Unpacking libltdl7:s390x (2.5.4-3build1) ... 385s Selecting previously unselected package libodbc2:s390x. 385s Preparing to unpack .../016-libodbc2_2.3.12-2ubuntu1_s390x.deb ... 385s Unpacking libodbc2:s390x (2.3.12-2ubuntu1) ... 385s Selecting previously unselected package slapd. 385s Preparing to unpack .../017-slapd_2.6.9+dfsg-1~exp2ubuntu1_s390x.deb ... 385s Unpacking slapd (2.6.9+dfsg-1~exp2ubuntu1) ... 385s Selecting previously unselected package nslcd. 385s Preparing to unpack .../018-nslcd_0.9.13-1_s390x.deb ... 385s Unpacking nslcd (0.9.13-1) ... 385s Selecting previously unselected package libnsl2:s390x. 385s Preparing to unpack .../019-libnsl2_1.3.0-3build3_s390x.deb ... 385s Unpacking libnsl2:s390x (1.3.0-3build3) ... 385s Selecting previously unselected package libpython3.12-stdlib:s390x. 385s Preparing to unpack .../020-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 385s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 385s Selecting previously unselected package python3.12. 385s Preparing to unpack .../021-python3.12_3.12.9-1_s390x.deb ... 385s Unpacking python3.12 (3.12.9-1) ... 385s Selecting previously unselected package python3-distro-info. 385s Preparing to unpack .../022-python3-distro-info_1.13_all.deb ... 385s Unpacking python3-distro-info (1.13) ... 385s Selecting previously unselected package augeas-lenses. 385s Preparing to unpack .../023-augeas-lenses_1.14.1-1build2_all.deb ... 385s Unpacking augeas-lenses (1.14.1-1build2) ... 385s Selecting previously unselected package libaugeas0:s390x. 385s Preparing to unpack .../024-libaugeas0_1.14.1-1build2_s390x.deb ... 385s Unpacking libaugeas0:s390x (1.14.1-1build2) ... 385s Selecting previously unselected package augeas-tools. 385s Preparing to unpack .../025-augeas-tools_1.14.1-1build2_s390x.deb ... 385s Unpacking augeas-tools (1.14.1-1build2) ... 385s Selecting previously unselected package libavahi-common-data:s390x. 385s Preparing to unpack .../026-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 385s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 385s Selecting previously unselected package libavahi-common3:s390x. 385s Preparing to unpack .../027-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 385s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 385s Selecting previously unselected package libavahi-core7:s390x. 385s Preparing to unpack .../028-libavahi-core7_0.8-14ubuntu1_s390x.deb ... 385s Unpacking libavahi-core7:s390x (0.8-14ubuntu1) ... 385s Selecting previously unselected package libdaemon0:s390x. 385s Preparing to unpack .../029-libdaemon0_0.14-7.1ubuntu4_s390x.deb ... 385s Unpacking libdaemon0:s390x (0.14-7.1ubuntu4) ... 385s Selecting previously unselected package avahi-daemon. 385s Preparing to unpack .../030-avahi-daemon_0.8-14ubuntu1_s390x.deb ... 385s Unpacking avahi-daemon (0.8-14ubuntu1) ... 385s Selecting previously unselected package libavahi-client3:s390x. 385s Preparing to unpack .../031-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 385s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 386s Selecting previously unselected package avahi-utils. 386s Preparing to unpack .../032-avahi-utils_0.8-14ubuntu1_s390x.deb ... 386s Unpacking avahi-utils (0.8-14ubuntu1) ... 386s Selecting previously unselected package bc. 386s Preparing to unpack .../033-bc_1.07.1-4_s390x.deb ... 386s Unpacking bc (1.07.1-4) ... 386s Selecting previously unselected package python3-msgpack. 386s Preparing to unpack .../034-python3-msgpack_1.0.3-3build3_s390x.deb ... 386s Unpacking python3-msgpack (1.0.3-3build3) ... 386s Selecting previously unselected package python3-packaging. 386s Preparing to unpack .../035-python3-packaging_24.2-1_all.deb ... 386s Unpacking python3-packaging (24.2-1) ... 386s Selecting previously unselected package borgbackup. 386s Preparing to unpack .../036-borgbackup_1.4.0-4build1_s390x.deb ... 386s Unpacking borgbackup (1.4.0-4build1) ... 386s Selecting previously unselected package cockpit-bridge. 386s Preparing to unpack .../037-cockpit-bridge_332-1_s390x.deb ... 386s Unpacking cockpit-bridge (332-1) ... 386s Selecting previously unselected package libduktape207:s390x. 386s Preparing to unpack .../038-libduktape207_2.7.0+tests-0ubuntu3_s390x.deb ... 386s Unpacking libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 386s Selecting previously unselected package libproxy1v5:s390x. 386s Preparing to unpack .../039-libproxy1v5_0.5.9-1_s390x.deb ... 386s Unpacking libproxy1v5:s390x (0.5.9-1) ... 386s Selecting previously unselected package glib-networking-common. 386s Preparing to unpack .../040-glib-networking-common_2.80.1-1_all.deb ... 386s Unpacking glib-networking-common (2.80.1-1) ... 386s Selecting previously unselected package glib-networking-services. 386s Preparing to unpack .../041-glib-networking-services_2.80.1-1_s390x.deb ... 386s Unpacking glib-networking-services (2.80.1-1) ... 386s Selecting previously unselected package libdconf1:s390x. 386s Preparing to unpack .../042-libdconf1_0.40.0-5_s390x.deb ... 386s Unpacking libdconf1:s390x (0.40.0-5) ... 386s Selecting previously unselected package dconf-service. 386s Preparing to unpack .../043-dconf-service_0.40.0-5_s390x.deb ... 386s Unpacking dconf-service (0.40.0-5) ... 386s Selecting previously unselected package dconf-gsettings-backend:s390x. 386s Preparing to unpack .../044-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 386s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 386s Selecting previously unselected package gsettings-desktop-schemas. 386s Preparing to unpack .../045-gsettings-desktop-schemas_48~beta-1ubuntu1_all.deb ... 386s Unpacking gsettings-desktop-schemas (48~beta-1ubuntu1) ... 386s Selecting previously unselected package glib-networking:s390x. 386s Preparing to unpack .../046-glib-networking_2.80.1-1_s390x.deb ... 386s Unpacking glib-networking:s390x (2.80.1-1) ... 386s Selecting previously unselected package cockpit-ws. 386s Preparing to unpack .../047-cockpit-ws_332-1_s390x.deb ... 386s Unpacking cockpit-ws (332-1) ... 386s Selecting previously unselected package libpwquality-common. 386s Preparing to unpack .../048-libpwquality-common_1.4.5-4_all.deb ... 386s Unpacking libpwquality-common (1.4.5-4) ... 386s Selecting previously unselected package libcrack2:s390x. 386s Preparing to unpack .../049-libcrack2_2.9.6-5.2_s390x.deb ... 386s Unpacking libcrack2:s390x (2.9.6-5.2) ... 386s Selecting previously unselected package libpwquality1:s390x. 386s Preparing to unpack .../050-libpwquality1_1.4.5-4_s390x.deb ... 386s Unpacking libpwquality1:s390x (1.4.5-4) ... 386s Selecting previously unselected package libpwquality-tools. 386s Preparing to unpack .../051-libpwquality-tools_1.4.5-4_s390x.deb ... 386s Unpacking libpwquality-tools (1.4.5-4) ... 386s Selecting previously unselected package cockpit-system. 386s Preparing to unpack .../052-cockpit-system_332-1_all.deb ... 386s Unpacking cockpit-system (332-1) ... 386s Selecting previously unselected package cockpit. 386s Preparing to unpack .../053-cockpit_332-1_all.deb ... 386s Unpacking cockpit (332-1) ... 386s Selecting previously unselected package debsecan. 386s Preparing to unpack .../054-debsecan_0.4.20.1_all.deb ... 386s Unpacking debsecan (0.4.20.1) ... 386s Selecting previously unselected package fail2ban. 386s Preparing to unpack .../055-fail2ban_1.1.0-7_all.deb ... 386s Unpacking fail2ban (1.1.0-7) ... 386s Selecting previously unselected package libnm0:s390x. 386s Preparing to unpack .../056-libnm0_1.50.0-1ubuntu3_s390x.deb ... 386s Unpacking libnm0:s390x (1.50.0-1ubuntu3) ... 386s Selecting previously unselected package gir1.2-nm-1.0:s390x. 386s Preparing to unpack .../057-gir1.2-nm-1.0_1.50.0-1ubuntu3_s390x.deb ... 386s Unpacking gir1.2-nm-1.0:s390x (1.50.0-1ubuntu3) ... 386s Selecting previously unselected package xml-core. 386s Preparing to unpack .../058-xml-core_0.19_all.deb ... 386s Unpacking xml-core (0.19) ... 386s Selecting previously unselected package polkitd. 386s Preparing to unpack .../059-polkitd_126-2_s390x.deb ... 386s Unpacking polkitd (126-2) ... 386s Selecting previously unselected package python3-nftables. 386s Preparing to unpack .../060-python3-nftables_1.1.0-2_s390x.deb ... 386s Unpacking python3-nftables (1.1.0-2) ... 386s Selecting previously unselected package python3-firewall. 386s Preparing to unpack .../061-python3-firewall_2.3.0-1_all.deb ... 386s Unpacking python3-firewall (2.3.0-1) ... 386s Selecting previously unselected package firewalld. 386s Preparing to unpack .../062-firewalld_2.3.0-1_all.deb ... 386s Unpacking firewalld (2.3.0-1) ... 386s Selecting previously unselected package fonts-fork-awesome. 386s Preparing to unpack .../063-fonts-fork-awesome_1.2.0+ds1-1_all.deb ... 386s Unpacking fonts-fork-awesome (1.2.0+ds1-1) ... 386s Selecting previously unselected package python3-augeas. 386s Preparing to unpack .../064-python3-augeas_1.2.0-1_s390x.deb ... 386s Unpacking python3-augeas (1.2.0-1) ... 386s Selecting previously unselected package python3-cheroot. 386s Preparing to unpack .../065-python3-cheroot_10.0.1+ds1-3_all.deb ... 386s Unpacking python3-cheroot (10.0.1+ds1-3) ... 386s Selecting previously unselected package python3-jaraco.collections. 386s Preparing to unpack .../066-python3-jaraco.collections_5.1.0-1_all.deb ... 386s Unpacking python3-jaraco.collections (5.1.0-1) ... 386s Selecting previously unselected package python3-dateutil. 386s Preparing to unpack .../067-python3-dateutil_2.9.0-3_all.deb ... 386s Unpacking python3-dateutil (2.9.0-3) ... 386s Selecting previously unselected package python3-tempora. 386s Preparing to unpack .../068-python3-tempora_5.7.0-2_all.deb ... 386s Unpacking python3-tempora (5.7.0-2) ... 386s Selecting previously unselected package python3-portend. 386s Preparing to unpack .../069-python3-portend_3.2.0-1_all.deb ... 386s Unpacking python3-portend (3.2.0-1) ... 386s Selecting previously unselected package python3-zc.lockfile. 386s Preparing to unpack .../070-python3-zc.lockfile_3.0.post1-1_all.deb ... 386s Unpacking python3-zc.lockfile (3.0.post1-1) ... 386s Selecting previously unselected package python3-cherrypy3. 386s Preparing to unpack .../071-python3-cherrypy3_18.10.0-1_all.deb ... 386s Unpacking python3-cherrypy3 (18.10.0-1) ... 386s Selecting previously unselected package python3-asgiref. 386s Preparing to unpack .../072-python3-asgiref_3.8.1-1_all.deb ... 386s Unpacking python3-asgiref (3.8.1-1) ... 386s Selecting previously unselected package python3-sqlparse. 386s Preparing to unpack .../073-python3-sqlparse_0.5.3-1_all.deb ... 386s Unpacking python3-sqlparse (0.5.3-1) ... 386s Selecting previously unselected package python3-django. 386s Preparing to unpack .../074-python3-django_3%3a4.2.18-1_all.deb ... 386s Unpacking python3-django (3:4.2.18-1) ... 387s Selecting previously unselected package python3-django-bootstrapform. 387s Preparing to unpack .../075-python3-django-bootstrapform_3.4-9_all.deb ... 387s Unpacking python3-django-bootstrapform (3.4-9) ... 387s Selecting previously unselected package ttf-bitstream-vera. 387s Preparing to unpack .../076-ttf-bitstream-vera_1.10-8.2_all.deb ... 387s Unpacking ttf-bitstream-vera (1.10-8.2) ... 387s Selecting previously unselected package python3-django-ranged-response. 387s Preparing to unpack .../077-python3-django-ranged-response_0.2.0-5_all.deb ... 387s Unpacking python3-django-ranged-response (0.2.0-5) ... 387s Selecting previously unselected package libfreetype6:s390x. 387s Preparing to unpack .../078-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 387s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 387s Selecting previously unselected package libgomp1:s390x. 387s Preparing to unpack .../079-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 387s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 387s Selecting previously unselected package libimagequant0:s390x. 387s Preparing to unpack .../080-libimagequant0_2.18.0-1build1_s390x.deb ... 387s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 387s Selecting previously unselected package libjpeg-turbo8:s390x. 387s Preparing to unpack .../081-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 387s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 387s Selecting previously unselected package libjpeg8:s390x. 387s Preparing to unpack .../082-libjpeg8_8c-2ubuntu11_s390x.deb ... 387s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 387s Selecting previously unselected package liblcms2-2:s390x. 387s Preparing to unpack .../083-liblcms2-2_2.16-2_s390x.deb ... 387s Unpacking liblcms2-2:s390x (2.16-2) ... 387s Selecting previously unselected package libopenjp2-7:s390x. 387s Preparing to unpack .../084-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 387s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 387s Selecting previously unselected package libgraphite2-3:s390x. 387s Preparing to unpack .../085-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 387s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 387s Selecting previously unselected package libharfbuzz0b:s390x. 387s Preparing to unpack .../086-libharfbuzz0b_10.2.0-1_s390x.deb ... 387s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 387s Selecting previously unselected package libraqm0:s390x. 387s Preparing to unpack .../087-libraqm0_0.10.2-1_s390x.deb ... 387s Unpacking libraqm0:s390x (0.10.2-1) ... 387s Selecting previously unselected package libdeflate0:s390x. 387s Preparing to unpack .../088-libdeflate0_1.23-1_s390x.deb ... 387s Unpacking libdeflate0:s390x (1.23-1) ... 387s Selecting previously unselected package libjbig0:s390x. 387s Preparing to unpack .../089-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 387s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 387s Selecting previously unselected package libsharpyuv0:s390x. 387s Preparing to unpack .../090-libsharpyuv0_1.5.0-0.1_s390x.deb ... 387s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 387s Selecting previously unselected package libwebp7:s390x. 387s Preparing to unpack .../091-libwebp7_1.5.0-0.1_s390x.deb ... 387s Unpacking libwebp7:s390x (1.5.0-0.1) ... 387s Selecting previously unselected package libtiff6:s390x. 387s Preparing to unpack .../092-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 387s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 387s Selecting previously unselected package libwebpdemux2:s390x. 387s Preparing to unpack .../093-libwebpdemux2_1.5.0-0.1_s390x.deb ... 387s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 387s Selecting previously unselected package libwebpmux3:s390x. 387s Preparing to unpack .../094-libwebpmux3_1.5.0-0.1_s390x.deb ... 387s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 387s Selecting previously unselected package python3-pil:s390x. 387s Preparing to unpack .../095-python3-pil_11.1.0-5_s390x.deb ... 387s Unpacking python3-pil:s390x (11.1.0-5) ... 387s Selecting previously unselected package python3-django-captcha. 387s Preparing to unpack .../096-python3-django-captcha_0.6.0-1_all.deb ... 387s Unpacking python3-django-captcha (0.6.0-1) ... 387s Selecting previously unselected package python3-django-stronghold. 387s Preparing to unpack .../097-python3-django-stronghold_0.4.0+debian-2_all.deb ... 387s Unpacking python3-django-stronghold (0.4.0+debian-2) ... 387s Selecting previously unselected package python3-psutil. 387s Preparing to unpack .../098-python3-psutil_5.9.8-2build3_s390x.deb ... 387s Unpacking python3-psutil (5.9.8-2build3) ... 387s Selecting previously unselected package python3-ruamel.yaml.clib. 387s Preparing to unpack .../099-python3-ruamel.yaml.clib_0.2.12+ds-1_s390x.deb ... 387s Unpacking python3-ruamel.yaml.clib (0.2.12+ds-1) ... 387s Selecting previously unselected package python3-ruamel.yaml. 387s Preparing to unpack .../100-python3-ruamel.yaml_0.18.10+ds-1_all.deb ... 387s Unpacking python3-ruamel.yaml (0.18.10+ds-1) ... 387s Selecting previously unselected package batctl. 387s Preparing to unpack .../101-batctl_2025.0-1_s390x.deb ... 387s Unpacking batctl (2025.0-1) ... 387s Selecting previously unselected package python3-josepy. 387s Preparing to unpack .../102-python3-josepy_1.14.0-3_all.deb ... 387s Unpacking python3-josepy (1.14.0-3) ... 387s Selecting previously unselected package python3-rfc3339. 387s Preparing to unpack .../103-python3-rfc3339_2.0.1-1_all.deb ... 387s Unpacking python3-rfc3339 (2.0.1-1) ... 387s Selecting previously unselected package python3-pytz. 387s Preparing to unpack .../104-python3-pytz_2025.1-3_all.deb ... 387s Unpacking python3-pytz (2025.1-3) ... 387s Selecting previously unselected package python3-tz. 387s Preparing to unpack .../105-python3-tz_2025.1-3_all.deb ... 387s Unpacking python3-tz (2025.1-3) ... 387s Selecting previously unselected package python3-acme. 387s Preparing to unpack .../106-python3-acme_2.11.0-1_all.deb ... 387s Unpacking python3-acme (2.11.0-1) ... 387s Selecting previously unselected package python3-configargparse. 387s Preparing to unpack .../107-python3-configargparse_1.7-2_all.deb ... 387s Unpacking python3-configargparse (1.7-2) ... 387s Selecting previously unselected package python3-parsedatetime. 387s Preparing to unpack .../108-python3-parsedatetime_2.6-3_all.deb ... 387s Unpacking python3-parsedatetime (2.6-3) ... 387s Selecting previously unselected package python3-certbot. 387s Preparing to unpack .../109-python3-certbot_2.11.0-1_all.deb ... 387s Unpacking python3-certbot (2.11.0-1) ... 387s Selecting previously unselected package certbot. 387s Preparing to unpack .../110-certbot_2.11.0-1_all.deb ... 387s Unpacking certbot (2.11.0-1) ... 387s Selecting previously unselected package libasound2-data. 387s Preparing to unpack .../111-libasound2-data_1.2.13-1build1_all.deb ... 387s Unpacking libasound2-data (1.2.13-1build1) ... 387s Selecting previously unselected package libasound2t64:s390x. 387s Preparing to unpack .../112-libasound2t64_1.2.13-1build1_s390x.deb ... 387s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 387s Selecting previously unselected package libflite1:s390x. 387s Preparing to unpack .../113-libflite1_2.2-7_s390x.deb ... 387s Unpacking libflite1:s390x (2.2-7) ... 387s Selecting previously unselected package flite. 387s Preparing to unpack .../114-flite_2.2-7_s390x.deb ... 387s Unpacking flite (2.2-7) ... 387s Selecting previously unselected package gir1.2-udisks-2.0:s390x. 387s Preparing to unpack .../115-gir1.2-udisks-2.0_2.10.1-11ubuntu2_s390x.deb ... 387s Unpacking gir1.2-udisks-2.0:s390x (2.10.1-11ubuntu2) ... 387s Selecting previously unselected package ldap-utils. 387s Preparing to unpack .../116-ldap-utils_2.6.9+dfsg-1~exp2ubuntu1_s390x.deb ... 387s Unpacking ldap-utils (2.6.9+dfsg-1~exp2ubuntu1) ... 387s Selecting previously unselected package ldapscripts. 387s Preparing to unpack .../117-ldapscripts_2.0.8-2_all.deb ... 387s Unpacking ldapscripts (2.0.8-2) ... 387s Selecting previously unselected package libapache2-mod-auth-pubtkt. 387s Preparing to unpack .../118-libapache2-mod-auth-pubtkt_0.13-1build3_s390x.deb ... 387s Unpacking libapache2-mod-auth-pubtkt (0.13-1build3) ... 387s Selecting previously unselected package libnss-ldapd:s390x. 387s Preparing to unpack .../119-libnss-ldapd_0.9.13-1_s390x.deb ... 387s Unpacking libnss-ldapd:s390x (0.9.13-1) ... 387s Selecting previously unselected package libpam-ldapd:s390x. 387s Preparing to unpack .../120-libpam-ldapd_0.9.13-1_s390x.deb ... 387s Unpacking libpam-ldapd:s390x (0.9.13-1) ... 387s Selecting previously unselected package libintl-perl. 387s Preparing to unpack .../121-libintl-perl_1.33-1build4_all.deb ... 387s Unpacking libintl-perl (1.33-1build4) ... 387s Selecting previously unselected package libproc-processtable-perl:s390x. 387s Preparing to unpack .../122-libproc-processtable-perl_0.636-1build4_s390x.deb ... 387s Unpacking libproc-processtable-perl:s390x (0.636-1build4) ... 387s Selecting previously unselected package libsort-naturally-perl. 387s Preparing to unpack .../123-libsort-naturally-perl_1.03-4_all.deb ... 387s Unpacking libsort-naturally-perl (1.03-4) ... 387s Selecting previously unselected package libmodule-scandeps-perl. 387s Preparing to unpack .../124-libmodule-scandeps-perl_1.37-1_all.deb ... 387s Unpacking libmodule-scandeps-perl (1.37-1) ... 387s Selecting previously unselected package libterm-readkey-perl. 387s Preparing to unpack .../125-libterm-readkey-perl_2.38-2build5_s390x.deb ... 387s Unpacking libterm-readkey-perl (2.38-2build5) ... 387s Selecting previously unselected package libmodule-find-perl. 387s Preparing to unpack .../126-libmodule-find-perl_0.16-2_all.deb ... 387s Unpacking libmodule-find-perl (0.16-2) ... 387s Selecting previously unselected package needrestart. 387s Preparing to unpack .../127-needrestart_3.6-8ubuntu7_all.deb ... 387s Unpacking needrestart (3.6-8ubuntu7) ... 387s Selecting previously unselected package libbluetooth3:s390x. 387s Preparing to unpack .../128-libbluetooth3_5.79-1_s390x.deb ... 387s Unpacking libbluetooth3:s390x (5.79-1) ... 387s Selecting previously unselected package libndp0:s390x. 387s Preparing to unpack .../129-libndp0_1.9-1_s390x.deb ... 387s Unpacking libndp0:s390x (1.9-1) ... 387s Selecting previously unselected package libteamdctl0:s390x. 387s Preparing to unpack .../130-libteamdctl0_1.31-1build3_s390x.deb ... 387s Unpacking libteamdctl0:s390x (1.31-1build3) ... 387s Selecting previously unselected package network-manager. 387s Preparing to unpack .../131-network-manager_1.50.0-1ubuntu3_s390x.deb ... 387s ls: cannot access '/etc/NetworkManager/system-connections': No such file or directory 387s Unpacking network-manager (1.50.0-1ubuntu3) ... 388s Selecting previously unselected package php-common. 388s Preparing to unpack .../132-php-common_2%3a93ubuntu2_all.deb ... 388s Unpacking php-common (2:93ubuntu2) ... 388s Selecting previously unselected package php8.3-common. 388s Preparing to unpack .../133-php8.3-common_8.3.11-0ubuntu4_s390x.deb ... 388s Unpacking php8.3-common (8.3.11-0ubuntu4) ... 388s Selecting previously unselected package php8.3-opcache. 388s Preparing to unpack .../134-php8.3-opcache_8.3.11-0ubuntu4_s390x.deb ... 388s Unpacking php8.3-opcache (8.3.11-0ubuntu4) ... 388s Selecting previously unselected package php8.3-readline. 388s Preparing to unpack .../135-php8.3-readline_8.3.11-0ubuntu4_s390x.deb ... 388s Unpacking php8.3-readline (8.3.11-0ubuntu4) ... 388s Selecting previously unselected package libsodium23:s390x. 388s Preparing to unpack .../136-libsodium23_1.0.18-1build3_s390x.deb ... 388s Unpacking libsodium23:s390x (1.0.18-1build3) ... 388s Selecting previously unselected package php8.3-cli. 388s Preparing to unpack .../137-php8.3-cli_8.3.11-0ubuntu4_s390x.deb ... 388s Unpacking php8.3-cli (8.3.11-0ubuntu4) ... 388s Selecting previously unselected package php8.3-fpm. 388s Preparing to unpack .../138-php8.3-fpm_8.3.11-0ubuntu4_s390x.deb ... 388s Unpacking php8.3-fpm (8.3.11-0ubuntu4) ... 388s Selecting previously unselected package php-fpm. 388s Preparing to unpack .../139-php-fpm_2%3a8.3+93ubuntu2_all.deb ... 388s Unpacking php-fpm (2:8.3+93ubuntu2) ... 388s Selecting previously unselected package samba-common. 388s Preparing to unpack .../140-samba-common_2%3a4.20.4+dfsg-1ubuntu5_all.deb ... 388s Unpacking samba-common (2:4.20.4+dfsg-1ubuntu5) ... 388s Selecting previously unselected package libcups2t64:s390x. 388s Preparing to unpack .../141-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 388s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 388s Selecting previously unselected package libtalloc2:s390x. 388s Preparing to unpack .../142-libtalloc2_2.4.2-2build1_s390x.deb ... 388s Unpacking libtalloc2:s390x (2.4.2-2build1) ... 388s Selecting previously unselected package libtdb1:s390x. 388s Preparing to unpack .../143-libtdb1_1.4.12-1build1_s390x.deb ... 388s Unpacking libtdb1:s390x (1.4.12-1build1) ... 388s Selecting previously unselected package libtevent0t64:s390x. 388s Preparing to unpack .../144-libtevent0t64_0.16.1-3_s390x.deb ... 388s Unpacking libtevent0t64:s390x (0.16.1-3) ... 388s Selecting previously unselected package libldb2:s390x. 388s Preparing to unpack .../145-libldb2_2%3a2.9.1+samba4.20.4+dfsg-1ubuntu5_s390x.deb ... 388s Unpacking libldb2:s390x (2:2.9.1+samba4.20.4+dfsg-1ubuntu5) ... 388s Selecting previously unselected package libwbclient0:s390x. 388s Preparing to unpack .../146-libwbclient0_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 388s Unpacking libwbclient0:s390x (2:4.20.4+dfsg-1ubuntu5) ... 388s Selecting previously unselected package samba-libs:s390x. 388s Preparing to unpack .../147-samba-libs_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 388s Unpacking samba-libs:s390x (2:4.20.4+dfsg-1ubuntu5) ... 388s Selecting previously unselected package samba-common-bin. 388s Preparing to unpack .../148-samba-common-bin_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 388s Unpacking samba-common-bin (2:4.20.4+dfsg-1ubuntu5) ... 388s Selecting previously unselected package libboost-thread1.83.0:s390x. 388s Preparing to unpack .../149-libboost-thread1.83.0_1.83.0-4ubuntu2_s390x.deb ... 388s Unpacking libboost-thread1.83.0:s390x (1.83.0-4ubuntu2) ... 388s Selecting previously unselected package libbtrfs0t64:s390x. 388s Preparing to unpack .../150-libbtrfs0t64_6.12-1build1_s390x.deb ... 388s Unpacking libbtrfs0t64:s390x (6.12-1build1) ... 388s Selecting previously unselected package libsnapper7t64:s390x. 388s Preparing to unpack .../151-libsnapper7t64_0.10.6-1.2_s390x.deb ... 388s Unpacking libsnapper7t64:s390x (0.10.6-1.2) ... 388s Selecting previously unselected package snapper. 388s Preparing to unpack .../152-snapper_0.10.6-1.2_s390x.deb ... 388s Unpacking snapper (0.10.6-1.2) ... 388s Selecting previously unselected package sshfs. 388s Preparing to unpack .../153-sshfs_3.7.3-1.1build3_s390x.deb ... 388s Unpacking sshfs (3.7.3-1.1build3) ... 388s Selecting previously unselected package sshpass. 388s Preparing to unpack .../154-sshpass_1.10-0.1_s390x.deb ... 388s Unpacking sshpass (1.10-0.1) ... 388s Selecting previously unselected package ssl-cert. 388s Preparing to unpack .../155-ssl-cert_1.1.3ubuntu1_all.deb ... 388s Unpacking ssl-cert (1.1.3ubuntu1) ... 388s Selecting previously unselected package tdb-tools. 388s Preparing to unpack .../156-tdb-tools_1.4.12-1build1_s390x.deb ... 388s Unpacking tdb-tools (1.4.12-1build1) ... 388s Selecting previously unselected package unattended-upgrades. 388s Preparing to unpack .../157-unattended-upgrades_2.9.1+nmu4ubuntu1_all.deb ... 388s Unpacking unattended-upgrades (2.9.1+nmu4ubuntu1) ... 388s Selecting previously unselected package libyajl2:s390x. 388s Preparing to unpack .../158-libyajl2_2.1.0-5build1_s390x.deb ... 388s Unpacking libyajl2:s390x (2.1.0-5build1) ... 388s Selecting previously unselected package libnorm1t64:s390x. 388s Preparing to unpack .../159-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 388s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 388s Selecting previously unselected package libpgm-5.3-0t64:s390x. 388s Preparing to unpack .../160-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 388s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 388s Selecting previously unselected package libzmq5:s390x. 388s Preparing to unpack .../161-libzmq5_4.3.5-1build2_s390x.deb ... 388s Unpacking libzmq5:s390x (4.3.5-1build2) ... 388s Selecting previously unselected package uwsgi-core. 388s Preparing to unpack .../162-uwsgi-core_2.0.26-2ubuntu3_s390x.deb ... 388s Unpacking uwsgi-core (2.0.26-2ubuntu3) ... 388s Selecting previously unselected package uwsgi. 388s Preparing to unpack .../163-uwsgi_2.0.26-2ubuntu3_s390x.deb ... 388s Unpacking uwsgi (2.0.26-2ubuntu3) ... 388s Selecting previously unselected package libpython3.12t64:s390x. 388s Preparing to unpack .../164-libpython3.12t64_3.12.9-1_s390x.deb ... 388s Unpacking libpython3.12t64:s390x (3.12.9-1) ... 388s Selecting previously unselected package uwsgi-plugin-python3. 388s Preparing to unpack .../165-uwsgi-plugin-python3_2.0.26-2ubuntu3_s390x.deb ... 388s Unpacking uwsgi-plugin-python3 (2.0.26-2ubuntu3) ... 388s Selecting previously unselected package zram-tools. 388s Preparing to unpack .../166-zram-tools_0.3.7-1_all.deb ... 388s Unpacking zram-tools (0.3.7-1) ... 388s Selecting previously unselected package gettext. 388s Preparing to unpack .../167-gettext_0.23.1-1_s390x.deb ... 388s Unpacking gettext (0.23.1-1) ... 388s Selecting previously unselected package javascript-common. 388s Preparing to unpack .../168-javascript-common_11+nmu1_all.deb ... 388s Unpacking javascript-common (11+nmu1) ... 388s Selecting previously unselected package libglib2.0-bin. 388s Preparing to unpack .../169-libglib2.0-bin_2.83.3-2_s390x.deb ... 388s Unpacking libglib2.0-bin (2.83.3-2) ... 388s Selecting previously unselected package node-popper2. 388s Preparing to unpack .../170-node-popper2_2.11.2-8_all.deb ... 388s Unpacking node-popper2 (2.11.2-8) ... 388s Selecting previously unselected package libjs-bootstrap5. 388s Preparing to unpack .../171-libjs-bootstrap5_5.3.3+dfsg-3_all.deb ... 388s Unpacking libjs-bootstrap5 (5.3.3+dfsg-3) ... 388s Selecting previously unselected package ppp. 388s Preparing to unpack .../172-ppp_2.5.1-1+1_s390x.deb ... 389s Unpacking ppp (2.5.1-1+1) ... 389s Selecting previously unselected package pppoe. 389s Preparing to unpack .../173-pppoe_4.0-1ubuntu1_s390x.deb ... 389s Unpacking pppoe (4.0-1ubuntu1) ... 389s Selecting previously unselected package python3-argon2. 389s Preparing to unpack .../174-python3-argon2_21.1.0-3_s390x.deb ... 389s Unpacking python3-argon2 (21.1.0-3) ... 389s Selecting previously unselected package python3-bootstrapform. 389s Preparing to unpack .../175-python3-bootstrapform_3.4-9_all.deb ... 389s Unpacking python3-bootstrapform (3.4-9) ... 389s Selecting previously unselected package python3-django-ipware. 389s Preparing to unpack .../176-python3-django-ipware_4.0.2-1_all.deb ... 389s Unpacking python3-django-ipware (4.0.2-1) ... 389s Selecting previously unselected package python3-django-axes. 389s Preparing to unpack .../177-python3-django-axes_7.0.1-0ubuntu1_all.deb ... 389s Unpacking python3-django-axes (7.0.1-0ubuntu1) ... 389s Selecting previously unselected package python3-pampy. 389s Preparing to unpack .../178-python3-pampy_2.0.2-1_all.deb ... 389s Unpacking python3-pampy (2.0.2-1) ... 389s Selecting previously unselected package python3-ptyprocess. 389s Preparing to unpack .../179-python3-ptyprocess_0.7.0-6_all.deb ... 389s Unpacking python3-ptyprocess (0.7.0-6) ... 389s Selecting previously unselected package python3-pexpect. 389s Preparing to unpack .../180-python3-pexpect_4.9-3_all.deb ... 389s Unpacking python3-pexpect (4.9-3) ... 389s Selecting previously unselected package freedombox. 389s Preparing to unpack .../181-freedombox_25.2_all.deb ... 389s Unpacking freedombox (25.2) ... 389s Selecting previously unselected package freedombox-doc-en. 389s Preparing to unpack .../182-freedombox-doc-en_25.2_all.deb ... 389s Unpacking freedombox-doc-en (25.2) ... 389s Selecting previously unselected package freedombox-doc-es. 389s Preparing to unpack .../183-freedombox-doc-es_25.2_all.deb ... 389s Unpacking freedombox-doc-es (25.2) ... 390s Selecting previously unselected package liberror-perl. 390s Preparing to unpack .../184-liberror-perl_0.17029-2_all.deb ... 390s Unpacking liberror-perl (0.17029-2) ... 390s Selecting previously unselected package git-man. 390s Preparing to unpack .../185-git-man_1%3a2.48.1-0ubuntu1_all.deb ... 390s Unpacking git-man (1:2.48.1-0ubuntu1) ... 390s Selecting previously unselected package git. 390s Preparing to unpack .../186-git_1%3a2.48.1-0ubuntu1_s390x.deb ... 390s Unpacking git (1:2.48.1-0ubuntu1) ... 390s Selecting previously unselected package libjs-jquery. 390s Preparing to unpack .../187-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 390s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 390s Selecting previously unselected package libjs-jquery-metadata. 390s Preparing to unpack .../188-libjs-jquery-metadata_12-4_all.deb ... 390s Unpacking libjs-jquery-metadata (12-4) ... 390s Selecting previously unselected package libjs-jquery-tablesorter. 390s Preparing to unpack .../189-libjs-jquery-tablesorter_1%3a2.31.3+dfsg1-4_all.deb ... 390s Unpacking libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 390s Selecting previously unselected package libjs-jquery-throttle-debounce. 390s Preparing to unpack .../190-libjs-jquery-throttle-debounce_1.1+dfsg.1-2_all.deb ... 390s Unpacking libjs-jquery-throttle-debounce (1.1+dfsg.1-2) ... 390s Selecting previously unselected package python3-coverage. 390s Preparing to unpack .../191-python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb ... 390s Unpacking python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 390s Selecting previously unselected package python3-iniconfig. 390s Preparing to unpack .../192-python3-iniconfig_1.1.1-2_all.deb ... 390s Unpacking python3-iniconfig (1.1.1-2) ... 390s Selecting previously unselected package python3-pluggy. 390s Preparing to unpack .../193-python3-pluggy_1.5.0-1_all.deb ... 390s Unpacking python3-pluggy (1.5.0-1) ... 390s Selecting previously unselected package python3-tomli. 390s Preparing to unpack .../194-python3-tomli_2.2.1-2_s390x.deb ... 390s Unpacking python3-tomli (2.2.1-2) ... 390s Selecting previously unselected package python3-pytest. 390s Preparing to unpack .../195-python3-pytest_8.3.4-1_all.deb ... 390s Unpacking python3-pytest (8.3.4-1) ... 390s Selecting previously unselected package libjs-jquery-hotkeys. 390s Preparing to unpack .../196-libjs-jquery-hotkeys_0.2.0-1_all.deb ... 390s Unpacking libjs-jquery-hotkeys (0.2.0-1) ... 390s Selecting previously unselected package libjs-jquery-isonscreen. 390s Preparing to unpack .../197-libjs-jquery-isonscreen_1.2.0-1.1_all.deb ... 390s Unpacking libjs-jquery-isonscreen (1.2.0-1.1) ... 390s Selecting previously unselected package python3-pytest-cov. 390s Preparing to unpack .../198-python3-pytest-cov_5.0.0-1_all.deb ... 390s Unpacking python3-pytest-cov (5.0.0-1) ... 390s Selecting previously unselected package python3-pytest-django. 390s Preparing to unpack .../199-python3-pytest-django_4.5.2-3_all.deb ... 390s Unpacking python3-pytest-django (4.5.2-3) ... 390s Setting up libpwquality-common (1.4.5-4) ... 390s Setting up python3-jaraco.collections (5.1.0-1) ... 390s Setting up javascript-common (11+nmu1) ... 390s Package apache2 is not configured yet. Will defer actions by package javascript-common. 390s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 390s Setting up python3-configargparse (1.7-2) ... 390s Setting up liblcms2-2:s390x (2.16-2) ... 390s Setting up python3-iniconfig (1.1.1-2) ... 391s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 391s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 391s Setting up freedombox-doc-en (25.2) ... 391s Setting up php-common (2:93ubuntu2) ... 391s Created symlink '/etc/systemd/system/timers.target.wants/phpsessionclean.timer' → '/usr/lib/systemd/system/phpsessionclean.timer'. 391s Setting up ttf-bitstream-vera (1.10-8.2) ... 391s Setting up fonts-lato (2.015-1) ... 391s Setting up libsodium23:s390x (1.0.18-1build3) ... 391s Setting up python3-parsedatetime (2.6-3) ... 391s Setting up python3-tomli (2.2.1-2) ... 391s Setting up augeas-lenses (1.14.1-1build2) ... 391s Setting up fonts-fork-awesome (1.2.0+ds1-1) ... 391s Setting up libtdb1:s390x (1.4.12-1build1) ... 391s Setting up libargon2-1:s390x (0~20190702+dfsg-4build1) ... 391s Setting up fail2ban (1.1.0-7) ... 392s Created symlink '/etc/systemd/system/multi-user.target.wants/fail2ban.service' → '/usr/lib/systemd/system/fail2ban.service'. 393s Setting up popularity-contest (1.77ubuntu1) ... 393s Setting up freedombox-doc-es (25.2) ... 393s Setting up gir1.2-udisks-2.0:s390x (2.10.1-11ubuntu2) ... 393s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 393s Setting up python3-ruamel.yaml.clib (0.2.12+ds-1) ... 393s Setting up libyajl2:s390x (2.1.0-5build1) ... 393s Setting up sshfs (3.7.3-1.1build3) ... 393s Setting up libdeflate0:s390x (1.23-1) ... 393s Setting up bc (1.07.1-4) ... 393s Setting up libglib2.0-bin (2.83.3-2) ... 393s Setting up libboost-thread1.83.0:s390x (1.83.0-4ubuntu2) ... 393s Setting up python3-pytz (2025.1-3) ... 393s Setting up php8.3-common (8.3.11-0ubuntu4) ... 393s Creating config file /etc/php/8.3/mods-available/calendar.ini with new version 393s Creating config file /etc/php/8.3/mods-available/ctype.ini with new version 393s Creating config file /etc/php/8.3/mods-available/exif.ini with new version 393s Creating config file /etc/php/8.3/mods-available/fileinfo.ini with new version 394s Creating config file /etc/php/8.3/mods-available/ffi.ini with new version 394s Creating config file /etc/php/8.3/mods-available/ftp.ini with new version 394s Creating config file /etc/php/8.3/mods-available/gettext.ini with new version 394s Creating config file /etc/php/8.3/mods-available/iconv.ini with new version 394s Creating config file /etc/php/8.3/mods-available/pdo.ini with new version 395s Creating config file /etc/php/8.3/mods-available/phar.ini with new version 395s Creating config file /etc/php/8.3/mods-available/posix.ini with new version 395s Creating config file /etc/php/8.3/mods-available/shmop.ini with new version 395s Creating config file /etc/php/8.3/mods-available/sockets.ini with new version 396s Creating config file /etc/php/8.3/mods-available/sysvmsg.ini with new version 396s Creating config file /etc/php/8.3/mods-available/sysvsem.ini with new version 396s Creating config file /etc/php/8.3/mods-available/sysvshm.ini with new version 396s Creating config file /etc/php/8.3/mods-available/tokenizer.ini with new version 396s Setting up samba-common (2:4.20.4+dfsg-1ubuntu5) ... 396s Creating config file /etc/samba/smb.conf with new version 396s Setting up libjs-jquery-throttle-debounce (1.1+dfsg.1-2) ... 396s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 396s Setting up ldap-utils (2.6.9+dfsg-1~exp2ubuntu1) ... 396s Setting up sshpass (1.10-0.1) ... 396s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 396s Setting up libwbclient0:s390x (2:4.20.4+dfsg-1ubuntu5) ... 396s Setting up python3-psutil (5.9.8-2build3) ... 397s Setting up python3-tz (2025.1-3) ... 397s Setting up python3-firewall (2.3.0-1) ... 397s Setting up libtalloc2:s390x (2.4.2-2build1) ... 397s Setting up liberror-perl (0.17029-2) ... 397s Setting up libdconf1:s390x (0.40.0-5) ... 397s Setting up libasound2-data (1.2.13-1build1) ... 397s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 397s Setting up batctl (2025.0-1) ... 397s Setting up python3-packaging (24.2-1) ... 398s Setting up python3-sqlparse (0.5.3-1) ... 398s Setting up libasound2t64:s390x (1.2.13-1build1) ... 398s Setting up php8.3-readline (8.3.11-0ubuntu4) ... 398s Creating config file /etc/php/8.3/mods-available/readline.ini with new version 398s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 398s Setting up ssl-cert (1.1.3ubuntu1) ... 398s Created symlink '/etc/systemd/system/multi-user.target.wants/ssl-cert.service' → '/usr/lib/systemd/system/ssl-cert.service'. 399s Setting up python3-cheroot (10.0.1+ds1-3) ... 399s Setting up libmodule-find-perl (0.16-2) ... 399s Setting up libteamdctl0:s390x (1.31-1build3) ... 399s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 399s Setting up libaugeas0:s390x (1.14.1-1build2) ... 399s Setting up tdb-tools (1.4.12-1build1) ... 399s update-alternatives: using /usr/bin/tdbbackup.tdbtools to provide /usr/bin/tdbbackup (tdbbackup) in auto mode 399s Setting up zram-tools (0.3.7-1) ... 399s Created symlink '/etc/systemd/system/multi-user.target.wants/zramswap.service' → '/usr/lib/systemd/system/zramswap.service'. 399s Setting up libimagequant0:s390x (2.18.0-1build1) ... 399s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 399s Setting up libltdl7:s390x (2.5.4-3build1) ... 399s Setting up libbtrfs0t64:s390x (6.12-1build1) ... 399s Setting up libnm0:s390x (1.50.0-1ubuntu3) ... 399s Setting up libcrack2:s390x (2.9.6-5.2) ... 399s Setting up python3-pluggy (1.5.0-1) ... 399s Setting up libwebp7:s390x (1.5.0-0.1) ... 399s Setting up ppp (2.5.1-1+1) ... 400s Setting up python3-josepy (1.14.0-3) ... 400s Setting up python3-ruamel.yaml (0.18.10+ds-1) ... 400s Setting up libodbc2:s390x (2.3.12-2ubuntu1) ... 400s Setting up debsecan (0.4.20.1) ... 400s Setting up python3-zc.lockfile (3.0.post1-1) ... 400s Setting up libproc-processtable-perl:s390x (0.636-1build4) ... 400s Setting up libflite1:s390x (2.2-7) ... 400s Setting up cockpit-bridge (332-1) ... 401s Setting up node-popper2 (2.11.2-8) ... 401s Setting up libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 401s Setting up python3-augeas (1.2.0-1) ... 401s Setting up libbluetooth3:s390x (5.79-1) ... 401s Setting up libapr1t64:s390x (1.7.5-1) ... 401s Setting up libnsl2:s390x (1.3.0-3build3) ... 401s Setting up python3-argon2 (21.1.0-3) ... 401s Setting up libintl-perl (1.33-1build4) ... 401s Setting up flite (2.2-7) ... 401s Setting up liblua5.4-0:s390x (5.4.7-1) ... 401s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 401s Setting up git-man (1:2.48.1-0ubuntu1) ... 401s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 401s Setting up python3-dateutil (2.9.0-3) ... 401s Setting up sgml-base (1.31) ... 401s Setting up python3-msgpack (1.0.3-3build3) ... 401s Setting up apache2-data (2.4.62-3ubuntu1) ... 401s Setting up python3-tempora (5.7.0-2) ... 401s Setting up libndp0:s390x (1.9-1) ... 401s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 401s Setting up php8.3-opcache (8.3.11-0ubuntu4) ... 402s Creating config file /etc/php/8.3/mods-available/opcache.ini with new version 402s Setting up glib-networking-common (2.80.1-1) ... 402s Setting up nslcd (0.9.13-1) ... 402s info: The home dir /run/nslcd you specified can't be accessed: No such file or directory 402s 402s info: Selecting UID from range 100 to 999 ... 402s 402s info: Selecting GID from range 100 to 999 ... 402s info: Adding system user `nslcd' (UID 107) ... 402s info: Adding new group `nslcd' (GID 113) ... 402s info: Adding new user `nslcd' (UID 107) with group `nslcd' ... 402s info: Not creating home directory `/run/nslcd'. 402s Created symlink '/etc/systemd/system/multi-user.target.wants/nslcd.service' -> '/usr/lib/systemd/system/nslcd.service'. 403s Setting up gir1.2-nm-1.0:s390x (1.50.0-1ubuntu3) ... 403s Setting up libterm-readkey-perl (2.38-2build5) ... 403s Setting up libjs-jquery-hotkeys (0.2.0-1) ... 403s Setting up python3-rfc3339 (2.0.1-1) ... 403s Setting up libdaemon0:s390x (0.14-7.1ubuntu4) ... 403s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 403s Setting up libjs-bootstrap5 (5.3.3+dfsg-3) ... 403s Setting up python3-nftables (1.1.0-2) ... 403s Setting up python3-distro-info (1.13) ... 403s Setting up libsort-naturally-perl (1.03-4) ... 403s Setting up libmodule-scandeps-perl (1.37-1) ... 403s Setting up python3-pampy (2.0.2-1) ... 403s Setting up libtevent0t64:s390x (0.16.1-3) ... 403s Setting up python3-asgiref (3.8.1-1) ... 403s Setting up python3-ptyprocess (0.7.0-6) ... 403s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 403s Setting up ldapscripts (2.0.8-2) ... 403s Setting up slapd (2.6.9+dfsg-1~exp2ubuntu1) ... 403s Creating new user openldap... done. 404s Creating initial configuration... done. 404s Creating LDAP directory... done. 404s Created symlink '/etc/systemd/system/multi-user.target.wants/slapd.service' → '/usr/lib/systemd/system/slapd.service'. 404s Setting up python3.12-minimal (3.12.9-1) ... 405s Setting up libaprutil1t64:s390x (1.6.3-3ubuntu2) ... 405s Setting up needrestart (3.6-8ubuntu7) ... 405s Setting up borgbackup (1.4.0-4build1) ... 406s Setting up libsnapper7t64:s390x (0.10.6-1.2) ... 406s Setting up libproxy1v5:s390x (0.5.9-1) ... 406s Setting up gettext (0.23.1-1) ... 406s Setting up python3-django (3:4.2.18-1) ... 408s Setting up libzmq5:s390x (4.3.5-1build2) ... 408s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 408s Setting up python3-django-bootstrapform (3.4-9) ... 408s Setting up python3-pytest (8.3.4-1) ... 409s Setting up python3-django-ranged-response (0.2.0-5) ... 409s Setting up libpam-ldapd:s390x (0.9.13-1) ... 409s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 409s Setting up python3.12 (3.12.9-1) ... 410s Setting up pppoe (4.0-1ubuntu1) ... 410s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 410s Setting up python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 411s Setting up dconf-service (0.40.0-5) ... 411s Setting up network-manager (1.50.0-1ubuntu3) ... 411s Created symlink '/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service' → '/usr/lib/systemd/system/NetworkManager-dispatcher.service'. 411s Created symlink '/etc/systemd/system/network-online.target.wants/NetworkManager-wait-online.service' → '/usr/lib/systemd/system/NetworkManager-wait-online.service'. 411s Created symlink '/etc/systemd/system/multi-user.target.wants/NetworkManager.service' → '/usr/lib/systemd/system/NetworkManager.service'. 413s Setting up libaprutil1-ldap:s390x (1.6.3-3ubuntu2) ... 413s Setting up php8.3-cli (8.3.11-0ubuntu4) ... 413s update-alternatives: using /usr/bin/php8.3 to provide /usr/bin/php (php) in auto mode 413s update-alternatives: using /usr/bin/phar8.3 to provide /usr/bin/phar (phar) in auto mode 413s update-alternatives: using /usr/bin/phar.phar8.3 to provide /usr/bin/phar.phar (phar.phar) in auto mode 413s Creating config file /etc/php/8.3/cli/php.ini with new version 413s Setting up python3-pytest-django (4.5.2-3) ... 413s Setting up uwsgi-core (2.0.26-2ubuntu3) ... 413s Setting up libaprutil1-dbd-sqlite3:s390x (1.6.3-3ubuntu2) ... 413s Setting up python3-django-stronghold (0.4.0+debian-2) ... 413s Setting up python3-portend (3.2.0-1) ... 413s Setting up python3-django-ipware (4.0.2-1) ... 414s Setting up libpython3.12t64:s390x (3.12.9-1) ... 414s Setting up unattended-upgrades (2.9.1+nmu4ubuntu1) ... 414s Creating config file /etc/apt/apt.conf.d/20auto-upgrades with new version 414s Creating config file /etc/apt/apt.conf.d/50unattended-upgrades with new version 414s Created symlink '/etc/systemd/system/multi-user.target.wants/unattended-upgrades.service' → '/usr/lib/systemd/system/unattended-upgrades.service'. 414s Synchronizing state of unattended-upgrades.service with SysV service script with /usr/lib/systemd/systemd-sysv-install. 414s Executing: /usr/lib/systemd/systemd-sysv-install enable unattended-upgrades 415s Setting up libpwquality1:s390x (1.4.5-4) ... 415s Setting up augeas-tools (1.14.1-1build2) ... 415s Setting up python3-acme (2.11.0-1) ... 415s Setting up python3-pexpect (4.9-3) ... 415s Setting up libnss-ldapd:s390x (0.9.13-1) ... 415s Setting up libjs-jquery-metadata (12-4) ... 415s Setting up libraqm0:s390x (0.10.2-1) ... 415s Setting up libjs-jquery-isonscreen (1.2.0-1.1) ... 416s Setting up python3-certbot (2.11.0-1) ... 416s Setting up python3-bootstrapform (3.4-9) ... 416s Setting up git (1:2.48.1-0ubuntu1) ... 416s Setting up certbot (2.11.0-1) ... 416s Created symlink '/etc/systemd/system/timers.target.wants/certbot.timer' → '/usr/lib/systemd/system/certbot.timer'. 416s Setting up libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 416s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 416s Setting up snapper (0.10.6-1.2) ... 417s Created symlink '/etc/systemd/system/timers.target.wants/snapper-boot.timer' → '/usr/lib/systemd/system/snapper-boot.timer'. 417s Created symlink '/etc/systemd/system/timers.target.wants/snapper-cleanup.timer' → '/usr/lib/systemd/system/snapper-cleanup.timer'. 417s Created symlink '/etc/systemd/system/timers.target.wants/snapper-timeline.timer' → '/usr/lib/systemd/system/snapper-timeline.timer'. 417s Created symlink '/etc/systemd/system/sysinit.target.wants/snapperd.service' → '/usr/lib/systemd/system/snapperd.service'. 417s snapper-boot.service is a disabled or a static unit, not starting it. 417s snapper-cleanup.service is a disabled or a static unit, not starting it. 417s snapper-timeline.service is a disabled or a static unit, not starting it. 417s Setting up xml-core (0.19) ... 417s Setting up python3-django-axes (7.0.1-0ubuntu1) ... 418s Setting up uwsgi (2.0.26-2ubuntu3) ... 418s Setting up uwsgi-plugin-python3 (2.0.26-2ubuntu3) ... 418s Setting up libavahi-core7:s390x (0.8-14ubuntu1) ... 418s Setting up libldb2:s390x (2:2.9.1+samba4.20.4+dfsg-1ubuntu5) ... 418s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 418s Setting up python3-cherrypy3 (18.10.0-1) ... 418s Setting up apache2-utils (2.4.62-3ubuntu1) ... 418s Setting up glib-networking-services (2.80.1-1) ... 418s Setting up libpwquality-tools (1.4.5-4) ... 418s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 418s Setting up php8.3-fpm (8.3.11-0ubuntu4) ... 418s Package apache2 is not configured yet. Will defer actions by package php8.3-fpm. 418s Creating config file /etc/php/8.3/fpm/php.ini with new version 419s NOTICE: Not enabling PHP 8.3 FPM by default. 419s NOTICE: To enable PHP 8.3 FPM in Apache2 do: 419s NOTICE: a2enmod proxy_fcgi setenvif 419s NOTICE: a2enconf php8.3-fpm 419s NOTICE: You are seeing this message because you have apache2 package installed. 419s Created symlink '/etc/systemd/system/multi-user.target.wants/php8.3-fpm.service' → '/usr/lib/systemd/system/php8.3-fpm.service'. 419s Setting up samba-libs:s390x (2:4.20.4+dfsg-1ubuntu5) ... 419s Setting up python3-pytest-cov (5.0.0-1) ... 419s Setting up apache2-bin (2.4.62-3ubuntu1) ... 419s Setting up python3-pil:s390x (11.1.0-5) ... 420s Setting up php-fpm (2:8.3+93ubuntu2) ... 420s Setting up avahi-daemon (0.8-14ubuntu1) ... 420s Created symlink '/etc/systemd/system/dbus-org.freedesktop.Avahi.service' → '/usr/lib/systemd/system/avahi-daemon.service'. 420s Created symlink '/etc/systemd/system/multi-user.target.wants/avahi-daemon.service' → '/usr/lib/systemd/system/avahi-daemon.service'. 420s Created symlink '/etc/systemd/system/sockets.target.wants/avahi-daemon.socket' → '/usr/lib/systemd/system/avahi-daemon.socket'. 421s Setting up libapache2-mod-auth-pubtkt (0.13-1build3) ... 421s Package apache2 is not configured yet. Will defer actions by package libapache2-mod-auth-pubtkt. 421s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 421s Setting up cockpit-system (332-1) ... 421s Setting up gsettings-desktop-schemas (48~beta-1ubuntu1) ... 421s Setting up apache2 (2.4.62-3ubuntu1) ... 421s Enabling module mpm_event. 421s Enabling module authz_core. 421s Enabling module authz_host. 421s Enabling module authn_core. 421s Enabling module auth_basic. 421s Enabling module access_compat. 421s Enabling module authn_file. 421s Enabling module authz_user. 421s Enabling module alias. 421s Enabling module dir. 421s Enabling module autoindex. 421s Enabling module env. 421s Enabling module mime. 421s Enabling module negotiation. 421s Enabling module setenvif. 421s Enabling module filter. 421s Enabling module deflate. 421s Enabling module status. 421s Enabling module reqtimeout. 421s Enabling conf charset. 421s Enabling conf localized-error-pages. 421s Enabling conf other-vhosts-access-log. 421s Enabling conf security. 421s Enabling conf serve-cgi-bin. 421s Enabling site 000-default. 421s info: Executing deferred 'a2enconf javascript-common' for package javascript-common 421s Enabling conf javascript-common. 421s info: Executing deferred 'a2enmod auth_pubtkt' for package libapache2-mod-auth-pubtkt 421s Enabling module auth_pubtkt. 422s Created symlink '/etc/systemd/system/multi-user.target.wants/apache2.service' → '/usr/lib/systemd/system/apache2.service'. 422s Created symlink '/etc/systemd/system/multi-user.target.wants/apache-htcacheclean.service' → '/usr/lib/systemd/system/apache-htcacheclean.service'. 423s Setting up avahi-utils (0.8-14ubuntu1) ... 423s Setting up python3-django-captcha (0.6.0-1) ... 423s Setting up samba-common-bin (2:4.20.4+dfsg-1ubuntu5) ... 423s Processing triggers for libc-bin (2.40-4ubuntu1) ... 423s Processing triggers for systemd (257.2-3ubuntu1) ... 423s Processing triggers for man-db (2.13.0-1) ... 425s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 425s Processing triggers for dbus (1.14.10-4ubuntu5) ... 425s Setting up glib-networking:s390x (2.80.1-1) ... 425s Processing triggers for install-info (7.1.1-1) ... 425s Setting up cockpit-ws (332-1) ... 425s Created symlink '/etc/systemd/system/sockets.target.wants/cockpit.socket' → '/usr/lib/systemd/system/cockpit.socket'. 425s Setting up cockpit (332-1) ... 425s Processing triggers for sgml-base (1.31) ... 425s Setting up polkitd (126-2) ... 426s Setting up firewalld (2.3.0-1) ... 426s update-alternatives: using /usr/share/polkit-1/actions/org.fedoraproject.FirewallD1.server.policy.choice to provide /usr/share/polkit-1/actions/org.fedoraproject.FirewallD1.policy (org.fedoraproject.FirewallD1.policy) in auto mode 426s Created symlink '/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service' → '/usr/lib/systemd/system/firewalld.service'. 426s Created symlink '/etc/systemd/system/multi-user.target.wants/firewalld.service' → '/usr/lib/systemd/system/firewalld.service'. 426s Setting up freedombox (25.2) ... 428s Created symlink '/etc/systemd/system/multi-user.target.wants/plinth.service' → '/usr/lib/systemd/system/plinth.service'. 429s Processing triggers for php8.3-cli (8.3.11-0ubuntu4) ... 429s Processing triggers for php8.3-fpm (8.3.11-0ubuntu4) ... 429s NOTICE: Not enabling PHP 8.3 FPM by default. 429s NOTICE: To enable PHP 8.3 FPM in Apache2 do: 429s NOTICE: a2enmod proxy_fcgi setenvif 429s NOTICE: a2enconf php8.3-fpm 429s NOTICE: You are seeing this message because you have apache2 package installed. 429s autopkgtest: DBG: testbed command exited with code 0 429s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'freedombox'], kind short, sout pipe, serr pipe, env [] 438s autopkgtest: DBG: testbed command exited with code 0 438s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'freedombox-doc-en'], kind short, sout pipe, serr pipe, env [] 440s autopkgtest: DBG: testbed command exited with code 0 440s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'freedombox-doc-es'], kind short, sout pipe, serr pipe, env [] 441s autopkgtest: DBG: testbed command exited with code 0 441s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.K7EZkW/command2-packages.all"], kind short, sout raw, serr pipe, env [] 441s autopkgtest: DBG: testbed command exited with code 0 441s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/command2-packages.all /tmp/autopkgtest-work.jeiu1aap/out/command2-packages.all 441s autopkgtest: DBG: got reply from testbed: ok 441s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.K7EZkW/build.9H4/src'], kind short, sout raw, serr raw, env [] 441s autopkgtest: DBG: testbed command exited with code 1 441s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.K7EZkW/build.9H4'], kind short, sout raw, serr pipe, env [] 442s autopkgtest: DBG: testbed command exited with code 0 442s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.jeiu1aap/out/tests-tree/ /tmp/autopkgtest.K7EZkW/build.9H4/src/ 455s autopkgtest: DBG: got reply from testbed: ok 455s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.K7EZkW/build.9H4/src'], kind short, sout raw, serr pipe, env [] 455s autopkgtest: DBG: testbed command exited with code 0 455s autopkgtest [10:21:27]: test command2: PYTHONPATH='/usr/lib/python3/dist-packages/' py.test-3 -p no:cacheprovider --cov=plinth --cov-report=html:debci/htmlcov --cov-report=term 455s autopkgtest [10:21:27]: test command2: [----------------------- 455s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.K7EZkW/wrapper.sh --debug --artifacts=/tmp/autopkgtest.K7EZkW/command2-artifacts --chdir=/tmp/autopkgtest.K7EZkW/build.9H4/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.K7EZkW/command2-stderr --stdout=/tmp/autopkgtest.K7EZkW/command2-stdout --tmp=/tmp/autopkgtest.K7EZkW/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=git/1:2.48.1-0ubuntu1 -- bash -ec \'PYTHONPATH=\'"\'"\'/usr/lib/python3/dist-packages/\'"\'"\' py.test-3 -p no:cacheprovider --cov=plinth --cov-report=html:debci/htmlcov --cov-report=term\''], kind test, sout raw, serr raw, env [] 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.K7EZkW/command2-artifacts 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: changing to directory: /tmp/autopkgtest.K7EZkW/build.9H4/src 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: LANG=C.UTF-8 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LANGUAGE 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_ADDRESS 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_ALL 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_COLLATE 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_CTYPE 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_IDENTIFICATION 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_MEASUREMENT 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_MESSAGES 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_MONETARY 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_NAME 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_NUMERIC 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_PAPER 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_TELEPHONE 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: unsetting environment: LC_TIME 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: pretending to be a login shell 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: will write standard error to /tmp/autopkgtest.K7EZkW/command2-stderr 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: will write stdout to /tmp/autopkgtest.K7EZkW/command2-stdout 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.K7EZkW/autopkgtest_tmp 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=git/1:2.48.1-0ubuntu1 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: command to run: bash -ec PYTHONPATH='/usr/lib/python3/dist-packages/' py.test-3 -p no:cacheprovider --cov=plinth --cov-report=html:debci/htmlcov --cov-report=term 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: copying /tmp/tmp.GAezhlFQ6H/out to stdout and file: /tmp/autopkgtest.K7EZkW/command2-stdout 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: copying /tmp/tmp.GAezhlFQ6H/err to standard error and file: /tmp/autopkgtest.K7EZkW/command2-stdout 455s /tmp/autopkgtest.K7EZkW/wrapper.sh: writing script pid 15315 to /tmp/autopkgtest_script_pid 461s ============================= test session starts ============================== 461s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 461s django: settings: plinth.tests.data.django_test_settings (from option) 461s rootdir: /tmp/autopkgtest.K7EZkW/build.9H4/src 461s configfile: pyproject.toml 461s plugins: django-4.5.2, cov-5.0.0, typeguard-4.4.1 461s collected 646 items 461s 462s plinth/modules/backups/tests/test_api.py ........... [ 1%] 462s plinth/modules/backups/tests/test_components.py .. [ 2%] 462s plinth/modules/backups/tests/test_ssh_remotes.py ssss [ 2%] 462s plinth/modules/backups/tests/test_store.py .... [ 3%] 482s plinth/modules/users/tests/test_views.py ........................ [ 6%] 482s plinth/tests/test_app.py ... [ 7%] 482s plinth/tests/test_kvstore.py .... [ 8%] 482s plinth/tests/test_middleware.py .. [ 8%] 483s plinth/tests/test_notification.py ...................................... [ 14%] 483s ................ [ 16%] 483s plinth/tests/test_operation.py . [ 16%] 483s plinth/modules/apache/tests/test_components.py ............. [ 18%] 483s plinth/modules/apache/tests/test_uws.py . [ 19%] 483s plinth/modules/backups/tests/test_backups.py sssssssss [ 20%] 483s plinth/modules/backups/tests/test_components.py ........................ [ 24%] 483s ..................... [ 27%] 483s plinth/modules/backups/tests/test_schedule.py .......................... [ 31%] 483s ... [ 31%] 483s plinth/modules/backups/tests/test_validators.py ..... [ 32%] 483s plinth/modules/bind/tests/test_bind.py .. [ 32%] 483s plinth/modules/calibre/tests/test_privileged.py ... [ 33%] 483s plinth/modules/calibre/tests/test_views.py ........ [ 34%] 483s plinth/modules/config/tests/test_config.py ..s. [ 35%] 483s plinth/modules/coturn/tests/test_components.py ....... [ 36%] 483s plinth/modules/deluge/tests/test_utils.py ... [ 36%] 483s plinth/modules/diagnostics/tests/test_diagnostics.py . [ 36%] 484s plinth/modules/ejabberd/tests/test_turn_config.py ... [ 37%] 484s plinth/modules/firewall/tests/test_components.py .......... [ 39%] 484s plinth/modules/gitweb/tests/test_privileged.py .............. [ 41%] 485s plinth/modules/gitweb/tests/test_views.py ................. [ 43%] 485s plinth/modules/help/tests/test_views.py .........sss.s [ 45%] 485s plinth/modules/kiwix/tests/test_privileged.py ... [ 46%] 485s plinth/modules/kiwix/tests/test_validations.py . [ 46%] 485s plinth/modules/kiwix/tests/test_views.py ...... [ 47%] 485s plinth/modules/letsencrypt/tests/test_components.py .................... [ 50%] 485s ..... [ 51%] 485s plinth/modules/letsencrypt/tests/test_domain_name_changes.py ....... [ 52%] 485s plinth/modules/matrixsynapse/tests/test_turn_config.py .... [ 53%] 485s plinth/modules/mediawiki/tests/test_settings.py ..... [ 53%] 485s plinth/modules/miniflux/tests/test_views.py ....... [ 54%] 485s plinth/modules/names/tests/test_components.py ........... [ 56%] 485s plinth/modules/names/tests/test_forms.py .. [ 56%] 485s plinth/modules/names/tests/test_names.py .. [ 57%] 485s plinth/modules/networks/tests/test_privileged.py . [ 57%] 485s plinth/modules/pagekite/tests/test_pagekite.py . [ 57%] 485s plinth/modules/samba/tests/test_views.py .s... [ 58%] 485s plinth/modules/snapshot/tests/test_privileged.py .... [ 58%] 489s plinth/modules/sso/tests/test_privileged.py . [ 59%] 489s plinth/modules/storage/tests/test_storage.py sssssssss............ [ 62%] 489s plinth/modules/tor/tests/test_tor.py s. [ 62%] 489s plinth/modules/torproxy/tests/test_torproxy.py ss [ 63%] 489s plinth/modules/users/tests/test_components.py ... [ 63%] 489s plinth/modules/users/tests/test_privileged.py ssssssssssssss [ 65%] 489s plinth/modules/wireguard/tests/test_forms.py .................. [ 68%] 489s plinth/tests/test_action_utils.py .ss.s... [ 69%] 489s plinth/tests/test_actions.py ........ [ 70%] 489s plinth/tests/test_app.py ...................................... [ 76%] 489s plinth/tests/test_cfg.py ....... [ 77%] 489s plinth/tests/test_clients.py .... [ 78%] 489s plinth/tests/test_config.py ...... [ 79%] 489s plinth/tests/test_context_processors.py . [ 79%] 489s plinth/tests/test_custom_shortcuts.py ...... [ 80%] 489s plinth/tests/test_daemon.py .............. [ 82%] 490s plinth/tests/test_db.py ... [ 83%] 490s plinth/tests/test_diagnostic_check.py .... [ 83%] 490s plinth/tests/test_frontpage.py ....... [ 84%] 490s plinth/tests/test_menu.py ....... [ 85%] 490s plinth/tests/test_middleware.py .............. [ 88%] 490s plinth/tests/test_module_loader.py . [ 88%] 490s plinth/tests/test_network.py sssssssss [ 89%] 490s plinth/tests/test_operation.py .................. [ 92%] 496s plinth/tests/test_package.py ............ [ 94%] 496s plinth/tests/test_setup.py . [ 94%] 496s plinth/tests/test_templatetags.py . [ 94%] 496s plinth/tests/test_utils.py ............... [ 96%] 496s plinth/tests/test_version.py .... [ 97%] 496s plinth/tests/test_views.py ............. [ 99%] 504s plinth/tests/test_web_server.py ... [100%] 504s 504s =============================== warnings summary =============================== 504s ../../../../usr/lib/python3/dist-packages/django/conf/__init__.py:241 504s /usr/lib/python3/dist-packages/django/conf/__init__.py:241: RemovedInDjango50Warning: The default value of USE_TZ will change from False to True in Django 5.0. Set USE_TZ to False in your project settings if you want to keep the current default behavior. 504s warnings.warn( 504s 504s plinth/conftest.py:20 504s /tmp/autopkgtest.K7EZkW/build.9H4/src/plinth/conftest.py:20: PytestRemovedIn9Warning: The (path: py.path.local) argument is deprecated, please use (collection_path: pathlib.Path) 504s see https://docs.pytest.org/en/latest/deprecations.html#py-path-local-arguments-for-hooks-replaced-with-pathlib-path 504s def pytest_ignore_collect(path, config): 504s 504s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 504s 504s ---------- coverage: platform linux, python 3.13.2-final-0 ----------- 504s Name Stmts Miss Branch BrPart Cover 504s ----------------------------------------------------------------------------------------------- 504s plinth/__init__.py 2 0 0 0 100.00% 504s plinth/__main__.py 90 74 26 1 14.66% 504s plinth/action_utils.py 326 198 96 1 36.73% 504s plinth/actions.py 297 72 136 17 73.90% 504s plinth/app.py 253 20 92 3 91.01% 504s plinth/cfg.py 62 2 14 0 97.37% 504s plinth/clients.py 63 7 14 0 90.91% 504s plinth/config.py 43 0 14 0 100.00% 504s plinth/conftest.py 146 50 84 8 68.70% 504s plinth/context_processors.py 12 0 0 0 100.00% 504s plinth/daemon.py 124 4 56 1 96.11% 504s plinth/db/__init__.py 18 1 0 0 94.44% 504s plinth/db/postgres.py 39 26 12 0 25.49% 504s plinth/dbus.py 43 20 8 0 56.86% 504s plinth/diagnostic_check.py 44 1 12 1 96.43% 504s plinth/errors.py 8 0 0 0 100.00% 504s plinth/forms.py 68 27 16 0 53.57% 504s plinth/frontpage.py 83 6 38 6 90.08% 504s plinth/glib.py 44 29 8 0 28.85% 504s plinth/hashers.py 6 6 0 0 0.00% 504s plinth/kvstore.py 25 0 10 0 100.00% 504s plinth/log.py 50 31 8 0 32.76% 504s plinth/menu.py 48 0 16 0 100.00% 504s plinth/middleware.py 104 9 54 5 89.87% 504s plinth/migrations/0001_initial.py 7 0 0 0 100.00% 504s plinth/migrations/0002_modulestore.py 5 0 0 0 100.00% 504s plinth/migrations/0003_merge_firstboot_completed_fields.py 33 8 2 1 74.29% 504s plinth/migrations/0004_userprofile.py 14 2 2 1 81.25% 504s plinth/migrations/0005_storednotification.py 6 0 0 0 100.00% 504s plinth/migrations/__init__.py 0 0 0 0 100.00% 504s plinth/models.py 55 3 12 1 94.03% 504s plinth/module_loader.py 89 20 43 11 73.48% 504s plinth/modules/__init__.py 0 0 0 0 100.00% 504s plinth/modules/apache/__init__.py 70 23 10 1 67.50% 504s plinth/modules/apache/components.py 99 5 34 3 93.98% 504s plinth/modules/apache/privileged.py 89 68 26 0 26.96% 504s plinth/modules/apache/urls.py 2 2 0 0 0.00% 504s plinth/modules/api/__init__.py 12 5 0 0 58.33% 504s plinth/modules/api/test/__init__.py 0 0 0 0 100.00% 504s plinth/modules/api/urls.py 5 5 0 0 0.00% 504s plinth/modules/api/views.py 31 15 6 0 43.24% 504s plinth/modules/avahi/__init__.py 47 25 2 0 44.90% 504s plinth/modules/avahi/manifest.py 4 0 0 0 100.00% 504s plinth/modules/avahi/urls.py 4 4 0 0 0.00% 504s plinth/modules/backups/__init__.py 106 70 14 0 31.67% 504s plinth/modules/backups/api.py 192 44 62 11 75.20% 504s plinth/modules/backups/components.py 102 0 48 0 100.00% 504s plinth/modules/backups/decorators.py 12 12 4 0 0.00% 504s plinth/modules/backups/errors.py 10 0 0 0 100.00% 504s plinth/modules/backups/forms.py 135 63 34 1 49.11% 504s plinth/modules/backups/manifest.py 4 0 0 0 100.00% 504s plinth/modules/backups/privileged.py 243 155 178 0 47.03% 504s plinth/modules/backups/repository.py 270 173 84 0 34.75% 504s plinth/modules/backups/schedule.py 141 4 62 2 97.04% 504s plinth/modules/backups/store.py 32 1 10 1 95.24% 504s plinth/modules/backups/urls.py 4 4 0 0 0.00% 504s plinth/modules/backups/views.py 330 330 70 0 0.00% 504s plinth/modules/bepasty/__init__.py 46 27 4 0 38.00% 504s plinth/modules/bepasty/forms.py 9 9 0 0 0.00% 504s plinth/modules/bepasty/manifest.py 4 0 0 0 100.00% 504s plinth/modules/bepasty/privileged.py 98 62 32 0 36.92% 504s plinth/modules/bepasty/urls.py 4 4 0 0 0.00% 504s plinth/modules/bepasty/views.py 70 70 8 0 0.00% 504s plinth/modules/bind/__init__.py 36 19 2 0 44.74% 504s plinth/modules/bind/forms.py 9 9 2 0 0.00% 504s plinth/modules/bind/manifest.py 4 0 0 0 100.00% 504s plinth/modules/bind/privileged.py 100 30 52 0 64.47% 504s plinth/modules/bind/urls.py 4 4 0 0 0.00% 504s plinth/modules/bind/views.py 33 33 8 0 0.00% 504s plinth/modules/calibre/__init__.py 55 30 4 1 44.07% 504s plinth/modules/calibre/forms.py 13 0 2 0 100.00% 504s plinth/modules/calibre/manifest.py 4 0 0 0 100.00% 504s plinth/modules/calibre/privileged.py 31 1 10 0 97.56% 504s plinth/modules/calibre/urls.py 4 0 0 0 100.00% 504s plinth/modules/calibre/views.py 43 3 4 0 93.62% 504s plinth/modules/cockpit/__init__.py 42 23 2 0 43.18% 504s plinth/modules/cockpit/manifest.py 5 0 0 0 100.00% 504s plinth/modules/cockpit/privileged.py 19 11 2 0 47.62% 504s plinth/modules/cockpit/urls.py 4 4 0 0 0.00% 504s plinth/modules/config/__init__.py 92 44 32 2 53.23% 504s plinth/modules/config/forms.py 19 19 0 0 0.00% 504s plinth/modules/config/manifest.py 3 0 0 0 100.00% 504s plinth/modules/config/privileged.py 44 28 12 0 35.71% 504s plinth/modules/config/urls.py 4 4 0 0 0.00% 504s plinth/modules/config/views.py 36 36 10 0 0.00% 504s plinth/modules/coturn/__init__.py 78 43 14 0 40.22% 504s plinth/modules/coturn/components.py 56 1 12 1 97.06% 504s plinth/modules/coturn/forms.py 14 14 4 0 0.00% 504s plinth/modules/coturn/manifest.py 3 0 0 0 100.00% 504s plinth/modules/coturn/privileged.py 53 34 14 0 40.30% 504s plinth/modules/coturn/urls.py 4 4 0 0 0.00% 504s plinth/modules/coturn/views.py 27 27 2 0 0.00% 504s plinth/modules/datetime/__init__.py 61 37 10 0 36.62% 504s plinth/modules/datetime/forms.py 27 27 6 0 0.00% 504s plinth/modules/datetime/manifest.py 4 0 0 0 100.00% 504s plinth/modules/datetime/privileged.py 7 7 2 0 0.00% 504s plinth/modules/datetime/urls.py 4 4 0 0 0.00% 504s plinth/modules/datetime/views.py 33 33 4 0 0.00% 504s plinth/modules/deluge/__init__.py 60 36 4 0 37.50% 504s plinth/modules/deluge/forms.py 8 8 0 0 0.00% 504s plinth/modules/deluge/manifest.py 4 0 0 0 100.00% 504s plinth/modules/deluge/privileged.py 54 35 32 0 31.40% 504s plinth/modules/deluge/urls.py 4 4 0 0 0.00% 504s plinth/modules/deluge/utils.py 49 4 8 2 89.47% 504s plinth/modules/deluge/views.py 22 22 2 0 0.00% 504s plinth/modules/diagnostics/__init__.py 205 150 61 1 23.68% 504s plinth/modules/diagnostics/forms.py 6 6 0 0 0.00% 504s plinth/modules/diagnostics/manifest.py 4 0 0 0 100.00% 504s plinth/modules/diagnostics/urls.py 4 4 0 0 0.00% 504s plinth/modules/diagnostics/views.py 95 95 18 0 0.00% 504s plinth/modules/dynamicdns/__init__.py 144 108 34 0 20.22% 504s plinth/modules/dynamicdns/forms.py 53 53 20 0 0.00% 504s plinth/modules/dynamicdns/gnudip.py 25 16 2 0 33.33% 504s plinth/modules/dynamicdns/manifest.py 4 0 0 0 100.00% 504s plinth/modules/dynamicdns/privileged.py 64 49 26 0 21.11% 504s plinth/modules/dynamicdns/urls.py 4 4 0 0 0.00% 504s plinth/modules/dynamicdns/views.py 49 49 10 0 0.00% 504s plinth/modules/ejabberd/__init__.py 116 73 22 1 33.33% 504s plinth/modules/ejabberd/forms.py 23 23 0 0 0.00% 504s plinth/modules/ejabberd/manifest.py 8 0 0 0 100.00% 504s plinth/modules/ejabberd/privileged.py 207 125 122 3 36.78% 504s plinth/modules/ejabberd/urls.py 4 4 0 0 0.00% 504s plinth/modules/ejabberd/views.py 55 55 20 0 0.00% 504s plinth/modules/email/__init__.py 100 71 10 0 28.18% 504s plinth/modules/email/aliases.py 58 40 20 0 28.21% 504s plinth/modules/email/dns.py 45 45 8 0 0.00% 504s plinth/modules/email/forms.py 30 30 10 0 0.00% 504s plinth/modules/email/manifest.py 6 0 0 0 100.00% 504s plinth/modules/email/postfix.py 79 56 38 0 21.37% 504s plinth/modules/email/privileged/__init__.py 8 0 0 0 100.00% 504s plinth/modules/email/privileged/aliases.py 9 3 2 0 72.73% 504s plinth/modules/email/privileged/dkim.py 37 20 14 0 45.10% 504s plinth/modules/email/privileged/domain.py 42 28 8 0 32.00% 504s plinth/modules/email/privileged/home.py 6 1 2 0 87.50% 504s plinth/modules/email/privileged/postfix.py 23 10 4 0 55.56% 504s plinth/modules/email/privileged/spam.py 31 19 12 0 32.56% 504s plinth/modules/email/privileged/tls.py 19 12 4 0 30.43% 504s plinth/modules/email/urls.py 6 6 0 0 0.00% 504s plinth/modules/email/views.py 95 95 12 0 0.00% 504s plinth/modules/featherwiki/__init__.py 45 25 2 0 42.55% 504s plinth/modules/featherwiki/forms.py 10 10 0 0 0.00% 504s plinth/modules/featherwiki/manifest.py 6 0 0 0 100.00% 504s plinth/modules/featherwiki/privileged.py 49 26 18 0 52.24% 504s plinth/modules/featherwiki/urls.py 4 4 0 0 0.00% 504s plinth/modules/featherwiki/views.py 88 88 8 0 0.00% 504s plinth/modules/firewall/__init__.py 169 115 42 0 26.54% 504s plinth/modules/firewall/components.py 115 15 52 0 83.83% 504s plinth/modules/firewall/manifest.py 4 0 0 0 100.00% 504s plinth/modules/firewall/privileged.py 83 67 24 0 18.69% 504s plinth/modules/firewall/urls.py 4 4 0 0 0.00% 504s plinth/modules/firewall/views.py 15 15 0 0 0.00% 504s plinth/modules/first_boot/__init__.py 78 49 22 0 29.00% 504s plinth/modules/first_boot/forms.py 16 16 6 0 0.00% 504s plinth/modules/first_boot/middleware.py 32 32 16 0 0.00% 504s plinth/modules/first_boot/templatetags/__init__.py 0 0 0 0 100.00% 504s plinth/modules/first_boot/templatetags/firstboot_extras.py 7 7 2 0 0.00% 504s plinth/modules/first_boot/urls.py 5 5 0 0 0.00% 504s plinth/modules/first_boot/views.py 25 25 0 0 0.00% 504s plinth/modules/gitweb/__init__.py 132 70 44 7 40.34% 504s plinth/modules/gitweb/forms.py 79 1 30 1 98.17% 504s plinth/modules/gitweb/manifest.py 6 0 0 0 100.00% 504s plinth/modules/gitweb/privileged.py 245 112 108 10 51.84% 504s plinth/modules/gitweb/urls.py 4 0 0 0 100.00% 504s plinth/modules/gitweb/views.py 93 3 24 3 94.87% 504s plinth/modules/gnome/__init__.py 42 19 2 0 52.27% 504s plinth/modules/gnome/manifest.py 4 0 0 0 100.00% 504s plinth/modules/gnome/urls.py 4 4 0 0 0.00% 504s plinth/modules/help/__init__.py 42 13 2 0 65.91% 504s plinth/modules/help/privileged.py 8 3 2 0 70.00% 504s plinth/modules/help/urls.py 6 0 0 0 100.00% 504s plinth/modules/help/views.py 103 28 40 7 68.53% 504s plinth/modules/ikiwiki/__init__.py 65 39 8 0 35.62% 504s plinth/modules/ikiwiki/forms.py 8 8 0 0 0.00% 504s plinth/modules/ikiwiki/manifest.py 4 0 0 0 100.00% 504s plinth/modules/ikiwiki/privileged.py 64 37 31 0 43.16% 504s plinth/modules/ikiwiki/urls.py 4 4 0 0 0.00% 504s plinth/modules/ikiwiki/views.py 60 60 12 0 0.00% 504s plinth/modules/infinoted/__init__.py 39 21 2 0 43.90% 504s plinth/modules/infinoted/manifest.py 6 0 0 0 100.00% 504s plinth/modules/infinoted/privileged.py 59 38 22 0 30.86% 504s plinth/modules/infinoted/urls.py 4 4 0 0 0.00% 504s plinth/modules/janus/__init__.py 54 33 6 0 35.00% 504s plinth/modules/janus/manifest.py 5 0 0 0 100.00% 504s plinth/modules/janus/privileged.py 14 8 10 0 33.33% 504s plinth/modules/janus/urls.py 6 6 0 0 0.00% 504s plinth/modules/janus/views.py 11 11 0 0 0.00% 504s plinth/modules/jsxc/__init__.py 39 21 2 0 43.90% 504s plinth/modules/jsxc/manifest.py 5 0 0 0 100.00% 504s plinth/modules/jsxc/urls.py 6 6 0 0 0.00% 504s plinth/modules/jsxc/views.py 16 16 2 0 0.00% 504s plinth/modules/kiwix/__init__.py 51 29 4 0 43.64% 504s plinth/modules/kiwix/forms.py 9 0 0 0 100.00% 504s plinth/modules/kiwix/manifest.py 5 0 0 0 100.00% 504s plinth/modules/kiwix/privileged.py 54 10 14 2 82.35% 504s plinth/modules/kiwix/urls.py 4 0 0 0 100.00% 504s plinth/modules/kiwix/views.py 64 13 6 1 80.00% 504s plinth/modules/letsencrypt/__init__.py 148 88 36 0 40.22% 504s plinth/modules/letsencrypt/components.py 141 17 66 2 86.96% 504s plinth/modules/letsencrypt/dbus.py 20 20 4 0 0.00% 504s plinth/modules/letsencrypt/manifest.py 4 0 0 0 100.00% 504s plinth/modules/letsencrypt/privileged.py 186 134 74 0 26.15% 504s plinth/modules/letsencrypt/urls.py 4 4 0 0 0.00% 504s plinth/modules/letsencrypt/views.py 49 49 8 0 0.00% 504s plinth/modules/matrixsynapse/__init__.py 107 63 24 2 38.17% 504s plinth/modules/matrixsynapse/forms.py 16 16 0 0 0.00% 504s plinth/modules/matrixsynapse/manifest.py 9 0 0 0 100.00% 504s plinth/modules/matrixsynapse/privileged.py 177 114 74 0 33.86% 504s plinth/modules/matrixsynapse/urls.py 4 4 0 0 0.00% 504s plinth/modules/matrixsynapse/views.py 83 83 20 0 0.00% 504s plinth/modules/mediawiki/__init__.py 78 33 14 3 58.70% 504s plinth/modules/mediawiki/forms.py 36 36 4 0 0.00% 504s plinth/modules/mediawiki/manifest.py 4 0 0 0 100.00% 504s plinth/modules/mediawiki/privileged.py 104 49 56 1 52.50% 504s plinth/modules/mediawiki/urls.py 4 4 0 0 0.00% 504s plinth/modules/mediawiki/views.py 62 62 22 0 0.00% 504s plinth/modules/minetest/__init__.py 75 46 8 0 34.94% 504s plinth/modules/minetest/forms.py 8 8 0 0 0.00% 504s plinth/modules/minetest/manifest.py 5 0 0 0 100.00% 504s plinth/modules/minetest/privileged.py 25 16 10 0 31.43% 504s plinth/modules/minetest/urls.py 4 4 0 0 0.00% 504s plinth/modules/minetest/views.py 35 35 10 0 0.00% 504s plinth/modules/minidlna/__init__.py 59 39 12 0 28.17% 504s plinth/modules/minidlna/forms.py 8 8 0 0 0.00% 504s plinth/modules/minidlna/manifest.py 5 0 0 0 100.00% 504s plinth/modules/minidlna/privileged.py 47 28 18 0 38.46% 504s plinth/modules/minidlna/urls.py 4 4 0 0 0.00% 504s plinth/modules/minidlna/views.py 20 20 2 0 0.00% 504s plinth/modules/miniflux/__init__.py 53 32 2 0 38.18% 504s plinth/modules/miniflux/forms.py 14 0 2 0 100.00% 504s plinth/modules/miniflux/manifest.py 6 0 0 0 100.00% 504s plinth/modules/miniflux/privileged.py 77 43 24 0 47.52% 504s plinth/modules/miniflux/urls.py 4 0 0 0 100.00% 504s plinth/modules/miniflux/views.py 50 3 0 0 94.00% 504s plinth/modules/mumble/__init__.py 78 49 14 0 31.52% 504s plinth/modules/mumble/forms.py 11 11 2 0 0.00% 504s plinth/modules/mumble/manifest.py 5 0 0 0 100.00% 504s plinth/modules/mumble/privileged.py 60 34 18 0 53.85% 504s plinth/modules/mumble/urls.py 4 4 0 0 0.00% 504s plinth/modules/mumble/views.py 37 37 8 0 0.00% 504s plinth/modules/names/__init__.py 135 79 40 3 37.14% 504s plinth/modules/names/components.py 66 2 28 2 95.74% 504s plinth/modules/names/forms.py 20 0 4 0 100.00% 504s plinth/modules/names/manifest.py 4 0 0 0 100.00% 504s plinth/modules/names/privileged.py 73 51 32 0 28.57% 504s plinth/modules/names/resolved.py 102 102 38 0 0.00% 504s plinth/modules/names/urls.py 4 4 0 0 0.00% 504s plinth/modules/names/views.py 100 100 18 0 0.00% 504s plinth/modules/networks/__init__.py 76 48 14 0 31.11% 504s plinth/modules/networks/forms.py 137 137 10 0 0.00% 504s plinth/modules/networks/manifest.py 3 0 0 0 100.00% 504s plinth/modules/networks/privileged.py 82 48 22 0 38.46% 504s plinth/modules/networks/urls.py 4 4 0 0 0.00% 504s plinth/modules/networks/views.py 290 290 94 0 0.00% 504s plinth/modules/nextcloud/__init__.py 131 93 38 0 24.85% 504s plinth/modules/nextcloud/forms.py 15 15 0 0 0.00% 504s plinth/modules/nextcloud/manifest.py 7 0 0 0 100.00% 504s plinth/modules/nextcloud/privileged.py 199 131 64 0 36.50% 504s plinth/modules/nextcloud/urls.py 4 4 0 0 0.00% 504s plinth/modules/nextcloud/views.py 36 36 8 0 0.00% 504s plinth/modules/openvpn/__init__.py 45 25 2 0 42.55% 504s plinth/modules/openvpn/manifest.py 8 0 0 0 100.00% 504s plinth/modules/openvpn/privileged.py 110 74 34 0 29.17% 504s plinth/modules/openvpn/urls.py 5 5 0 0 0.00% 504s plinth/modules/openvpn/views.py 19 19 2 0 0.00% 504s plinth/modules/pagekite/__init__.py 45 24 6 0 41.18% 504s plinth/modules/pagekite/forms.py 92 92 35 0 0.00% 504s plinth/modules/pagekite/manifest.py 4 0 0 0 100.00% 504s plinth/modules/pagekite/privileged.py 117 117 53 0 0.00% 504s plinth/modules/pagekite/urls.py 4 4 0 0 0.00% 504s plinth/modules/pagekite/utils.py 46 25 12 0 36.21% 504s plinth/modules/pagekite/views.py 44 44 4 0 0.00% 504s plinth/modules/performance/__init__.py 35 20 2 0 40.54% 504s plinth/modules/performance/manifest.py 5 0 0 0 100.00% 504s plinth/modules/performance/urls.py 4 4 0 0 0.00% 504s plinth/modules/power/__init__.py 22 9 0 0 59.09% 504s plinth/modules/power/manifest.py 4 0 0 0 100.00% 504s plinth/modules/power/privileged.py 9 9 4 0 0.00% 504s plinth/modules/power/urls.py 4 4 0 0 0.00% 504s plinth/modules/power/views.py 35 35 4 0 0.00% 504s plinth/modules/privacy/__init__.py 60 36 6 0 36.36% 504s plinth/modules/privacy/forms.py 15 15 0 0 0.00% 504s plinth/modules/privacy/manifest.py 5 0 0 0 100.00% 504s plinth/modules/privacy/privileged.py 34 23 8 0 35.71% 504s plinth/modules/privacy/urls.py 4 4 0 0 0.00% 504s plinth/modules/privacy/views.py 37 37 14 0 0.00% 504s plinth/modules/privoxy/__init__.py 61 37 4 0 36.92% 504s plinth/modules/privoxy/manifest.py 4 0 0 0 100.00% 504s plinth/modules/privoxy/privileged.py 26 14 8 0 47.06% 504s plinth/modules/privoxy/urls.py 4 4 0 0 0.00% 504s plinth/modules/quassel/__init__.py 65 41 12 0 31.17% 504s plinth/modules/quassel/manifest.py 5 0 0 0 100.00% 504s plinth/modules/quassel/privileged.py 7 2 2 0 77.78% 504s plinth/modules/quassel/urls.py 4 4 0 0 0.00% 504s plinth/modules/quassel/views.py 21 21 2 0 0.00% 504s plinth/modules/radicale/__init__.py 71 45 8 0 32.91% 504s plinth/modules/radicale/forms.py 8 8 0 0 0.00% 504s plinth/modules/radicale/manifest.py 5 0 0 0 100.00% 504s plinth/modules/radicale/privileged.py 25 13 8 0 48.48% 504s plinth/modules/radicale/urls.py 4 4 0 0 0.00% 504s plinth/modules/radicale/views.py 19 19 2 0 0.00% 504s plinth/modules/roundcube/__init__.py 51 33 6 0 31.58% 504s plinth/modules/roundcube/forms.py 7 7 0 0 0.00% 504s plinth/modules/roundcube/manifest.py 5 0 0 0 100.00% 504s plinth/modules/roundcube/privileged.py 43 26 24 0 40.30% 504s plinth/modules/roundcube/urls.py 4 4 0 0 0.00% 504s plinth/modules/roundcube/views.py 20 20 2 0 0.00% 504s plinth/modules/rssbridge/__init__.py 46 26 2 0 41.67% 504s plinth/modules/rssbridge/forms.py 5 5 0 0 0.00% 504s plinth/modules/rssbridge/manifest.py 5 0 0 0 100.00% 504s plinth/modules/rssbridge/privileged.py 21 8 10 0 61.29% 504s plinth/modules/rssbridge/urls.py 4 4 0 0 0.00% 504s plinth/modules/rssbridge/views.py 20 20 2 0 0.00% 504s plinth/modules/samba/__init__.py 61 37 6 0 35.82% 504s plinth/modules/samba/manifest.py 6 0 0 0 100.00% 504s plinth/modules/samba/privileged.py 182 147 78 0 18.08% 504s plinth/modules/samba/urls.py 4 0 0 0 100.00% 504s plinth/modules/samba/views.py 70 1 22 0 98.91% 504s plinth/modules/searx/__init__.py 71 45 4 0 34.67% 504s plinth/modules/searx/forms.py 6 6 0 0 0.00% 504s plinth/modules/searx/manifest.py 5 0 0 0 100.00% 504s plinth/modules/searx/privileged.py 92 56 30 0 39.34% 504s plinth/modules/searx/urls.py 4 4 0 0 0.00% 504s plinth/modules/searx/views.py 33 33 6 0 0.00% 504s plinth/modules/security/__init__.py 95 73 40 0 16.30% 504s plinth/modules/security/forms.py 5 5 0 0 0.00% 504s plinth/modules/security/manifest.py 4 0 0 0 100.00% 504s plinth/modules/security/privileged.py 20 10 10 0 40.00% 504s plinth/modules/security/urls.py 4 4 0 0 0.00% 504s plinth/modules/security/views.py 37 37 6 0 0.00% 504s plinth/modules/shaarli/__init__.py 33 18 2 0 42.86% 504s plinth/modules/shaarli/manifest.py 6 0 0 0 100.00% 504s plinth/modules/shaarli/urls.py 4 4 0 0 0.00% 504s plinth/modules/shadowsocks/__init__.py 40 21 2 0 45.24% 504s plinth/modules/shadowsocks/forms.py 14 14 2 0 0.00% 504s plinth/modules/shadowsocks/manifest.py 4 0 0 0 100.00% 504s plinth/modules/shadowsocks/privileged.py 55 35 24 0 35.44% 504s plinth/modules/shadowsocks/urls.py 4 4 0 0 0.00% 504s plinth/modules/shadowsocks/views.py 24 24 2 0 0.00% 504s plinth/modules/shadowsocksserver/__init__.py 40 21 2 0 45.24% 504s plinth/modules/shadowsocksserver/forms.py 13 13 2 0 0.00% 504s plinth/modules/shadowsocksserver/manifest.py 4 0 0 0 100.00% 504s plinth/modules/shadowsocksserver/privileged.py 48 29 20 0 39.71% 504s plinth/modules/shadowsocksserver/urls.py 4 4 0 0 0.00% 504s plinth/modules/shadowsocksserver/views.py 26 26 4 0 0.00% 504s plinth/modules/sharing/__init__.py 35 18 2 0 45.95% 504s plinth/modules/sharing/forms.py 27 27 7 0 0.00% 504s plinth/modules/sharing/manifest.py 4 0 0 0 100.00% 504s plinth/modules/sharing/privileged.py 110 89 50 0 19.38% 504s plinth/modules/sharing/urls.py 4 4 0 0 0.00% 504s plinth/modules/sharing/views.py 59 59 4 0 0.00% 504s plinth/modules/snapshot/__init__.py 56 31 2 0 43.10% 504s plinth/modules/snapshot/forms.py 12 12 0 0 0.00% 504s plinth/modules/snapshot/manifest.py 4 0 0 0 100.00% 504s plinth/modules/snapshot/privileged.py 164 124 58 0 26.13% 504s plinth/modules/snapshot/urls.py 4 4 0 0 0.00% 504s plinth/modules/snapshot/views.py 110 110 38 0 0.00% 504s plinth/modules/sogo/__init__.py 59 35 2 0 39.34% 504s plinth/modules/sogo/forms.py 8 8 2 0 0.00% 504s plinth/modules/sogo/manifest.py 6 0 0 0 100.00% 504s plinth/modules/sogo/privileged.py 66 34 18 0 52.38% 504s plinth/modules/sogo/urls.py 4 4 0 0 0.00% 504s plinth/modules/sogo/views.py 22 22 2 0 0.00% 504s plinth/modules/ssh/__init__.py 60 39 12 0 29.17% 504s plinth/modules/ssh/forms.py 6 6 0 0 0.00% 504s plinth/modules/ssh/manifest.py 4 0 0 0 100.00% 504s plinth/modules/ssh/privileged.py 83 54 28 0 36.94% 504s plinth/modules/ssh/urls.py 4 4 0 0 0.00% 504s plinth/modules/ssh/views.py 37 37 6 0 0.00% 504s plinth/modules/sso/__init__.py 20 9 0 0 55.00% 504s plinth/modules/sso/forms.py 11 2 0 0 81.82% 504s plinth/modules/sso/privileged.py 50 3 12 1 93.55% 504s plinth/modules/sso/urls.py 6 6 0 0 0.00% 504s plinth/modules/sso/views.py 56 22 6 0 58.06% 504s plinth/modules/storage/__init__.py 217 156 74 2 25.09% 504s plinth/modules/storage/forms.py 104 104 48 0 0.00% 504s plinth/modules/storage/manifest.py 4 0 0 0 100.00% 504s plinth/modules/storage/privileged.py 189 137 76 2 30.94% 504s plinth/modules/storage/udisks2.py 175 124 66 0 21.16% 504s plinth/modules/storage/urls.py 4 4 0 0 0.00% 504s plinth/modules/storage/views.py 51 51 6 0 0.00% 504s plinth/modules/syncthing/__init__.py 76 52 10 0 27.91% 504s plinth/modules/syncthing/manifest.py 7 0 0 0 100.00% 504s plinth/modules/syncthing/privileged.py 57 37 18 0 34.67% 504s plinth/modules/syncthing/urls.py 4 4 0 0 0.00% 504s plinth/modules/tiddlywiki/__init__.py 45 25 2 0 42.55% 504s plinth/modules/tiddlywiki/forms.py 10 10 0 0 0.00% 504s plinth/modules/tiddlywiki/manifest.py 6 0 0 0 100.00% 504s plinth/modules/tiddlywiki/privileged.py 49 26 18 0 52.24% 504s plinth/modules/tiddlywiki/urls.py 4 4 0 0 0.00% 504s plinth/modules/tiddlywiki/views.py 88 88 8 0 0.00% 504s plinth/modules/tor/__init__.py 131 94 36 0 22.16% 504s plinth/modules/tor/forms.py 58 12 16 0 78.38% 504s plinth/modules/tor/manifest.py 8 0 0 0 100.00% 504s plinth/modules/tor/privileged.py 284 230 114 0 16.58% 504s plinth/modules/tor/urls.py 4 4 0 0 0.00% 504s plinth/modules/tor/utils.py 18 12 2 0 30.00% 504s plinth/modules/tor/views.py 67 67 18 0 0.00% 504s plinth/modules/torproxy/__init__.py 84 52 4 0 36.36% 504s plinth/modules/torproxy/forms.py 6 6 0 0 0.00% 504s plinth/modules/torproxy/manifest.py 8 0 0 0 100.00% 504s plinth/modules/torproxy/privileged.py 118 85 52 0 25.29% 504s plinth/modules/torproxy/urls.py 4 4 0 0 0.00% 504s plinth/modules/torproxy/utils.py 35 23 6 0 29.27% 504s plinth/modules/torproxy/views.py 62 62 14 0 0.00% 504s plinth/modules/transmission/__init__.py 55 32 4 0 38.98% 504s plinth/modules/transmission/forms.py 8 8 0 0 0.00% 504s plinth/modules/transmission/manifest.py 5 0 0 0 100.00% 504s plinth/modules/transmission/privileged.py 18 8 4 0 63.64% 504s plinth/modules/transmission/urls.py 4 4 0 0 0.00% 504s plinth/modules/transmission/views.py 26 26 2 0 0.00% 504s plinth/modules/ttrss/__init__.py 76 50 8 0 30.95% 504s plinth/modules/ttrss/manifest.py 5 0 0 0 100.00% 504s plinth/modules/ttrss/privileged.py 84 57 36 0 35.83% 504s plinth/modules/ttrss/urls.py 4 4 0 0 0.00% 504s plinth/modules/ttrss/views.py 20 20 2 0 0.00% 504s plinth/modules/upgrades/__init__.py 168 119 44 0 23.11% 504s plinth/modules/upgrades/forms.py 12 2 0 0 83.33% 504s plinth/modules/upgrades/manifest.py 4 0 0 0 100.00% 504s plinth/modules/upgrades/privileged.py 303 238 132 0 19.54% 504s plinth/modules/upgrades/urls.py 4 4 0 0 0.00% 504s plinth/modules/upgrades/views.py 109 74 24 0 26.32% 504s plinth/modules/users/__init__.py 121 87 24 1 24.14% 504s plinth/modules/users/components.py 23 0 14 0 100.00% 504s plinth/modules/users/forms.py 234 64 54 14 70.83% 504s plinth/modules/users/manifest.py 3 0 0 0 100.00% 504s plinth/modules/users/privileged.py 354 279 134 0 21.93% 504s plinth/modules/users/urls.py 7 0 0 0 100.00% 504s plinth/modules/users/views.py 115 13 12 1 87.40% 504s plinth/modules/wireguard/__init__.py 45 25 2 0 42.55% 504s plinth/modules/wireguard/forms.py 45 2 12 1 94.74% 504s plinth/modules/wireguard/manifest.py 6 0 0 0 100.00% 504s plinth/modules/wireguard/privileged.py 20 14 8 0 28.57% 504s plinth/modules/wireguard/urls.py 4 4 0 0 0.00% 504s plinth/modules/wireguard/utils.py 166 141 52 0 11.47% 504s plinth/modules/wireguard/views.py 167 167 18 0 0.00% 504s plinth/modules/wordpress/__init__.py 56 33 4 0 38.33% 504s plinth/modules/wordpress/forms.py 5 5 0 0 0.00% 504s plinth/modules/wordpress/manifest.py 4 0 0 0 100.00% 504s plinth/modules/wordpress/privileged.py 95 58 34 0 36.43% 504s plinth/modules/wordpress/urls.py 4 4 0 0 0.00% 504s plinth/modules/wordpress/views.py 20 20 2 0 0.00% 504s plinth/modules/zoph/__init__.py 61 36 8 0 36.23% 504s plinth/modules/zoph/forms.py 5 5 0 0 0.00% 504s plinth/modules/zoph/manifest.py 4 0 0 0 100.00% 504s plinth/modules/zoph/privileged.py 88 59 38 0 35.71% 504s plinth/modules/zoph/urls.py 4 4 0 0 0.00% 504s plinth/modules/zoph/views.py 50 50 6 0 0.00% 504s plinth/network.py 361 310 134 0 10.30% 504s plinth/notification.py 129 3 78 3 97.10% 504s plinth/operation.py 151 5 56 4 94.69% 504s plinth/package.py 258 76 68 6 69.94% 504s plinth/privileged/__init__.py 5 0 0 0 100.00% 504s plinth/privileged/config.py 50 12 22 0 75.00% 504s plinth/privileged/packages.py 206 172 104 0 14.19% 504s plinth/privileged/service.py 78 26 38 2 74.14% 504s plinth/settings.py 41 1 2 1 95.35% 504s plinth/setup.py 346 277 118 0 16.16% 504s plinth/signals.py 9 0 0 0 100.00% 504s plinth/templatetags/__init__.py 0 0 0 0 100.00% 504s plinth/templatetags/plinth_extras.py 42 14 22 2 65.62% 504s plinth/translation.py 28 22 12 0 15.00% 504s plinth/urls.py 7 0 0 0 100.00% 504s plinth/utils.py 106 22 32 1 77.54% 504s plinth/version.py 11 0 2 0 100.00% 504s plinth/views.py 324 186 92 4 40.38% 504s plinth/web_framework.py 73 52 18 0 23.08% 504s plinth/web_server.py 71 32 18 2 50.56% 504s ----------------------------------------------------------------------------------------------- 504s TOTAL 23184 13968 6572 178 38.80% 504s Coverage HTML written to dir debci/htmlcov 504s 504s ================= 589 passed, 57 skipped, 2 warnings in 48.11s ================= 504s /tmp/autopkgtest.K7EZkW/wrapper.sh: checking for leaked background processes... 504s /tmp/autopkgtest.K7EZkW/wrapper.sh: waiting for tee/cat subprocesses... 504s /tmp/autopkgtest.K7EZkW/wrapper.sh: cleaning up... 504s /tmp/autopkgtest.K7EZkW/wrapper.sh: Exit status: 0 504s autopkgtest: DBG: testbed command exited with code 0 504s autopkgtest [10:22:16]: test command2: -----------------------] 504s autopkgtest: DBG: testbed executing test finished with exit status 0 504s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/command2-stdout /tmp/autopkgtest-work.jeiu1aap/out/command2-stdout 505s autopkgtest: DBG: got reply from testbed: ok 505s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/command2-stderr /tmp/autopkgtest-work.jeiu1aap/out/command2-stderr 505s autopkgtest: DBG: got reply from testbed: ok 505s command2 PASS 505s autopkgtest [10:22:17]: test command2: - - - - - - - - - - results - - - - - - - - - - 505s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.K7EZkW/command2-artifacts/ /tmp/autopkgtest-work.jeiu1aap/out/artifacts/ 505s autopkgtest: DBG: got reply from testbed: ok 505s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.K7EZkW/command2-artifacts', '/tmp/autopkgtest.K7EZkW/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 505s autopkgtest: DBG: testbed command exited with code 0 505s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 223 505s autopkgtest: DBG: needs_reset, previously=True, requested by run_tests() line 230 505s autopkgtest [10:22:17]: @@@@@@@@@@@@@@@@@@@@ summary 505s command1 PASS 505s command2 PASS 505s autopkgtest: DBG: testbed stop 505s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.K7EZkW 505s autopkgtest: DBG: sending command to testbed: close 522s autopkgtest: DBG: got reply from testbed: ok 522s autopkgtest: DBG: sending command to testbed: quit 522s nova [W] Using flock in prodstack6-s390x 522s Creating nova instance adt-plucky-s390x-freedombox-20250211-101352-juju-7f2275-prod-proposed-migration-environment-15-9182cf3e-683d-44dd-9c64-371d2f2bf2cc from image adt/ubuntu-plucky-s390x-server-20250211.img (UUID 66c3edab-d329-48ef-b4f4-4fc082c07041)... 522s nova [W] Timed out waiting for 6c5fadee-8c8a-431e-96c7-e7e9f6121da4 to get deleted. 522s nova [W] Using flock in prodstack6-s390x 522s Creating nova instance adt-plucky-s390x-freedombox-20250211-101352-juju-7f2275-prod-proposed-migration-environment-15-9182cf3e-683d-44dd-9c64-371d2f2bf2cc from image adt/ubuntu-plucky-s390x-server-20250211.img (UUID 66c3edab-d329-48ef-b4f4-4fc082c07041)... 522s nova [W] Timed out waiting for d62538ee-0cf8-4ca1-9740-34998c8b1884 to get deleted.