0s autopkgtest: DBG: testbed init 0s autopkgtest [15:11:07]: starting date and time: 2025-02-12 15:11:07+0000 0s autopkgtest [15:11:07]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [15:11:07]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.rdbsu32v/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:tilix --apt-upgrade gdm3 --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=tilix/1.9.6-2build2 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-30.secgroup --name adt-plucky-s390x-gdm3-20250212-151107-juju-7f2275-prod-proposed-migration-environment-15-8e12668a-9422-4fbe-9e08-dfd01cddd6e1 --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 109s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.ply29s 109s autopkgtest: DBG: sending command to testbed: print-execute-command 109s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.t8s5brkn/runcmd 109s autopkgtest: DBG: sending command to testbed: capabilities 109s autopkgtest: DBG: got reply from testbed: ok isolation-machine suggested-normal-user=ubuntu revert-full-system reboot revert root-on-testbed 109s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'suggested-normal-user=ubuntu', 'revert-full-system', 'reboot', 'revert', 'root-on-testbed', 'has_internet'] 109s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ply29s'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.ply29s/wrapper.sh 109s autopkgtest: DBG: got reply from testbed: ok 109s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ply29s/wrapper.sh'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [15:12:56]: testbed dpkg architecture: s390x 109s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [15:12:56]: testbed apt version: 2.9.28 109s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed has eatmydata 110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [15:12:57]: @@@@@@@@@@@@@@@@@@@@ test bed setup 110s 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# <distro>.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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [15:12:57]: testbed release detected to be: None 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT source: Types: deb deb-src 110s URIs: http://ftpmaster.internal/ubuntu/ 110s Suites: plucky-proposed 110s Components: main restricted universe multiverse 110s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 500 110s 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 [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [15:12:58]: updating testbed package index (apt update) 111s 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'] 111s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 111s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 111s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 111s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 111s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [65.7 kB] 111s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.0 kB] 111s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [812 kB] 112s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [121 kB] 112s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [808 kB] 112s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3984 B] 112s Fetched 1935 kB in 1s (1630 kB/s) 113s Reading package lists... 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 113s Package: * 113s Pin: release plucky-proposed 113s Pin-Priority: 100 113s 113s Package: src:tilix:any 113s Pin: release plucky-proposed 113s Pin-Priority: 995 113s 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:tilix:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s 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.ply29s/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s 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 <<EOF\nPackage: *\nPin: release a=$RELEASE\nPin-Priority: 1001\n\nPackage: *\nPin: release a=$RELEASE-updates\nPin-Priority: 1001\n\nPackage: *\nPin: release n=$RELEASE-security\nPin-Priority: 1001\nEOF\n# This is going to be a downgrade-only (or no-op) dist-upgrade, as setup-testbed\n# already dist-upgraded the system. Force the usage of the conf files of the\n# package being installed (--force-confnew), as conf files "from the future"\n# may not be supported by the older package version we\'re downgrading to.\nif [ "${RELEASE}" != "trusty" ]; then\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::="--force-confnew" dist-upgrade\nfi\nrm /etc/apt/preferences.d/force-downgrade-to-release.pref\n\n# Remove packages not available from any configured repository, e.g.\n# packages fully removed from the archive. This requires the analyze-pattern\n# feature, which has been introduced in apt 2.0.1 (>= 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 <<EOF > /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 <<EOF > /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'] 113s + lsb_release --codename --short 113s + RELEASE=plucky 113s + cat 113s + [ plucky != trusty ] 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s Calculating upgrade... 114s The following packages were automatically installed and are no longer required: 114s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 114s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 114s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 114s linux-tools-6.11.0-8-generic 114s Use 'sudo apt autoremove' to remove them. 114s The following packages will be upgraded: 114s curl libcurl3t64-gnutls libcurl4t64 libnftables1 libnftnl11 nftables 114s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 114s Need to get 1573 kB of archives. 114s After this operation, 46.1 kB of additional disk space will be used. 114s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x nftables s390x 1.1.1-1build1 [71.5 kB] 114s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libnftnl11 s390x 1.2.8-1 [66.6 kB] 114s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnftables1 s390x 1.1.1-1build1 [388 kB] 114s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x curl s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [257 kB] 114s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl4t64 s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [397 kB] 114s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl3t64-gnutls s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [393 kB] 115s Fetched 1573 kB in 1s (1556 kB/s) 115s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 115s Preparing to unpack .../0-nftables_1.1.1-1build1_s390x.deb ... 115s Unpacking nftables (1.1.1-1build1) over (1.1.0-2) ... 115s Preparing to unpack .../1-libnftnl11_1.2.8-1_s390x.deb ... 115s Unpacking libnftnl11:s390x (1.2.8-1) over (1.2.7-1) ... 115s Preparing to unpack .../2-libnftables1_1.1.1-1build1_s390x.deb ... 115s Unpacking libnftables1:s390x (1.1.1-1build1) over (1.1.0-2) ... 115s Preparing to unpack .../3-curl_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 115s Unpacking curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 115s Preparing to unpack .../4-libcurl4t64_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 115s Unpacking libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 115s Preparing to unpack .../5-libcurl3t64-gnutls_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 115s Unpacking libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 115s Setting up libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 115s Setting up libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 115s Setting up libnftnl11:s390x (1.2.8-1) ... 115s Setting up curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 115s Setting up libnftables1:s390x (1.1.1-1build1) ... 115s Setting up nftables (1.1.1-1build1) ... 117s Processing triggers for man-db (2.13.0-1) ... 117s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 117s + /usr/lib/apt/apt-helper analyze-pattern ?true 117s Processing triggers for libc-bin (2.40-4ubuntu1) ... 117s + uname -r 117s + sed s/\./\\./g 117s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 117s + apt list ?obsolete 117s + tail -n+2 117s + grep -v ^linux-.*6\.12\.0-15-generic.* 117s + cut -d/ -f1 117s + true 117s + obsolete_pkgs= 117s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s The following packages will be REMOVED: 117s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 117s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 117s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 117s linux-tools-6.11.0-8-generic* 117s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 117s After this operation, 167 MB disk space will be freed. 117s (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.) 117s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 117s Removing libpython3.12t64:s390x (3.12.9-1) ... 117s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 117s Removing libnsl2:s390x (1.3.0-3build3) ... 117s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 117s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 118s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 118s Processing triggers for libc-bin (2.40-4ubuntu1) ... 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 118s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 118s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 118s + grep -q trusty /etc/lsb-release 118s + [ ! -d /usr/share/doc/unattended-upgrades ] 118s + [ ! -d /usr/share/doc/lxd ] 118s + [ ! -d /usr/share/doc/lxd-client ] 118s + [ ! -d /usr/share/doc/snapd ] 118s + type iptables 118s + cat 118s + chmod 755 /etc/rc.local 118s + . /etc/rc.local 118s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 118s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 118s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 118s + uname -m 118s + [ s390x = ppc64le ] 118s + [ -d /run/systemd/system ] 118s + systemd-detect-virt --quiet --vm 118s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 118s + cat 118s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 118s + echo COMPRESS=lz4 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [15:13:05]: upgrading testbed (apt dist-upgrade and autopurge) 118s 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'] 118s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 119s Starting 2 pkgProblemResolver with broken count: 0 119s Done 119s Entering ResolveByKeep 119s 119s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 120s Starting pkgProblemResolver with broken count: 0 120s Starting 2 pkgProblemResolver with broken count: 0 120s Done 120s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.ply29s/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 1 120s autopkgtest [15:13:07]: rebooting testbed after setup commands that affected boot 120s autopkgtest: DBG: sending command to testbed: reboot 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ply29s'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ply29s/autopkgtest-reboot 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ply29s/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ply29s/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ply29s/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ply29s'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ply29s/autopkgtest-reboot-prepare 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ply29s/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ply29s/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest [15:13:26]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 139s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ply29s/testbed-packages"], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ply29s/testbed-packages /tmp/autopkgtest-work.rdbsu32v/out/testbed-packages 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ply29s'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.ply29s/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ply29s/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ply29s/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ply29s/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.ply29s'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.ply29s/autopkgtest-reboot-prepare 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.ply29s/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.ply29s/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: Binaries: initialising 141s autopkgtest [15:13:28]: @@@@@@@@@@@@@@@@@@@@ apt-source gdm3 141s autopkgtest: DBG: blame += gdm3 141s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 141s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'gdm3'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^gdm3$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'gdm3=48~beta-1ubuntu1'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libgdm1$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libgdm1=48~beta-1ubuntu1'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libgdm-dev$'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libgdm-dev=48~beta-1ubuntu1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^gir1\\.2-gdm-1\\.0$'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'gir1.2-gdm-1.0=48~beta-1ubuntu1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: install_deps: deps_new=[] 143s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s 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.ply29s/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source gdm3=48~beta-1ubuntu1 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 gdm3_*.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=tilix/1.9.6-2build2'] 144s + cd / 144s + mktemp -d /tmp/autopkgtest.ply29s/build.XXX 144s + builddir=/tmp/autopkgtest.ply29s/build.z4X 144s + cd /tmp/autopkgtest.ply29s/build.z4X 144s + apt-get source -d -q --only-source gdm3=48~beta-1ubuntu1 145s + OUT=Reading package lists... 145s NOTICE: 'gdm3' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/gnome-team/gdm.git -b ubuntu/latest 145s Please use: 145s git clone https://salsa.debian.org/gnome-team/gdm.git -b ubuntu/latest 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 1039 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (dsc) [3343 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (tar) [938 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (diff) [97.6 kB] 145s Fetched 1039 kB in 1s (1321 kB/s) 145s Download complete and in download only mode 145s + [ -n ] 145s + echo Reading package lists... 145s NOTICE: 'gdm3' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/gnome-team/gdm.git -b ubuntu/latest 145s Please use: 145s git clone https://salsa.debian.org/gnome-team/gdm.git -b ubuntu/latest 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 1039 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (dsc) [3343 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (tar) [938 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (diff) [97.6 kB] 145s Fetched 1039 kB in 1s (1321 kB/s) 145s Download complete and in download only mode 145s + grep ^Get: 145s Get:1 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (dsc) [3343 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (tar) [938 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/main gdm3 48~beta-1ubuntu1 (diff) [97.6 kB] 145s + dpkg-source -x gdm3_48~beta-1ubuntu1.dsc src 145s gpgv: Signature made Mon Feb 10 16:02:54 2025 UTC 145s gpgv: using RSA key 4D0BE12F0E4776D8AACE9696E66C775AEBFE6C7D 145s gpgv: Can't check signature: No public key 145s dpkg-source: warning: cannot verify inline signature for ./gdm3_48~beta-1ubuntu1.dsc: no acceptable signature found 145s + chmod -R a+rX . 145s + cd src/. 145s + pwd 145s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest [15:13:32]: testing package gdm3 version 48~beta-1ubuntu1 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ply29s/build.z4X/src/debian/ /tmp/autopkgtest-work.rdbsu32v/out/pkg/debian/ 145s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: processing dependency bash 146s autopkgtest: DBG: processing dependency gdm3 146s autopkgtest: DBG: marked alternatives ['gdm3'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency gnutls-bin 146s autopkgtest: DBG: processing dependency libpam-sss 146s autopkgtest: DBG: processing dependency openssl 146s autopkgtest: DBG: processing dependency pamtester 146s autopkgtest: DBG: processing dependency passwd 146s autopkgtest: DBG: processing dependency softhsm2 146s autopkgtest: DBG: processing dependency sssd 146s autopkgtest: DBG: processing dependency util-linux 146s autopkgtest: DBG: Test defined: name sssd-gdm-smartcard-auth-test path None command "sudo env OFFLINE_MODE=1 GDM_USER=gdm bash debian/tests/sssd-gdm-smartcard-pam-auth-tester.sh" restrictions ['allow-stderr', 'breaks-testbed', 'isolation-container', 'needs-sudo'] features ['test-name=sssd-gdm-smartcard-auth-test'] depends ['bash', 'gdm3', 'gnutls-bin', 'libpam-sss', 'openssl', 'pamtester', 'passwd', 'softhsm2', 'sssd', 'util-linux'] 146s autopkgtest [15:13:33]: build not needed 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ply29s/build.z4X/src/ /tmp/autopkgtest-work.rdbsu32v/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: processing dependency bash 147s autopkgtest: DBG: processing dependency gdm3 147s autopkgtest: DBG: marked alternatives ['gdm3'] as a synthesised dependency 147s autopkgtest: DBG: processing dependency gnutls-bin 147s autopkgtest: DBG: processing dependency libpam-sss 147s autopkgtest: DBG: processing dependency openssl 147s autopkgtest: DBG: processing dependency pamtester 147s autopkgtest: DBG: processing dependency passwd 147s autopkgtest: DBG: processing dependency softhsm2 147s autopkgtest: DBG: processing dependency sssd 147s autopkgtest: DBG: processing dependency util-linux 147s autopkgtest: DBG: Test defined: name sssd-gdm-smartcard-auth-test path None command "sudo env OFFLINE_MODE=1 GDM_USER=gdm bash debian/tests/sssd-gdm-smartcard-pam-auth-tester.sh" restrictions ['allow-stderr', 'breaks-testbed', 'isolation-container', 'needs-sudo'] features ['test-name=sssd-gdm-smartcard-auth-test'] depends ['bash', 'gdm3', 'gnutls-bin', 'libpam-sss', 'openssl', 'pamtester', 'passwd', 'softhsm2', 'sssd', 'util-linux'] 147s autopkgtest [15:13:34]: test sssd-gdm-smartcard-auth-test: preparing testbed 147s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['bash', 'gdm3', 'gnutls-bin', 'libpam-sss', 'openssl', 'pamtester', 'passwd', 'softhsm2', 'sssd', 'util-linux', 'sudo'] 147s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 147s autopkgtest: DBG: install_deps: deps_new=['bash', 'gdm3', 'gnutls-bin', 'libpam-sss', 'openssl', 'pamtester', 'passwd', 'softhsm2', 'sssd', 'util-linux', 'sudo'] 147s autopkgtest: DBG: install-deps: satisfying bash, gdm3, gnutls-bin, libpam-sss, openssl, pamtester, passwd, softhsm2, sssd, util-linux, sudo 147s autopkgtest: DBG: can use apt-get on testbed: True 147s 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', 'bash, gdm3, gnutls-bin, libpam-sss, openssl, pamtester, passwd, softhsm2, sssd, util-linux, sudo'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 147s Reading package lists... 147s Building dependency tree... 147s Reading state information... 147s Starting pkgProblemResolver with broken count: 0 147s Starting 2 pkgProblemResolver with broken count: 0 147s Done 147s The following NEW packages will be installed: 147s accountsservice acl adwaita-icon-theme apg aptdaemon aptdaemon-data 147s at-spi2-common bubblewrap colord colord-data cpp cpp-14 147s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu dconf-cli dconf-gsettings-backend 147s dconf-service desktop-file-utils evolution-data-server-common fontconfig 147s fontconfig-config fonts-dejavu-core fonts-dejavu-mono gdm3 geoclue-2.0 147s geocode-glib-common gir1.2-accountsservice-1.0 gir1.2-adw-1 gir1.2-atk-1.0 147s gir1.2-atspi-2.0 gir1.2-freedesktop gir1.2-gck-2 gir1.2-gcr-4 147s gir1.2-gdesktopenums-3.0 gir1.2-gdkpixbuf-2.0 gir1.2-gdm-1.0 147s gir1.2-geoclue-2.0 gir1.2-gnomebg-4.0 gir1.2-gnomebluetooth-3.0 147s gir1.2-gnomedesktop-4.0 gir1.2-graphene-1.0 gir1.2-gstreamer-1.0 147s gir1.2-gtk-3.0 gir1.2-gtk-4.0 gir1.2-gweather-4.0 gir1.2-harfbuzz-0.0 147s gir1.2-ibus-1.0 gir1.2-mutter-15 gir1.2-nm-1.0 gir1.2-nma4-1.0 147s gir1.2-packagekitglib-1.0 gir1.2-pango-1.0 gir1.2-polkit-1.0 gir1.2-rsvg-2.0 147s gir1.2-soup-3.0 gir1.2-upowerglib-1.0 gir1.2-vte-2.91 glib-networking 147s glib-networking-common glib-networking-services gnome-bluetooth-3-common 147s gnome-control-center gnome-control-center-data gnome-desktop3-data 147s gnome-online-accounts gnome-session-bin gnome-session-common 147s gnome-settings-daemon gnome-settings-daemon-common gnome-shell 147s gnome-shell-common gnutls-bin gsettings-desktop-schemas 147s gstreamer1.0-pipewire gstreamer1.0-plugins-base gstreamer1.0-plugins-good 147s gtk-update-icon-cache gvfs gvfs-common gvfs-daemons gvfs-libs 147s heif-gdk-pixbuf heif-thumbnailer hicolor-icon-theme humanity-icon-theme 147s language-selector-common language-selector-gnome libaa1 libabsl20230802 147s libaccountsservice0 libadwaita-1-0 libaom3 libappstream5 libasound2-data 147s libasound2t64 libasyncns0 libatk-bridge2.0-0t64 libatk1.0-0t64 147s libatspi2.0-0t64 libavahi-client3 libavahi-common-data libavahi-common3 147s libavahi-glib1 libavc1394-0 libbasicobjects0t64 libbluetooth3 libcaca0 147s libcairo-gobject2 libcairo-script-interpreter2 libcairo2 libcamel-1.2-64t64 147s libcanberra-gtk3-0 libcanberra0 libcares2 libcdparanoia0 libcollection4t64 147s libcolord-gtk4-1t64 libcolord2 libcolorhug2 libcpdb-frontend2t64 libcpdb2t64 147s libcrack2 libcue2 libcups2t64 libdatrie1 libdbusmenu-glib4 libdconf1 147s libde265-0 libdecor-0-0 libdee-1.0-4 libdeflate0 libdhash1t64 147s libdisplay-info2 libdrm-radeon1 libduktape207 libdv4t64 libecal-2.0-3 147s libedataserver-1.2-27t64 libegl-mesa0 libegl1 libeis1 libepoxy0 147s libevent-2.1-7t64 libexempi8 libexif12 libexiv2-28 libexiv2-data 147s libflac12t64 libfontconfig1 libfontenc1 libfreeaptx0 libfreetype6 libgbm1 147s libgck-2-2 libgcr-4-4 libgd3 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common 147s libgdm1 libgeoclue-2-0 libgeocode-glib-2-0 libgexiv2-2 libgif7 libgjs0g 147s libgl1 libgl1-mesa-dri libglapi-mesa libgles2 libglib2.0-bin libglvnd0 147s libglx-mesa0 libglx0 libgnome-autoar-0-0 libgnome-bg-4-2t64 147s libgnome-bluetooth-3.0-13 libgnome-desktop-3-20t64 libgnome-desktop-4-2t64 147s libgnome-rr-4-2t64 libgnutls-dane0t64 libgoa-1.0-0b libgoa-1.0-common 147s libgoa-backend-1.0-2 libgomp1 libgpgmepp6t64 libgphoto2-6t64 147s libgphoto2-port12t64 libgraphene-1.0-0 libgraphite2-3 libgsf-1-114 147s libgsf-1-common libgsound0t64 libgstreamer-gl1.0-0 147s libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 147s libgstreamer1.0-0 libgtk-3-0t64 libgtk-3-common libgtk-4-1 libgtk-4-common 147s libgtk-4-media-gstreamer libgtop-2.0-11 libgtop2-common libgusb2 147s libgweather-4-0t64 libgweather-4-common libgxps2t64 libharfbuzz-gobject0 147s libharfbuzz-subset0 libharfbuzz0b libheif-plugin-aomdec 147s libheif-plugin-libde265 libheif1 libibus-1.0-5 libical3t64 libice6 147s libiec61883-0 libieee1284-3t64 libimagequant0 libimobiledevice6 147s libini-config5t64 libinireader0 libinput-bin libinput10 libipa-hbac0t64 147s libisl23 libjbig0 libjpeg-turbo8 libjpeg8 liblc3-1 liblcms2-2 libldb2 147s libltdl7 liblua5.4-0 libmozjs-128-0 libmp3lame0 libmpc3 libmpg123-0t64 147s libmtdev1t64 libmutter-15-0 libnautilus-extension4 libnfsidmap1 libnm0 147s libnma-common libnma-gtk4-0 libnotify4 libnss-sss libogg0 libopenjp2-7 147s libopus0 liborc-0.4-0t64 libpackagekit-glib2-18 libpam-pwquality libpam-sss 147s libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpangoxft-1.0-0 147s libpath-utils1t64 libpipewire-0.3-0t64 libpipewire-0.3-modules libpixman-1-0 147s libplist-2.0-4 libpoppler-glib8t64 libpoppler145 libportal-gtk4-1 libportal1 147s libproxy1v5 libpulse-mainloop-glib0 libpulse0 libpwquality-common 147s libpwquality1 libraqm0 libraw1394-11 libref-array1t64 librest-1.0-0 147s libroc0.4 librsvg2-2 librsvg2-common libsane-common libsane1 libsbc1 147s libsecret-1-0 libsecret-common libsharpyuv0 libshout3 libsm6 libsmbclient0 147s libsnapd-glib-2-1 libsndfile1 libsnmp-base libsnmp40t64 libsofthsm2 147s libsoup-3.0-0 libsoup-3.0-common libspa-0.2-bluetooth libspa-0.2-modules 147s libspeex1 libspeexdsp1 libsss-certmap0 libsss-idmap0 libsss-nss-idmap0 147s libstartup-notification0 libstemmer0d libtag2 libtalloc2 libtdb1 147s libtevent0t64 libthai-data libthai0 libtheora0 libtheoradec1 libtheoraenc1 147s libtiff6 libtotem-plparser-common libtotem-plparser18 147s libtracker-sparql-3.0-0 libtwolame0 libunbound8 libunity-protocol-private0 147s libunity-scopes-json-def-desktop libunity9 libunwind8 libupower-glib3 147s libusbmuxd6 libv4l-0t64 libv4lconvert0t64 libvisual-0.4-0 libvorbis0a 147s libvorbisenc2 libvorbisfile3 libvpx9 libvte-2.91-0 libvte-2.91-common 147s libvulkan1 libwacom-common libwacom9 libwavpack1 libwayland-client0 147s libwayland-cursor0 libwayland-egl1 libwayland-server0 libwbclient0 libwebp7 147s libwebpdemux2 libwebpmux3 libwebrtc-audio-processing-1-3 147s libwhoopsie-preferences0 libwhoopsie0 libwireplumber-0.5-0 libx11-xcb1 147s libxaw7 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 147s libxcb-render0 libxcb-res0 libxcb-shm0 libxcb-sync1 libxcb-util1 147s libxcb-xfixes0 libxcb-xkb1 libxcomposite1 libxcursor1 libxcvt0 libxdamage1 147s libxfixes3 libxfont2 libxft2 libxi6 libxinerama1 libxkbcommon-x11-0 147s libxkbfile1 libxkbregistry0 libxmu6 libxpm4 libxrandr2 libxrender1 147s libxshmfence1 libxt6t64 libxtst6 libxxf86vm1 mesa-libgallium mutter-common 147s mutter-common-bin nautilus nautilus-data pamtester pipewire pipewire-alsa 147s pipewire-audio pipewire-bin pipewire-pulse polkitd python3-aptdaemon 147s python3-aptdaemon.gtk3widgets python3-defer python3-sss samba-libs 147s session-migration sgml-base softhsm2 softhsm2-common sound-theme-freedesktop 147s sssd sssd-ad sssd-ad-common sssd-common sssd-ipa sssd-krb5 sssd-krb5-common 147s sssd-ldap sssd-proxy tecla tracker tracker-extract tracker-miner-fs 147s ubuntu-mono ubuntu-session ubuntu-wallpapers ubuntu-wallpapers-oracular 147s upower webp-pixbuf-loader whoopsie-preferences wireplumber x11-common 147s x11-xkb-utils x11-xserver-utils xdg-desktop-portal xdg-desktop-portal-gnome 147s xdg-desktop-portal-gtk xdg-user-dirs xdg-user-dirs-gtk xml-core 147s xserver-common xwayland yaru-theme-gnome-shell 148s 0 upgraded, 437 newly installed, 0 to remove and 0 not upgraded. 148s Need to get 199 MB of archives. 148s After this operation, 551 MB of additional disk space will be used. 148s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libaccountsservice0 s390x 23.13.9-7ubuntu1 [63.7 kB] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x accountsservice s390x 23.13.9-7ubuntu1 [71.6 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x language-selector-common all 0.226 [258 kB] 148s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libsane-common all 1.3.1-1 [921 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-user-dirs s390x 0.18-2 [19.2 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x acl s390x 2.3.2-2 [40.4 kB] 148s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 148s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 148s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 148s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 148s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 148s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 148s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 148s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 149s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 149s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.1+ds-2ubuntu1 [52.5 kB] 149s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 149s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x humanity-icon-theme all 0.6.16 [1282 kB] 149s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-mono all 24.04-0ubuntu1 [151 kB] 149s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-2 [578 kB] 149s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x apg s390x 2.2.3.dfsg.1-7 [43.4 kB] 149s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x at-spi2-common all 2.55.2-1 [8916 B] 149s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x bubblewrap s390x 0.11.0-2 [54.1 kB] 149s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x colord-data all 1.4.7-1build2 [1212 kB] 149s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 149s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libduktape207 s390x 2.7.0+tests-0ubuntu3 [150 kB] 149s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x polkitd s390x 126-2 [97.1 kB] 149s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 149s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 149s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 149s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 149s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libcolord2 s390x 1.4.7-1build2 [151 kB] 149s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libgusb2 s390x 0.4.9-1 [38.9 kB] 149s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libcolorhug2 s390x 1.4.7-1build2 [39.5 kB] 149s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 149s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 149s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 149s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 149s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 149s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 150s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 150s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 150s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 150s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 150s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 150s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 150s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 150s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libexif12 s390x 0.6.25-1 [87.2 kB] 150s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.11.0-1 [1493 kB] 150s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 150s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 150s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 150s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 150s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 150s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 150s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 150s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 150s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 150s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 150s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libgd3 s390x 2.3.3-12ubuntu3 [141 kB] 150s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 150s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libgphoto2-port12t64 s390x 2.5.31-4 [58.7 kB] 150s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libgphoto2-6t64 s390x 2.5.31-4 [779 kB] 150s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libieee1284-3t64 s390x 0.2.11-14.1build1 [22.4 kB] 150s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgmepp6t64 s390x 1.24.1-4ubuntu1 [125 kB] 150s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 150s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler145 s390x 25.01.0-4 [1233 kB] 150s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler-glib8t64 s390x 25.01.0-4 [164 kB] 150s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libsnmp-base all 5.9.4+dfsg-1.1ubuntu6 [206 kB] 150s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libsnmp40t64 s390x 5.9.4+dfsg-1.1ubuntu6 [1055 kB] 150s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libv4lconvert0t64 s390x 1.28.1-1 [100 kB] 150s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libv4l-0t64 s390x 1.28.1-1 [45.7 kB] 150s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libsane1 s390x 1.3.1-1 [2987 kB] 151s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x colord s390x 1.4.7-1build2 [188 kB] 151s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 151s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 151s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 151s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 151s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 151s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 151s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-cli s390x 0.40.0-5 [28.5 kB] 151s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x desktop-file-utils s390x 0.28-1 [53.9 kB] 151s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x evolution-data-server-common all 3.55.2-1 [190 kB] 151s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 151s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libgdm1 s390x 48~beta-1ubuntu1 [78.4 kB] 151s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gdm-1.0 s390x 48~beta-1ubuntu1 [11.2 kB] 151s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x gsettings-desktop-schemas all 48~beta-1ubuntu1 [37.4 kB] 151s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libupower-glib3 s390x 1.90.7-1 [40.8 kB] 151s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libplist-2.0-4 s390x 2.6.0-2build1 [51.6 kB] 151s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libusbmuxd6 s390x 2.0.2-5~exp1ubuntu1 [20.9 kB] 151s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libimobiledevice6 s390x 1.3.0-8.1ubuntu4 [70.9 kB] 151s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x upower s390x 1.90.7-1 [89.7 kB] 151s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 151s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 151s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 151s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 151s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 151s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 151s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 151s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 152s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 152s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 152s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 152s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 152s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 152s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 152s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 153s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 153s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 153s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 153s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 153s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 153s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 153s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 153s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 153s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 153s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libgles2 s390x 1.7.0-1build1 [22.4 kB] 153s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-desktop3-data all 44.1-2 [29.6 kB] 153s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libatk1.0-0t64 s390x 2.55.2-1 [54.8 kB] 153s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 153s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libatspi2.0-0t64 s390x 2.55.2-1 [80.3 kB] 153s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libatk-bridge2.0-0t64 s390x 2.55.2-1 [66.7 kB] 153s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 153s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 153s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 153s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 153s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 153s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 153s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 153s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 153s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 153s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 153s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 153s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 153s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 153s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 153s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 153s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 153s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-common all 3.24.48-3ubuntu1 [1424 kB] 153s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-0t64 s390x 3.24.48-3ubuntu1 [2949 kB] 153s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbregistry0 s390x 1.7.0-2 [14.4 kB] 153s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libgnome-desktop-3-20t64 s390x 44.1-2 [90.3 kB] 153s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 153s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 153s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 153s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-session-bin s390x 47.0.1-1ubuntu1 [126 kB] 153s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-session-common all 47.0.1-1ubuntu1 [21.1 kB] 153s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-settings-daemon-common all 48~beta-1ubuntu1 [28.4 kB] 153s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 153s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 153s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x libabsl20230802 s390x 20230802.1-4ubuntu2 [529 kB] 153s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libwebrtc-audio-processing-1-3 s390x 1.3-3 [415 kB] 153s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libspa-0.2-modules s390x 1.2.7-1ubuntu5 [665 kB] 153s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libbluetooth3 s390x 5.79-1 [77.4 kB] 153s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libfreeaptx0 s390x 0.1.1-2build1 [14.3 kB] 153s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x liblc3-1 s390x 1.1.2+dfsg-1 [103 kB] 153s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 154s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libsbc1 s390x 2.0-1build1 [29.3 kB] 154s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x libspa-0.2-bluetooth s390x 1.2.7-1ubuntu5 [356 kB] 154s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x libpipewire-0.3-0t64 s390x 1.2.7-1ubuntu5 [280 kB] 154s Get:162 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 154s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 154s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 154s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 154s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 154s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 154s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 154s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 154s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 154s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x libspeexdsp1 s390x 1.2.1-3 [55.0 kB] 154s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x libunwind8 s390x 1.6.2-3.1 [46.8 kB] 154s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x libroc0.4 s390x 0.4.0+dfsg-4ubuntu1 [295 kB] 154s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x libproxy1v5 s390x 0.5.9-1 [27.8 kB] 154s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking-common all 2.80.1-1 [6680 B] 154s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking-services s390x 2.80.1-1 [12.8 kB] 154s Get:177 http://ftpmaster.internal/ubuntu plucky/main s390x glib-networking s390x 2.80.1-1 [65.5 kB] 154s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x libsoup-3.0-common all 3.6.4-2 [10.8 kB] 154s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x libsoup-3.0-0 s390x 3.6.4-2 [290 kB] 154s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x libsnapd-glib-2-1 s390x 1.66-0ubuntu1 [117 kB] 154s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x libpipewire-0.3-modules s390x 1.2.7-1ubuntu5 [838 kB] 154s Get:182 http://ftpmaster.internal/ubuntu plucky/main s390x pipewire-bin s390x 1.2.7-1ubuntu5 [390 kB] 154s Get:183 http://ftpmaster.internal/ubuntu plucky/main s390x pipewire s390x 1.2.7-1ubuntu5 [96.6 kB] 154s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x pipewire-alsa s390x 1.2.7-1ubuntu5 [44.6 kB] 154s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x pipewire-pulse s390x 1.2.7-1ubuntu5 [9320 B] 154s Get:186 http://ftpmaster.internal/ubuntu plucky/main s390x liblua5.4-0 s390x 5.4.7-1 [174 kB] 154s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x libwireplumber-0.5-0 s390x 0.5.8-1 [286 kB] 154s Get:188 http://ftpmaster.internal/ubuntu plucky/main s390x wireplumber s390x 0.5.8-1 [95.3 kB] 154s Get:189 http://ftpmaster.internal/ubuntu plucky/main s390x pipewire-audio all 1.2.7-1ubuntu5 [4070 B] 154s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x libtdb1 s390x 1.4.12-1build1 [49.5 kB] 154s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisfile3 s390x 1.3.7-2 [18.2 kB] 154s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x sound-theme-freedesktop all 0.8-3ubuntu1 [384 kB] 154s Get:193 http://ftpmaster.internal/ubuntu plucky/main s390x libcanberra0 s390x 0.30-17ubuntu1 [41.4 kB] 154s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x libcanberra-gtk3-0 s390x 0.30-17ubuntu1 [8012 B] 154s Get:195 http://ftpmaster.internal/ubuntu plucky/main s390x libgck-2-2 s390x 4.3.91-1 [76.8 kB] 154s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x libgcr-4-4 s390x 4.3.91-1 [204 kB] 154s Get:197 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-glib1 s390x 0.8-14ubuntu1 [7994 B] 154s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x libnotify4 s390x 0.8.3-1build2 [25.5 kB] 154s Get:199 http://ftpmaster.internal/ubuntu plucky/main s390x geoclue-2.0 s390x 2.7.2-2ubuntu1 [103 kB] 154s Get:200 http://ftpmaster.internal/ubuntu plucky/main s390x libgeoclue-2-0 s390x 2.7.2-2ubuntu1 [33.0 kB] 154s Get:201 http://ftpmaster.internal/ubuntu plucky/main s390x geocode-glib-common all 3.26.3-6build3 [17.9 kB] 154s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x libgeocode-glib-2-0 s390x 3.26.3-6build3 [45.0 kB] 155s Get:203 http://ftpmaster.internal/ubuntu plucky/main s390x libgweather-4-common all 4.4.4-1 [192 kB] 155s Get:204 http://ftpmaster.internal/ubuntu plucky/main s390x libgweather-4-0t64 s390x 4.4.4-1 [363 kB] 155s Get:205 http://ftpmaster.internal/ubuntu plucky/main s390x libnm0 s390x 1.50.0-1ubuntu3 [487 kB] 155s Get:206 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse-mainloop-glib0 s390x 1:17.0+dfsg1-2ubuntu1 [11.9 kB] 155s Get:207 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-settings-daemon s390x 48~beta-1ubuntu1 [320 kB] 155s Get:208 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-accountsservice-1.0 s390x 23.13.9-7ubuntu1 [5304 B] 155s Get:209 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-freedesktop s390x 1.82.0-4 [64.0 kB] 155s Get:210 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gdkpixbuf-2.0 s390x 2.42.12+dfsg-2 [9330 B] 155s Get:211 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphene-1.0-0 s390x 1.10.8-5 [54.2 kB] 155s Get:212 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-graphene-1.0 s390x 1.10.8-5 [11.0 kB] 155s Get:213 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-gobject0 s390x 10.2.0-1 [35.1 kB] 155s Get:214 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-harfbuzz-0.0 s390x 10.2.0-1 [44.4 kB] 155s Get:215 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 155s Get:216 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoxft-1.0-0 s390x 1.56.1-1 [20.2 kB] 155s Get:217 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-pango-1.0 s390x 1.56.1-1 [34.4 kB] 155s Get:218 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-script-interpreter2 s390x 1.18.2-2 [62.3 kB] 155s Get:219 http://ftpmaster.internal/ubuntu plucky/main s390x libcpdb2t64 s390x 2.0~b5-1.2build1 [26.3 kB] 155s Get:220 http://ftpmaster.internal/ubuntu plucky/main s390x libcpdb-frontend2t64 s390x 2.0~b5-1.2build1 [19.4 kB] 155s Get:221 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz-subset0 s390x 10.2.0-1 [552 kB] 155s Get:222 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-common all 4.17.1+ds-2ubuntu1 [1505 kB] 155s Get:223 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-1 s390x 4.17.1+ds-2ubuntu1 [3323 kB] 156s Get:224 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gtk-4.0 s390x 4.17.1+ds-2ubuntu1 [211 kB] 156s Get:225 http://ftpmaster.internal/ubuntu plucky/main s390x libstemmer0d s390x 2.2.0-4build1 [174 kB] 156s Get:226 http://ftpmaster.internal/ubuntu plucky/main s390x libappstream5 s390x 1.0.4-1 [236 kB] 156s Get:227 http://ftpmaster.internal/ubuntu plucky/main s390x libadwaita-1-0 s390x 1.6.2-1ubuntu1 [421 kB] 156s Get:228 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-adw-1 s390x 1.6.2-1ubuntu1 [40.1 kB] 156s Get:229 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-atk-1.0 s390x 2.55.2-1 [22.9 kB] 156s Get:230 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-atspi-2.0 s390x 2.55.2-1 [19.8 kB] 156s Get:231 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gck-2 s390x 4.3.91-1 [10.7 kB] 156s Get:232 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gcr-4 s390x 4.3.91-1 [13.9 kB] 156s Get:233 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gdesktopenums-3.0 s390x 48~beta-1ubuntu1 [10.8 kB] 156s Get:234 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-geoclue-2.0 s390x 2.7.2-2ubuntu1 [6142 B] 156s Get:235 http://ftpmaster.internal/ubuntu plucky/main s390x libgnome-desktop-4-2t64 s390x 44.1-2 [84.3 kB] 156s Get:236 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gnomedesktop-4.0 s390x 44.1-2 [5744 B] 156s Get:237 http://ftpmaster.internal/ubuntu plucky/main s390x libgnome-bg-4-2t64 s390x 44.1-2 [22.4 kB] 156s Get:238 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gnomebg-4.0 s390x 44.1-2 [4422 B] 156s Get:239 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-bluetooth-3-common all 47.1-1 [6986 B] 156s Get:240 http://ftpmaster.internal/ubuntu plucky/main s390x libgnome-bluetooth-3.0-13 s390x 47.1-1 [48.5 kB] 156s Get:241 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gnomebluetooth-3.0 s390x 47.1-1 [3926 B] 156s Get:242 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer1.0-0 s390x 1.25.1-1 [1235 kB] 156s Get:243 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gstreamer-1.0 s390x 1.25.1-1 [87.9 kB] 156s Get:244 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gweather-4.0 s390x 4.4.4-1 [7294 B] 156s Get:245 http://ftpmaster.internal/ubuntu plucky/main s390x libibus-1.0-5 s390x 1.5.32~beta1-1 [182 kB] 156s Get:246 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-ibus-1.0 s390x 1.5.32~beta1-1 [83.0 kB] 156s Get:247 http://ftpmaster.internal/ubuntu plucky/main s390x mutter-common all 47.4-1ubuntu2 [54.2 kB] 156s Get:248 http://ftpmaster.internal/ubuntu plucky/main s390x mutter-common-bin s390x 47.4-1ubuntu2 [57.8 kB] 156s Get:249 http://ftpmaster.internal/ubuntu plucky/main s390x libdisplay-info2 s390x 0.2.0-2 [79.9 kB] 156s Get:250 http://ftpmaster.internal/ubuntu plucky/main s390x libeis1 s390x 1.3.901-1 [40.7 kB] 156s Get:251 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 156s Get:252 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 156s Get:253 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 156s Get:254 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.26.2-1 [22.8 kB] 156s Get:255 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.26.2-1 [135 kB] 156s Get:256 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 156s Get:257 http://ftpmaster.internal/ubuntu plucky/main s390x libstartup-notification0 s390x 0.12-8 [19.9 kB] 156s Get:258 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-res0 s390x 1.17.0-2 [6742 B] 156s Get:259 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 156s Get:260 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 156s Get:261 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbfile1 s390x 1:1.1.0-1build4 [76.5 kB] 156s Get:262 http://ftpmaster.internal/ubuntu plucky/main s390x libxtst6 s390x 2:1.2.5-1 [13.5 kB] 156s Get:263 http://ftpmaster.internal/ubuntu plucky/main s390x libmutter-15-0 s390x 47.4-1ubuntu2 [1452 kB] 157s Get:264 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-mutter-15 s390x 47.4-1ubuntu2 [123 kB] 157s Get:265 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-nm-1.0 s390x 1.50.0-1ubuntu3 [86.0 kB] 157s Get:266 http://ftpmaster.internal/ubuntu plucky/main s390x libnma-common all 1.10.6-5 [3940 B] 157s Get:267 http://ftpmaster.internal/ubuntu plucky/main s390x libnma-gtk4-0 s390x 1.10.6-5 [93.1 kB] 157s Get:268 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-nma4-1.0 s390x 1.10.6-5 [6274 B] 157s Get:269 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-polkit-1.0 s390x 126-2 [8516 B] 157s Get:270 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.2+dfsg-1 [1986 kB] 157s Get:271 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-rsvg-2.0 s390x 2.59.2+dfsg-1 [11.2 kB] 157s Get:272 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-soup-3.0 s390x 3.6.4-2 [22.2 kB] 157s Get:273 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-upowerglib-1.0 s390x 1.90.7-1 [5408 B] 157s Get:274 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-control-center-data all 1:47.3-1ubuntu1 [183 kB] 157s Get:275 http://ftpmaster.internal/ubuntu plucky/main s390x libgoa-1.0-common all 3.53.1-1 [6016 B] 157s Get:276 http://ftpmaster.internal/ubuntu plucky/main s390x libgoa-1.0-0b s390x 3.53.1-1 [68.7 kB] 157s Get:277 http://ftpmaster.internal/ubuntu plucky/main s390x librest-1.0-0 s390x 0.9.1-6build3 [34.3 kB] 157s Get:278 http://ftpmaster.internal/ubuntu plucky/main s390x libsecret-common all 0.21.6-3 [5130 B] 157s Get:279 http://ftpmaster.internal/ubuntu plucky/main s390x libsecret-1-0 s390x 0.21.6-3 [115 kB] 157s Get:280 http://ftpmaster.internal/ubuntu plucky/main s390x libgoa-backend-1.0-2 s390x 3.53.1-1 [110 kB] 157s Get:281 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-online-accounts s390x 3.53.1-1 [83.0 kB] 157s Get:282 http://ftpmaster.internal/ubuntu plucky/main s390x heif-gdk-pixbuf s390x 1.19.5-1build1 [7662 B] 157s Get:283 http://ftpmaster.internal/ubuntu plucky/main s390x heif-thumbnailer s390x 1.19.5-1build1 [14.6 kB] 157s Get:284 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-gtk-3.0 s390x 3.24.48-3ubuntu1 [241 kB] 157s Get:285 http://ftpmaster.internal/ubuntu plucky/main s390x libpackagekit-glib2-18 s390x 1.3.0-2 [117 kB] 157s Get:286 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-packagekitglib-1.0 s390x 1.3.0-2 [25.2 kB] 157s Get:287 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defer all 1.0.6-2.1ubuntu1 [11.0 kB] 157s Get:288 http://ftpmaster.internal/ubuntu plucky/main s390x python3-aptdaemon all 2.0.1 [66.1 kB] 157s Get:289 http://ftpmaster.internal/ubuntu plucky/main s390x aptdaemon all 2.0.1 [12.4 kB] 157s Get:290 http://ftpmaster.internal/ubuntu plucky/main s390x aptdaemon-data all 2.0.1 [181 kB] 157s Get:291 http://ftpmaster.internal/ubuntu plucky/main s390x libvte-2.91-common s390x 0.78.3-3 [14.5 kB] 157s Get:292 http://ftpmaster.internal/ubuntu plucky/main s390x libvte-2.91-0 s390x 0.78.3-3 [289 kB] 157s Get:293 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-vte-2.91 s390x 0.78.3-3 [13.4 kB] 157s Get:294 http://ftpmaster.internal/ubuntu plucky/main s390x python3-aptdaemon.gtk3widgets all 2.0.1 [13.0 kB] 157s Get:295 http://ftpmaster.internal/ubuntu plucky/main s390x language-selector-gnome all 0.226 [19.7 kB] 157s Get:296 http://ftpmaster.internal/ubuntu plucky/main s390x liborc-0.4-0t64 s390x 1:0.4.40-1 [212 kB] 157s Get:297 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-plugins-base1.0-0 s390x 1.25.1-2 [918 kB] 157s Get:298 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-gl1.0-0 s390x 1.25.1-2 [219 kB] 157s Get:299 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-4-media-gstreamer s390x 4.17.1+ds-2ubuntu1 [66.9 kB] 157s Get:300 http://ftpmaster.internal/ubuntu plucky/main s390x tecla s390x 47.0-1 [26.2 kB] 157s Get:301 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 157s Get:302 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 157s Get:303 http://ftpmaster.internal/ubuntu plucky/main s390x webp-pixbuf-loader s390x 0.2.7-1 [11.2 kB] 157s Get:304 http://ftpmaster.internal/ubuntu plucky/main s390x libwhoopsie-preferences0 s390x 23build3 [14.5 kB] 158s Get:305 http://ftpmaster.internal/ubuntu plucky/main s390x libwhoopsie0 s390x 0.2.78 [10.8 kB] 158s Get:306 http://ftpmaster.internal/ubuntu plucky/main s390x whoopsie-preferences s390x 23build3 [8696 B] 158s Get:307 http://ftpmaster.internal/ubuntu plucky/main s390x libcolord-gtk4-1t64 s390x 0.3.1-1build2 [17.8 kB] 158s Get:308 http://ftpmaster.internal/ubuntu plucky/main s390x libgnome-rr-4-2t64 s390x 44.1-2 [71.3 kB] 158s Get:309 http://ftpmaster.internal/ubuntu plucky/main s390x libgsound0t64 s390x 1.0.3-3.2build2 [8882 B] 158s Get:310 http://ftpmaster.internal/ubuntu plucky/main s390x libgtop2-common all 2.41.3-1build4 [3518 B] 158s Get:311 http://ftpmaster.internal/ubuntu plucky/main s390x libgtop-2.0-11 s390x 2.41.3-1build4 [40.2 kB] 158s Get:312 http://ftpmaster.internal/ubuntu plucky/main s390x libpwquality-common all 1.4.5-4 [7714 B] 158s Get:313 http://ftpmaster.internal/ubuntu plucky/main s390x libcrack2 s390x 2.9.6-5.2 [29.6 kB] 158s Get:314 http://ftpmaster.internal/ubuntu plucky/main s390x libpwquality1 s390x 1.4.5-4 [14.6 kB] 158s Get:315 http://ftpmaster.internal/ubuntu plucky/main s390x libtalloc2 s390x 2.4.2-2build1 [28.4 kB] 158s Get:316 http://ftpmaster.internal/ubuntu plucky/main s390x libtevent0t64 s390x 0.16.1-3 [42.6 kB] 158s Get:317 http://ftpmaster.internal/ubuntu plucky/main s390x libldb2 s390x 2:2.9.1+samba4.20.4+dfsg-1ubuntu5 [194 kB] 158s Get:318 http://ftpmaster.internal/ubuntu plucky/main s390x libwbclient0 s390x 2:4.20.4+dfsg-1ubuntu5 [75.5 kB] 158s Get:319 http://ftpmaster.internal/ubuntu plucky/main s390x samba-libs s390x 2:4.20.4+dfsg-1ubuntu5 [6354 kB] 158s Get:320 http://ftpmaster.internal/ubuntu plucky/main s390x libsmbclient0 s390x 2:4.20.4+dfsg-1ubuntu5 [64.9 kB] 158s Get:321 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-control-center s390x 1:47.3-1ubuntu1 [1823 kB] 158s Get:322 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-shell-common all 47.0-2ubuntu3.1 [250 kB] 158s Get:323 http://ftpmaster.internal/ubuntu plucky/main s390x gstreamer1.0-pipewire s390x 1.2.7-1ubuntu5 [55.5 kB] 158s Get:324 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-bin s390x 2.83.3-2 [99.5 kB] 158s Get:325 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-wallpapers-oracular all 24.10.3 [74.4 MB] 166s Get:326 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-wallpapers all 24.10.3 [9436 kB] 167s Get:327 http://ftpmaster.internal/ubuntu plucky/main s390x libcamel-1.2-64t64 s390x 3.55.2-1 [504 kB] 167s Get:328 http://ftpmaster.internal/ubuntu plucky/main s390x libedataserver-1.2-27t64 s390x 3.55.2-1 [288 kB] 167s Get:329 http://ftpmaster.internal/ubuntu plucky/main s390x libical3t64 s390x 3.0.19-4 [312 kB] 167s Get:330 http://ftpmaster.internal/ubuntu plucky/main s390x libecal-2.0-3 s390x 3.55.2-1 [173 kB] 167s Get:331 http://ftpmaster.internal/ubuntu plucky/main s390x libmozjs-128-0 s390x 128.7.0-1 [10.8 MB] 169s Get:332 http://ftpmaster.internal/ubuntu plucky/main s390x libgjs0g s390x 1.82.1-1 [429 kB] 169s Get:333 http://ftpmaster.internal/ubuntu plucky/main s390x libgnome-autoar-0-0 s390x 0.4.5-2 [30.1 kB] 169s Get:334 http://ftpmaster.internal/ubuntu plucky/main s390x gnome-shell s390x 47.0-2ubuntu3.1 [959 kB] 169s Get:335 http://ftpmaster.internal/ubuntu plucky/main s390x gvfs-common all 1.56.1-1ubuntu1 [13.8 kB] 169s Get:336 http://ftpmaster.internal/ubuntu plucky/main s390x gvfs-libs s390x 1.56.1-1ubuntu1 [108 kB] 169s Get:337 http://ftpmaster.internal/ubuntu plucky/main s390x gvfs-daemons s390x 1.56.1-1ubuntu1 [110 kB] 169s Get:338 http://ftpmaster.internal/ubuntu plucky/main s390x gvfs s390x 1.56.1-1ubuntu1 [117 kB] 169s Get:339 http://ftpmaster.internal/ubuntu plucky/main s390x libnautilus-extension4 s390x 1:47.1-1ubuntu1 [23.0 kB] 169s Get:340 http://ftpmaster.internal/ubuntu plucky/main s390x nautilus-data all 1:47.1-1ubuntu1 [18.4 kB] 169s Get:341 http://ftpmaster.internal/ubuntu plucky/main s390x libtracker-sparql-3.0-0 s390x 3.7.3-2build1 [333 kB] 169s Get:342 http://ftpmaster.internal/ubuntu plucky/main s390x tracker s390x 3.7.3-2build1 [382 kB] 169s Get:343 http://ftpmaster.internal/ubuntu plucky/main s390x libcue2 s390x 2.2.1-4.1build1 [19.6 kB] 169s Get:344 http://ftpmaster.internal/ubuntu plucky/main s390x libexempi8 s390x 2.6.5-1build1 [564 kB] 169s Get:345 http://ftpmaster.internal/ubuntu plucky/main s390x libinireader0 s390x 58-1ubuntu1 [10.1 kB] 169s Get:346 http://ftpmaster.internal/ubuntu plucky/main s390x libexiv2-data all 0.28.4+dfsg-1 [7936 B] 169s Get:347 http://ftpmaster.internal/ubuntu plucky/main s390x libexiv2-28 s390x 0.28.4+dfsg-1 [981 kB] 169s Get:348 http://ftpmaster.internal/ubuntu plucky/main s390x libgexiv2-2 s390x 0.14.3-1build1 [79.1 kB] 169s Get:349 http://ftpmaster.internal/ubuntu plucky/main s390x libgif7 s390x 5.2.2-1ubuntu1 [38.0 kB] 169s Get:350 http://ftpmaster.internal/ubuntu plucky/main s390x libgsf-1-common all 1.14.53-1 [13.4 kB] 169s Get:351 http://ftpmaster.internal/ubuntu plucky/main s390x libgsf-1-114 s390x 1.14.53-1 [106 kB] 169s Get:352 http://ftpmaster.internal/ubuntu plucky/main s390x libgxps2t64 s390x 0.3.2-4build3 [61.0 kB] 169s Get:353 http://ftpmaster.internal/ubuntu plucky/main s390x libtotem-plparser-common all 3.26.6-2 [3662 B] 169s Get:354 http://ftpmaster.internal/ubuntu plucky/main s390x libtotem-plparser18 s390x 3.26.6-2 [62.7 kB] 169s Get:355 http://ftpmaster.internal/ubuntu plucky/main s390x tracker-extract s390x 3.7.4-1build1 [406 kB] 169s Get:356 http://ftpmaster.internal/ubuntu plucky/main s390x tracker-miner-fs s390x 3.7.4-1build1 [125 kB] 169s Get:357 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-user-dirs-gtk s390x 0.14-1 [10.4 kB] 169s Get:358 http://ftpmaster.internal/ubuntu plucky/main s390x libdbusmenu-glib4 s390x 18.10.20180917~bzr492+repack1-4 [41.9 kB] 169s Get:359 http://ftpmaster.internal/ubuntu plucky/main s390x libportal-gtk4-1 s390x 0.9.0-1 [12.5 kB] 169s Get:360 http://ftpmaster.internal/ubuntu plucky/main s390x libportal1 s390x 0.9.0-1 [55.9 kB] 169s Get:361 http://ftpmaster.internal/ubuntu plucky/main s390x libdee-1.0-4 s390x 1.2.7+17.10.20170616-7build6 [83.7 kB] 169s Get:362 http://ftpmaster.internal/ubuntu plucky/main s390x libunity-protocol-private0 s390x 7.1.4+19.04.20190319-6.1 [88.1 kB] 169s Get:363 http://ftpmaster.internal/ubuntu plucky/main s390x libunity-scopes-json-def-desktop all 7.1.4+19.04.20190319-6.1 [3428 B] 169s Get:364 http://ftpmaster.internal/ubuntu plucky/main s390x libunity9 s390x 7.1.4+19.04.20190319-6.1 [217 kB] 169s Get:365 http://ftpmaster.internal/ubuntu plucky/main s390x nautilus s390x 1:47.1-1ubuntu1 [517 kB] 169s Get:366 http://ftpmaster.internal/ubuntu plucky/main s390x libcdparanoia0 s390x 3.10.2+debian-14ubuntu1 [52.6 kB] 169s Get:367 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoradec1 s390x 1.2.0~alpha1+dfsg-5 [68.5 kB] 169s Get:368 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoraenc1 s390x 1.2.0~alpha1+dfsg-5 [142 kB] 169s Get:369 http://ftpmaster.internal/ubuntu plucky/main s390x libvisual-0.4-0 s390x 0.4.2-2build1 [118 kB] 169s Get:370 http://ftpmaster.internal/ubuntu plucky/main s390x gstreamer1.0-plugins-base s390x 1.25.1-2 [741 kB] 169s Get:371 http://ftpmaster.internal/ubuntu plucky/main s390x libaa1 s390x 1.4p5-51.1 [52.6 kB] 169s Get:372 http://ftpmaster.internal/ubuntu plucky/main s390x libraw1394-11 s390x 2.1.2-2build3 [28.3 kB] 169s Get:373 http://ftpmaster.internal/ubuntu plucky/main s390x libavc1394-0 s390x 0.5.4-5build3 [15.8 kB] 169s Get:374 http://ftpmaster.internal/ubuntu plucky/main s390x libcaca0 s390x 0.99.beta20-5 [215 kB] 170s Get:375 http://ftpmaster.internal/ubuntu plucky/main s390x libdv4t64 s390x 1.0.0-17.1build1 [69.1 kB] 170s Get:376 http://ftpmaster.internal/ubuntu plucky/main s390x libgstreamer-plugins-good1.0-0 s390x 1.24.10-1ubuntu3 [32.5 kB] 170s Get:377 http://ftpmaster.internal/ubuntu plucky/main s390x libiec61883-0 s390x 1.2.0-7 [26.1 kB] 170s Get:378 http://ftpmaster.internal/ubuntu plucky/main s390x libspeex1 s390x 1.2.1-3 [70.7 kB] 170s Get:379 http://ftpmaster.internal/ubuntu plucky/main s390x libtheora0 s390x 1.2.0~alpha1+dfsg-5 [181 kB] 170s Get:380 http://ftpmaster.internal/ubuntu plucky/main s390x libshout3 s390x 2.4.6-1build2 [53.6 kB] 170s Get:381 http://ftpmaster.internal/ubuntu plucky/main s390x libtag2 s390x 2.0.2-2 [348 kB] 170s Get:382 http://ftpmaster.internal/ubuntu plucky/main s390x libtwolame0 s390x 0.4.0-2build3 [56.4 kB] 170s Get:383 http://ftpmaster.internal/ubuntu plucky/main s390x libvpx9 s390x 1.15.0-1ubuntu1 [1604 kB] 170s Get:384 http://ftpmaster.internal/ubuntu plucky/main s390x libwavpack1 s390x 5.8.1-1 [98.3 kB] 170s Get:385 http://ftpmaster.internal/ubuntu plucky/main s390x gstreamer1.0-plugins-good s390x 1.24.10-1ubuntu3 [2342 kB] 170s Get:386 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-desktop-portal s390x 1.19.2+ds-1ubuntu1 [332 kB] 170s Get:387 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-desktop-portal-gtk s390x 1.15.2-1 [79.6 kB] 170s Get:388 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-desktop-portal-gnome s390x 47.1-4ubuntu1 [136 kB] 170s Get:389 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 170s Get:390 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 170s Get:391 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 170s Get:392 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xkb-utils s390x 7.7+9 [169 kB] 170s Get:393 http://ftpmaster.internal/ubuntu plucky/main s390x xserver-common all 2:21.1.14-2ubuntu1 [33.7 kB] 170s Get:394 http://ftpmaster.internal/ubuntu plucky/main s390x libdecor-0-0 s390x 0.2.2-2 [16.2 kB] 170s Get:395 http://ftpmaster.internal/ubuntu plucky/main s390x libxcvt0 s390x 0.1.3-1 [5696 B] 170s Get:396 http://ftpmaster.internal/ubuntu plucky/main s390x libfontenc1 s390x 1:1.1.8-1build1 [14.8 kB] 170s Get:397 http://ftpmaster.internal/ubuntu plucky/main s390x libxfont2 s390x 1:2.0.6-1build1 [101 kB] 170s Get:398 http://ftpmaster.internal/ubuntu plucky/main s390x xwayland s390x 2:24.1.5-1 [1045 kB] 170s Get:399 http://ftpmaster.internal/ubuntu plucky/main s390x yaru-theme-gnome-shell all 24.10.4-0ubuntu1 [126 kB] 170s Get:400 http://ftpmaster.internal/ubuntu plucky/main s390x session-migration s390x 0.3.9build1 [8940 B] 170s Get:401 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-session all 47.0.1-1ubuntu1 [5324 B] 170s Get:402 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-common s390x 2.59.2+dfsg-1 [175 kB] 171s Get:403 http://ftpmaster.internal/ubuntu plucky/main s390x x11-xserver-utils s390x 7.7+11 [175 kB] 171s Get:404 http://ftpmaster.internal/ubuntu plucky/main s390x gdm3 s390x 48~beta-1ubuntu1 [325 kB] 171s Get:405 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-2.1-7t64 s390x 2.1.12-stable-10 [145 kB] 171s Get:406 http://ftpmaster.internal/ubuntu plucky/main s390x libunbound8 s390x 1.22.0-1ubuntu1 [462 kB] 171s Get:407 http://ftpmaster.internal/ubuntu plucky/main s390x libgnutls-dane0t64 s390x 3.8.8-2ubuntu1 [24.4 kB] 171s Get:408 http://ftpmaster.internal/ubuntu plucky/universe s390x gnutls-bin s390x 3.8.8-2ubuntu1 [288 kB] 171s Get:409 http://ftpmaster.internal/ubuntu plucky/main s390x libbasicobjects0t64 s390x 0.6.2-3 [5788 B] 171s Get:410 http://ftpmaster.internal/ubuntu plucky/main s390x libcares2 s390x 1.34.4-2.1 [101 kB] 171s Get:411 http://ftpmaster.internal/ubuntu plucky/main s390x libcollection4t64 s390x 0.6.2-3 [23.7 kB] 171s Get:412 http://ftpmaster.internal/ubuntu plucky/main s390x libdhash1t64 s390x 0.6.2-3 [8880 B] 171s Get:413 http://ftpmaster.internal/ubuntu plucky/main s390x libpath-utils1t64 s390x 0.6.2-3 [9228 B] 171s Get:414 http://ftpmaster.internal/ubuntu plucky/main s390x libref-array1t64 s390x 0.6.2-3 [7190 B] 171s Get:415 http://ftpmaster.internal/ubuntu plucky/main s390x libini-config5t64 s390x 0.6.2-3 [45.9 kB] 171s Get:416 http://ftpmaster.internal/ubuntu plucky/main s390x libipa-hbac0t64 s390x 2.10.1-2ubuntu2 [18.5 kB] 171s Get:417 http://ftpmaster.internal/ubuntu plucky/main s390x libnfsidmap1 s390x 1:2.6.4-4ubuntu1 [49.9 kB] 171s Get:418 http://ftpmaster.internal/ubuntu plucky/main s390x libpam-pwquality s390x 1.4.5-4 [11.6 kB] 171s Get:419 http://ftpmaster.internal/ubuntu plucky/main s390x libnss-sss s390x 2.10.1-2ubuntu2 [33.7 kB] 171s Get:420 http://ftpmaster.internal/ubuntu plucky/main s390x libpam-sss s390x 2.10.1-2ubuntu2 [53.4 kB] 171s Get:421 http://ftpmaster.internal/ubuntu plucky/universe s390x softhsm2-common s390x 2.6.1-2.2ubuntu3 [6196 B] 171s Get:422 http://ftpmaster.internal/ubuntu plucky/universe s390x libsofthsm2 s390x 2.6.1-2.2ubuntu3 [267 kB] 171s Get:423 http://ftpmaster.internal/ubuntu plucky/main s390x libsss-certmap0 s390x 2.10.1-2ubuntu2 [48.2 kB] 171s Get:424 http://ftpmaster.internal/ubuntu plucky/main s390x libsss-idmap0 s390x 2.10.1-2ubuntu2 [23.3 kB] 171s Get:425 http://ftpmaster.internal/ubuntu plucky/main s390x libsss-nss-idmap0 s390x 2.10.1-2ubuntu2 [32.2 kB] 171s Get:426 http://ftpmaster.internal/ubuntu plucky/universe s390x pamtester s390x 0.1.2-4 [12.2 kB] 171s Get:427 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sss s390x 2.10.1-2ubuntu2 [46.5 kB] 171s Get:428 http://ftpmaster.internal/ubuntu plucky/universe s390x softhsm2 s390x 2.6.1-2.2ubuntu3 [176 kB] 171s Get:429 http://ftpmaster.internal/ubuntu plucky/main s390x sssd-common s390x 2.10.1-2ubuntu2 [1101 kB] 172s Get:430 http://ftpmaster.internal/ubuntu plucky/main s390x sssd-ad-common s390x 2.10.1-2ubuntu2 [71.8 kB] 172s Get:431 http://ftpmaster.internal/ubuntu plucky/main s390x sssd-krb5-common s390x 2.10.1-2ubuntu2 [89.6 kB] 172s Get:432 http://ftpmaster.internal/ubuntu plucky/main s390x sssd-ad s390x 2.10.1-2ubuntu2 [133 kB] 172s Get:433 http://ftpmaster.internal/ubuntu plucky/main s390x sssd-ipa s390x 2.10.1-2ubuntu2 [215 kB] 172s Get:434 http://ftpmaster.internal/ubuntu plucky/main s390x sssd-krb5 s390x 2.10.1-2ubuntu2 [14.4 kB] 172s Get:435 http://ftpmaster.internal/ubuntu plucky/main s390x sssd-ldap s390x 2.10.1-2ubuntu2 [31.4 kB] 172s Get:436 http://ftpmaster.internal/ubuntu plucky/main s390x sssd-proxy s390x 2.10.1-2ubuntu2 [42.9 kB] 172s Get:437 http://ftpmaster.internal/ubuntu plucky/main s390x sssd s390x 2.10.1-2ubuntu2 [4116 B] 173s Preconfiguring packages ... 173s Fetched 199 MB in 24s (8247 kB/s) 173s Selecting previously unselected package libaccountsservice0:s390x. 173s (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.) 173s Preparing to unpack .../000-libaccountsservice0_23.13.9-7ubuntu1_s390x.deb ... 173s Unpacking libaccountsservice0:s390x (23.13.9-7ubuntu1) ... 173s Selecting previously unselected package accountsservice. 173s Preparing to unpack .../001-accountsservice_23.13.9-7ubuntu1_s390x.deb ... 173s Unpacking accountsservice (23.13.9-7ubuntu1) ... 173s Selecting previously unselected package language-selector-common. 173s Preparing to unpack .../002-language-selector-common_0.226_all.deb ... 173s Unpacking language-selector-common (0.226) ... 173s Selecting previously unselected package libsane-common. 173s Preparing to unpack .../003-libsane-common_1.3.1-1_all.deb ... 173s Unpacking libsane-common (1.3.1-1) ... 173s Selecting previously unselected package sgml-base. 173s Preparing to unpack .../004-sgml-base_1.31_all.deb ... 173s Unpacking sgml-base (1.31) ... 173s Selecting previously unselected package xdg-user-dirs. 173s Preparing to unpack .../005-xdg-user-dirs_0.18-2_s390x.deb ... 173s Unpacking xdg-user-dirs (0.18-2) ... 173s Selecting previously unselected package acl. 173s Preparing to unpack .../006-acl_2.3.2-2_s390x.deb ... 173s Unpacking acl (2.3.2-2) ... 173s Selecting previously unselected package libgdk-pixbuf2.0-common. 173s Preparing to unpack .../007-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 173s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 173s Selecting previously unselected package libjpeg-turbo8:s390x. 173s Preparing to unpack .../008-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 173s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 173s Selecting previously unselected package libjpeg8:s390x. 173s Preparing to unpack .../009-libjpeg8_8c-2ubuntu11_s390x.deb ... 173s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 173s Selecting previously unselected package libdeflate0:s390x. 173s Preparing to unpack .../010-libdeflate0_1.23-1_s390x.deb ... 173s Unpacking libdeflate0:s390x (1.23-1) ... 173s Selecting previously unselected package libjbig0:s390x. 173s Preparing to unpack .../011-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 .../012-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 .../013-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 .../014-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 173s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 173s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 173s Preparing to unpack .../015-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 173s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 173s Selecting previously unselected package gtk-update-icon-cache. 173s Preparing to unpack .../016-gtk-update-icon-cache_4.17.1+ds-2ubuntu1_s390x.deb ... 173s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 173s No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. 173s Unpacking gtk-update-icon-cache (4.17.1+ds-2ubuntu1) ... 173s Selecting previously unselected package hicolor-icon-theme. 173s Preparing to unpack .../017-hicolor-icon-theme_0.18-2_all.deb ... 173s Unpacking hicolor-icon-theme (0.18-2) ... 173s Selecting previously unselected package humanity-icon-theme. 173s Preparing to unpack .../018-humanity-icon-theme_0.6.16_all.deb ... 173s Unpacking humanity-icon-theme (0.6.16) ... 173s Selecting previously unselected package ubuntu-mono. 174s Preparing to unpack .../019-ubuntu-mono_24.04-0ubuntu1_all.deb ... 174s Unpacking ubuntu-mono (24.04-0ubuntu1) ... 174s Selecting previously unselected package adwaita-icon-theme. 174s Preparing to unpack .../020-adwaita-icon-theme_48~beta-2_all.deb ... 174s Unpacking adwaita-icon-theme (48~beta-2) ... 174s Selecting previously unselected package apg. 174s Preparing to unpack .../021-apg_2.2.3.dfsg.1-7_s390x.deb ... 174s Unpacking apg (2.2.3.dfsg.1-7) ... 174s Selecting previously unselected package at-spi2-common. 174s Preparing to unpack .../022-at-spi2-common_2.55.2-1_all.deb ... 174s Unpacking at-spi2-common (2.55.2-1) ... 174s Selecting previously unselected package bubblewrap. 174s Preparing to unpack .../023-bubblewrap_0.11.0-2_s390x.deb ... 174s Unpacking bubblewrap (0.11.0-2) ... 174s Selecting previously unselected package colord-data. 174s Preparing to unpack .../024-colord-data_1.4.7-1build2_all.deb ... 174s Unpacking colord-data (1.4.7-1build2) ... 174s Selecting previously unselected package xml-core. 174s Preparing to unpack .../025-xml-core_0.19_all.deb ... 174s Unpacking xml-core (0.19) ... 174s Selecting previously unselected package libduktape207:s390x. 174s Preparing to unpack .../026-libduktape207_2.7.0+tests-0ubuntu3_s390x.deb ... 174s Unpacking libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 174s Selecting previously unselected package polkitd. 174s Preparing to unpack .../027-polkitd_126-2_s390x.deb ... 174s Unpacking polkitd (126-2) ... 174s Selecting previously unselected package libdconf1:s390x. 174s Preparing to unpack .../028-libdconf1_0.40.0-5_s390x.deb ... 174s Unpacking libdconf1:s390x (0.40.0-5) ... 174s Selecting previously unselected package dconf-service. 174s Preparing to unpack .../029-dconf-service_0.40.0-5_s390x.deb ... 174s Unpacking dconf-service (0.40.0-5) ... 174s Selecting previously unselected package dconf-gsettings-backend:s390x. 174s Preparing to unpack .../030-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 174s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 174s Selecting previously unselected package liblcms2-2:s390x. 174s Preparing to unpack .../031-liblcms2-2_2.16-2_s390x.deb ... 174s Unpacking liblcms2-2:s390x (2.16-2) ... 174s Selecting previously unselected package libcolord2:s390x. 174s Preparing to unpack .../032-libcolord2_1.4.7-1build2_s390x.deb ... 174s Unpacking libcolord2:s390x (1.4.7-1build2) ... 174s Selecting previously unselected package libgusb2:s390x. 174s Preparing to unpack .../033-libgusb2_0.4.9-1_s390x.deb ... 174s Unpacking libgusb2:s390x (0.4.9-1) ... 174s Selecting previously unselected package libcolorhug2:s390x. 174s Preparing to unpack .../034-libcolorhug2_1.4.7-1build2_s390x.deb ... 174s Unpacking libcolorhug2:s390x (1.4.7-1build2) ... 174s Selecting previously unselected package libavahi-common-data:s390x. 174s Preparing to unpack .../035-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 174s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 174s Selecting previously unselected package libavahi-common3:s390x. 174s Preparing to unpack .../036-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 174s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 174s Selecting previously unselected package libavahi-client3:s390x. 174s Preparing to unpack .../037-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 174s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 174s Selecting previously unselected package libfreetype6:s390x. 174s Preparing to unpack .../038-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 174s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 174s Selecting previously unselected package fonts-dejavu-mono. 174s Preparing to unpack .../039-fonts-dejavu-mono_2.37-8_all.deb ... 174s Unpacking fonts-dejavu-mono (2.37-8) ... 174s Selecting previously unselected package fonts-dejavu-core. 174s Preparing to unpack .../040-fonts-dejavu-core_2.37-8_all.deb ... 174s Unpacking fonts-dejavu-core (2.37-8) ... 174s Selecting previously unselected package fontconfig-config. 174s Preparing to unpack .../041-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 174s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 174s Selecting previously unselected package libfontconfig1:s390x. 174s Preparing to unpack .../042-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 174s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 174s Selecting previously unselected package libpixman-1-0:s390x. 174s Preparing to unpack .../043-libpixman-1-0_0.44.0-3_s390x.deb ... 174s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 174s Selecting previously unselected package libxcb-render0:s390x. 174s Preparing to unpack .../044-libxcb-render0_1.17.0-2_s390x.deb ... 174s Unpacking libxcb-render0:s390x (1.17.0-2) ... 174s Selecting previously unselected package libxcb-shm0:s390x. 174s Preparing to unpack .../045-libxcb-shm0_1.17.0-2_s390x.deb ... 174s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 174s Selecting previously unselected package libxrender1:s390x. 174s Preparing to unpack .../046-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 174s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 174s Selecting previously unselected package libcairo2:s390x. 174s Preparing to unpack .../047-libcairo2_1.18.2-2_s390x.deb ... 174s Unpacking libcairo2:s390x (1.18.2-2) ... 174s Selecting previously unselected package libexif12:s390x. 174s Preparing to unpack .../048-libexif12_0.6.25-1_s390x.deb ... 174s Unpacking libexif12:s390x (0.6.25-1) ... 174s Selecting previously unselected package libaom3:s390x. 174s Preparing to unpack .../049-libaom3_3.11.0-1_s390x.deb ... 174s Unpacking libaom3:s390x (3.11.0-1) ... 174s Selecting previously unselected package libheif-plugin-aomdec:s390x. 174s Preparing to unpack .../050-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 174s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 174s Selecting previously unselected package libde265-0:s390x. 174s Preparing to unpack .../051-libde265-0_1.0.15-1build4_s390x.deb ... 174s Unpacking libde265-0:s390x (1.0.15-1build4) ... 174s Selecting previously unselected package libheif-plugin-libde265:s390x. 174s Preparing to unpack .../052-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 174s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 174s Selecting previously unselected package libheif1:s390x. 174s Preparing to unpack .../053-libheif1_1.19.5-1build1_s390x.deb ... 174s Unpacking libheif1:s390x (1.19.5-1build1) ... 174s Selecting previously unselected package libgomp1:s390x. 174s Preparing to unpack .../054-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 174s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 174s Selecting previously unselected package libimagequant0:s390x. 174s Preparing to unpack .../055-libimagequant0_2.18.0-1build1_s390x.deb ... 174s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 174s Selecting previously unselected package libgraphite2-3:s390x. 174s Preparing to unpack .../056-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 174s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 174s Selecting previously unselected package libharfbuzz0b:s390x. 174s Preparing to unpack .../057-libharfbuzz0b_10.2.0-1_s390x.deb ... 174s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 174s Selecting previously unselected package libraqm0:s390x. 174s Preparing to unpack .../058-libraqm0_0.10.2-1_s390x.deb ... 174s Unpacking libraqm0:s390x (0.10.2-1) ... 174s Selecting previously unselected package libxpm4:s390x. 174s Preparing to unpack .../059-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 174s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 174s Selecting previously unselected package libgd3:s390x. 174s Preparing to unpack .../060-libgd3_2.3.3-12ubuntu3_s390x.deb ... 174s Unpacking libgd3:s390x (2.3.3-12ubuntu3) ... 174s Selecting previously unselected package libltdl7:s390x. 174s Preparing to unpack .../061-libltdl7_2.5.4-3build1_s390x.deb ... 174s Unpacking libltdl7:s390x (2.5.4-3build1) ... 174s Selecting previously unselected package libgphoto2-port12t64:s390x. 174s Preparing to unpack .../062-libgphoto2-port12t64_2.5.31-4_s390x.deb ... 174s Unpacking libgphoto2-port12t64:s390x (2.5.31-4) ... 174s Selecting previously unselected package libgphoto2-6t64:s390x. 174s Preparing to unpack .../063-libgphoto2-6t64_2.5.31-4_s390x.deb ... 174s Unpacking libgphoto2-6t64:s390x (2.5.31-4) ... 174s Selecting previously unselected package libieee1284-3t64:s390x. 174s Preparing to unpack .../064-libieee1284-3t64_0.2.11-14.1build1_s390x.deb ... 174s Unpacking libieee1284-3t64:s390x (0.2.11-14.1build1) ... 174s Selecting previously unselected package libgpgmepp6t64:s390x. 174s Preparing to unpack .../065-libgpgmepp6t64_1.24.1-4ubuntu1_s390x.deb ... 175s Unpacking libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 175s Selecting previously unselected package libopenjp2-7:s390x. 175s Preparing to unpack .../066-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 175s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 175s Selecting previously unselected package libpoppler145:s390x. 175s Preparing to unpack .../067-libpoppler145_25.01.0-4_s390x.deb ... 175s Unpacking libpoppler145:s390x (25.01.0-4) ... 175s Selecting previously unselected package libpoppler-glib8t64:s390x. 175s Preparing to unpack .../068-libpoppler-glib8t64_25.01.0-4_s390x.deb ... 175s Unpacking libpoppler-glib8t64:s390x (25.01.0-4) ... 175s Selecting previously unselected package libsnmp-base. 175s Preparing to unpack .../069-libsnmp-base_5.9.4+dfsg-1.1ubuntu6_all.deb ... 175s Unpacking libsnmp-base (5.9.4+dfsg-1.1ubuntu6) ... 175s Selecting previously unselected package libsnmp40t64:s390x. 175s Preparing to unpack .../070-libsnmp40t64_5.9.4+dfsg-1.1ubuntu6_s390x.deb ... 175s Unpacking libsnmp40t64:s390x (5.9.4+dfsg-1.1ubuntu6) ... 175s Selecting previously unselected package libv4lconvert0t64:s390x. 175s Preparing to unpack .../071-libv4lconvert0t64_1.28.1-1_s390x.deb ... 175s Unpacking libv4lconvert0t64:s390x (1.28.1-1) ... 175s Selecting previously unselected package libv4l-0t64:s390x. 175s Preparing to unpack .../072-libv4l-0t64_1.28.1-1_s390x.deb ... 175s Unpacking libv4l-0t64:s390x (1.28.1-1) ... 175s Selecting previously unselected package libsane1:s390x. 175s Preparing to unpack .../073-libsane1_1.3.1-1_s390x.deb ... 175s Unpacking libsane1:s390x (1.3.1-1) ... 175s Selecting previously unselected package colord. 175s Preparing to unpack .../074-colord_1.4.7-1build2_s390x.deb ... 175s Unpacking colord (1.4.7-1build2) ... 175s Selecting previously unselected package libisl23:s390x. 175s Preparing to unpack .../075-libisl23_0.27-1_s390x.deb ... 175s Unpacking libisl23:s390x (0.27-1) ... 175s Selecting previously unselected package libmpc3:s390x. 175s Preparing to unpack .../076-libmpc3_1.3.1-1build2_s390x.deb ... 175s Unpacking libmpc3:s390x (1.3.1-1build2) ... 175s Selecting previously unselected package cpp-14-s390x-linux-gnu. 175s Preparing to unpack .../077-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 175s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 175s Selecting previously unselected package cpp-14. 175s Preparing to unpack .../078-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 175s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 175s Selecting previously unselected package cpp-s390x-linux-gnu. 175s Preparing to unpack .../079-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 175s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 175s Selecting previously unselected package cpp. 175s Preparing to unpack .../080-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 175s Unpacking cpp (4:14.2.0-1ubuntu1) ... 175s Selecting previously unselected package dconf-cli. 175s Preparing to unpack .../081-dconf-cli_0.40.0-5_s390x.deb ... 175s Unpacking dconf-cli (0.40.0-5) ... 175s Selecting previously unselected package desktop-file-utils. 175s Preparing to unpack .../082-desktop-file-utils_0.28-1_s390x.deb ... 175s Unpacking desktop-file-utils (0.28-1) ... 175s Selecting previously unselected package evolution-data-server-common. 175s Preparing to unpack .../083-evolution-data-server-common_3.55.2-1_all.deb ... 175s Unpacking evolution-data-server-common (3.55.2-1) ... 175s Selecting previously unselected package fontconfig. 175s Preparing to unpack .../084-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 175s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 175s Selecting previously unselected package libgdm1. 175s Preparing to unpack .../085-libgdm1_48~beta-1ubuntu1_s390x.deb ... 175s Unpacking libgdm1 (48~beta-1ubuntu1) ... 175s Selecting previously unselected package gir1.2-gdm-1.0. 175s Preparing to unpack .../086-gir1.2-gdm-1.0_48~beta-1ubuntu1_s390x.deb ... 175s Unpacking gir1.2-gdm-1.0 (48~beta-1ubuntu1) ... 175s Selecting previously unselected package gsettings-desktop-schemas. 175s Preparing to unpack .../087-gsettings-desktop-schemas_48~beta-1ubuntu1_all.deb ... 175s Unpacking gsettings-desktop-schemas (48~beta-1ubuntu1) ... 175s Selecting previously unselected package libupower-glib3:s390x. 175s Preparing to unpack .../088-libupower-glib3_1.90.7-1_s390x.deb ... 175s Unpacking libupower-glib3:s390x (1.90.7-1) ... 175s Selecting previously unselected package libplist-2.0-4:s390x. 175s Preparing to unpack .../089-libplist-2.0-4_2.6.0-2build1_s390x.deb ... 175s Unpacking libplist-2.0-4:s390x (2.6.0-2build1) ... 175s Selecting previously unselected package libusbmuxd6:s390x. 175s Preparing to unpack .../090-libusbmuxd6_2.0.2-5~exp1ubuntu1_s390x.deb ... 175s Unpacking libusbmuxd6:s390x (2.0.2-5~exp1ubuntu1) ... 175s Selecting previously unselected package libimobiledevice6:s390x. 175s Preparing to unpack .../091-libimobiledevice6_1.3.0-8.1ubuntu4_s390x.deb ... 175s Unpacking libimobiledevice6:s390x (1.3.0-8.1ubuntu4) ... 175s Selecting previously unselected package upower. 175s Preparing to unpack .../092-upower_1.90.7-1_s390x.deb ... 175s Unpacking upower (1.90.7-1) ... 175s Selecting previously unselected package libglvnd0:s390x. 175s Preparing to unpack .../093-libglvnd0_1.7.0-1build1_s390x.deb ... 175s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 175s Selecting previously unselected package libwayland-server0:s390x. 175s Preparing to unpack .../094-libwayland-server0_1.23.1-1_s390x.deb ... 175s Unpacking libwayland-server0:s390x (1.23.1-1) ... 175s Selecting previously unselected package libdrm-radeon1:s390x. 175s Preparing to unpack .../095-libdrm-radeon1_2.4.123-1_s390x.deb ... 175s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 175s Selecting previously unselected package libglapi-mesa:s390x. 175s Preparing to unpack .../096-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libx11-xcb1:s390x. 175s Preparing to unpack .../097-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 175s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 175s Selecting previously unselected package libxcb-dri3-0:s390x. 175s Preparing to unpack .../098-libxcb-dri3-0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxcb-present0:s390x. 175s Preparing to unpack .../099-libxcb-present0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-present0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxcb-randr0:s390x. 175s Preparing to unpack .../100-libxcb-randr0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxcb-sync1:s390x. 175s Preparing to unpack .../101-libxcb-sync1_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxcb-xfixes0:s390x. 175s Preparing to unpack .../102-libxcb-xfixes0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxshmfence1:s390x. 175s Preparing to unpack .../103-libxshmfence1_1.3-1build5_s390x.deb ... 175s Unpacking libxshmfence1:s390x (1.3-1build5) ... 175s Selecting previously unselected package mesa-libgallium:s390x. 175s Preparing to unpack .../104-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libgbm1:s390x. 175s Preparing to unpack .../105-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libwayland-client0:s390x. 175s Preparing to unpack .../106-libwayland-client0_1.23.1-1_s390x.deb ... 175s Unpacking libwayland-client0:s390x (1.23.1-1) ... 175s Selecting previously unselected package libegl-mesa0:s390x. 175s Preparing to unpack .../107-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 175s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 175s Selecting previously unselected package libegl1:s390x. 175s Preparing to unpack .../108-libegl1_1.7.0-1build1_s390x.deb ... 175s Unpacking libegl1:s390x (1.7.0-1build1) ... 175s Selecting previously unselected package libepoxy0:s390x. 175s Preparing to unpack .../109-libepoxy0_1.5.10-2_s390x.deb ... 175s Unpacking libepoxy0:s390x (1.5.10-2) ... 175s Selecting previously unselected package libxcb-glx0:s390x. 175s Preparing to unpack .../110-libxcb-glx0_1.17.0-2_s390x.deb ... 175s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 175s Selecting previously unselected package libxxf86vm1:s390x. 175s Preparing to unpack .../111-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 175s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 175s Selecting previously unselected package libvulkan1:s390x. 175s Preparing to unpack .../112-libvulkan1_1.4.304.0-1_s390x.deb ... 175s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 176s Selecting previously unselected package libgl1-mesa-dri:s390x. 176s Preparing to unpack .../113-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 176s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 176s Selecting previously unselected package libglx-mesa0:s390x. 176s Preparing to unpack .../114-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 176s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 176s Selecting previously unselected package libglx0:s390x. 176s Preparing to unpack .../115-libglx0_1.7.0-1build1_s390x.deb ... 176s Unpacking libglx0:s390x (1.7.0-1build1) ... 176s Selecting previously unselected package libgl1:s390x. 176s Preparing to unpack .../116-libgl1_1.7.0-1build1_s390x.deb ... 176s Unpacking libgl1:s390x (1.7.0-1build1) ... 176s Selecting previously unselected package libgles2:s390x. 176s Preparing to unpack .../117-libgles2_1.7.0-1build1_s390x.deb ... 176s Unpacking libgles2:s390x (1.7.0-1build1) ... 176s Selecting previously unselected package gnome-desktop3-data. 176s Preparing to unpack .../118-gnome-desktop3-data_44.1-2_all.deb ... 176s Unpacking gnome-desktop3-data (44.1-2) ... 176s Selecting previously unselected package libatk1.0-0t64:s390x. 176s Preparing to unpack .../119-libatk1.0-0t64_2.55.2-1_s390x.deb ... 176s Unpacking libatk1.0-0t64:s390x (2.55.2-1) ... 176s Selecting previously unselected package libxi6:s390x. 176s Preparing to unpack .../120-libxi6_2%3a1.8.2-1_s390x.deb ... 176s Unpacking libxi6:s390x (2:1.8.2-1) ... 176s Selecting previously unselected package libatspi2.0-0t64:s390x. 176s Preparing to unpack .../121-libatspi2.0-0t64_2.55.2-1_s390x.deb ... 176s Unpacking libatspi2.0-0t64:s390x (2.55.2-1) ... 176s Selecting previously unselected package libatk-bridge2.0-0t64:s390x. 176s Preparing to unpack .../122-libatk-bridge2.0-0t64_2.55.2-1_s390x.deb ... 176s Unpacking libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 176s Selecting previously unselected package libcairo-gobject2:s390x. 176s Preparing to unpack .../123-libcairo-gobject2_1.18.2-2_s390x.deb ... 176s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 176s Selecting previously unselected package libcups2t64:s390x. 176s Preparing to unpack .../124-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 176s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 176s Selecting previously unselected package libthai-data. 176s Preparing to unpack .../125-libthai-data_0.1.29-2build1_all.deb ... 176s Unpacking libthai-data (0.1.29-2build1) ... 176s Selecting previously unselected package libdatrie1:s390x. 176s Preparing to unpack .../126-libdatrie1_0.2.13-3build1_s390x.deb ... 176s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 176s Selecting previously unselected package libthai0:s390x. 176s Preparing to unpack .../127-libthai0_0.1.29-2build1_s390x.deb ... 176s Unpacking libthai0:s390x (0.1.29-2build1) ... 176s Selecting previously unselected package libpango-1.0-0:s390x. 176s Preparing to unpack .../128-libpango-1.0-0_1.56.1-1_s390x.deb ... 176s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 176s Selecting previously unselected package libpangoft2-1.0-0:s390x. 176s Preparing to unpack .../129-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 176s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 176s Selecting previously unselected package libpangocairo-1.0-0:s390x. 176s Preparing to unpack .../130-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 176s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 176s Selecting previously unselected package libwayland-cursor0:s390x. 176s Preparing to unpack .../131-libwayland-cursor0_1.23.1-1_s390x.deb ... 176s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 176s Selecting previously unselected package libwayland-egl1:s390x. 176s Preparing to unpack .../132-libwayland-egl1_1.23.1-1_s390x.deb ... 176s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 176s Selecting previously unselected package libxcomposite1:s390x. 176s Preparing to unpack .../133-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 176s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 176s Selecting previously unselected package libxfixes3:s390x. 176s Preparing to unpack .../134-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 176s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 176s Selecting previously unselected package libxcursor1:s390x. 176s Preparing to unpack .../135-libxcursor1_1%3a1.2.3-1_s390x.deb ... 176s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 176s Selecting previously unselected package libxdamage1:s390x. 176s Preparing to unpack .../136-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 176s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 176s Selecting previously unselected package libxinerama1:s390x. 176s Preparing to unpack .../137-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 176s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 176s Selecting previously unselected package libxrandr2:s390x. 176s Preparing to unpack .../138-libxrandr2_2%3a1.5.4-1_s390x.deb ... 176s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 176s Selecting previously unselected package libgtk-3-common. 176s Preparing to unpack .../139-libgtk-3-common_3.24.48-3ubuntu1_all.deb ... 176s Unpacking libgtk-3-common (3.24.48-3ubuntu1) ... 176s Selecting previously unselected package libgtk-3-0t64:s390x. 176s Preparing to unpack .../140-libgtk-3-0t64_3.24.48-3ubuntu1_s390x.deb ... 176s Unpacking libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 176s Selecting previously unselected package libxkbregistry0:s390x. 176s Preparing to unpack .../141-libxkbregistry0_1.7.0-2_s390x.deb ... 176s Unpacking libxkbregistry0:s390x (1.7.0-2) ... 176s Selecting previously unselected package libgnome-desktop-3-20t64:s390x. 176s Preparing to unpack .../142-libgnome-desktop-3-20t64_44.1-2_s390x.deb ... 176s Unpacking libgnome-desktop-3-20t64:s390x (44.1-2) ... 176s Selecting previously unselected package x11-common. 176s Preparing to unpack .../143-x11-common_1%3a7.7+23ubuntu3_all.deb ... 176s Unpacking x11-common (1:7.7+23ubuntu3) ... 176s Selecting previously unselected package libice6:s390x. 176s Preparing to unpack .../144-libice6_2%3a1.1.1-1_s390x.deb ... 176s Unpacking libice6:s390x (2:1.1.1-1) ... 176s Selecting previously unselected package libsm6:s390x. 176s Preparing to unpack .../145-libsm6_2%3a1.2.4-1_s390x.deb ... 176s Unpacking libsm6:s390x (2:1.2.4-1) ... 176s Selecting previously unselected package gnome-session-bin. 176s Preparing to unpack .../146-gnome-session-bin_47.0.1-1ubuntu1_s390x.deb ... 176s Unpacking gnome-session-bin (47.0.1-1ubuntu1) ... 176s Selecting previously unselected package gnome-session-common. 176s Preparing to unpack .../147-gnome-session-common_47.0.1-1ubuntu1_all.deb ... 176s Unpacking gnome-session-common (47.0.1-1ubuntu1) ... 176s Selecting previously unselected package gnome-settings-daemon-common. 176s Preparing to unpack .../148-gnome-settings-daemon-common_48~beta-1ubuntu1_all.deb ... 176s Unpacking gnome-settings-daemon-common (48~beta-1ubuntu1) ... 176s Selecting previously unselected package libasound2-data. 176s Preparing to unpack .../149-libasound2-data_1.2.13-1build1_all.deb ... 176s Unpacking libasound2-data (1.2.13-1build1) ... 176s Selecting previously unselected package libasound2t64:s390x. 176s Preparing to unpack .../150-libasound2t64_1.2.13-1build1_s390x.deb ... 176s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 176s Selecting previously unselected package libabsl20230802:s390x. 176s Preparing to unpack .../151-libabsl20230802_20230802.1-4ubuntu2_s390x.deb ... 176s Unpacking libabsl20230802:s390x (20230802.1-4ubuntu2) ... 176s Selecting previously unselected package libwebrtc-audio-processing-1-3:s390x. 176s Preparing to unpack .../152-libwebrtc-audio-processing-1-3_1.3-3_s390x.deb ... 176s Unpacking libwebrtc-audio-processing-1-3:s390x (1.3-3) ... 176s Selecting previously unselected package libspa-0.2-modules:s390x. 176s Preparing to unpack .../153-libspa-0.2-modules_1.2.7-1ubuntu5_s390x.deb ... 176s Unpacking libspa-0.2-modules:s390x (1.2.7-1ubuntu5) ... 176s Selecting previously unselected package libbluetooth3:s390x. 176s Preparing to unpack .../154-libbluetooth3_5.79-1_s390x.deb ... 176s Unpacking libbluetooth3:s390x (5.79-1) ... 176s Selecting previously unselected package libfreeaptx0:s390x. 176s Preparing to unpack .../155-libfreeaptx0_0.1.1-2build1_s390x.deb ... 176s Unpacking libfreeaptx0:s390x (0.1.1-2build1) ... 176s Selecting previously unselected package liblc3-1:s390x. 176s Preparing to unpack .../156-liblc3-1_1.1.2+dfsg-1_s390x.deb ... 176s Unpacking liblc3-1:s390x (1.1.2+dfsg-1) ... 176s Selecting previously unselected package libopus0:s390x. 176s Preparing to unpack .../157-libopus0_1.5.2-2_s390x.deb ... 176s Unpacking libopus0:s390x (1.5.2-2) ... 176s Selecting previously unselected package libsbc1:s390x. 176s Preparing to unpack .../158-libsbc1_2.0-1build1_s390x.deb ... 176s Unpacking libsbc1:s390x (2.0-1build1) ... 176s Selecting previously unselected package libspa-0.2-bluetooth:s390x. 176s Preparing to unpack .../159-libspa-0.2-bluetooth_1.2.7-1ubuntu5_s390x.deb ... 176s Unpacking libspa-0.2-bluetooth:s390x (1.2.7-1ubuntu5) ... 176s Selecting previously unselected package libpipewire-0.3-0t64:s390x. 176s Preparing to unpack .../160-libpipewire-0.3-0t64_1.2.7-1ubuntu5_s390x.deb ... 176s Unpacking libpipewire-0.3-0t64:s390x (1.2.7-1ubuntu5) ... 176s Selecting previously unselected package libasyncns0:s390x. 176s Preparing to unpack .../161-libasyncns0_0.8-6build4_s390x.deb ... 176s Unpacking libasyncns0:s390x (0.8-6build4) ... 176s Selecting previously unselected package libogg0:s390x. 176s Preparing to unpack .../162-libogg0_1.3.5-3build1_s390x.deb ... 176s Unpacking libogg0:s390x (1.3.5-3build1) ... 176s Selecting previously unselected package libflac12t64:s390x. 176s Preparing to unpack .../163-libflac12t64_1.4.3+ds-4_s390x.deb ... 176s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 176s Selecting previously unselected package libmp3lame0:s390x. 176s Preparing to unpack .../164-libmp3lame0_3.100-6build1_s390x.deb ... 176s Unpacking libmp3lame0:s390x (3.100-6build1) ... 176s Selecting previously unselected package libmpg123-0t64:s390x. 176s Preparing to unpack .../165-libmpg123-0t64_1.32.10-1_s390x.deb ... 176s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 176s Selecting previously unselected package libvorbis0a:s390x. 176s Preparing to unpack .../166-libvorbis0a_1.3.7-2_s390x.deb ... 176s Unpacking libvorbis0a:s390x (1.3.7-2) ... 176s Selecting previously unselected package libvorbisenc2:s390x. 176s Preparing to unpack .../167-libvorbisenc2_1.3.7-2_s390x.deb ... 176s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 176s Selecting previously unselected package libsndfile1:s390x. 176s Preparing to unpack .../168-libsndfile1_1.2.2-2_s390x.deb ... 176s Unpacking libsndfile1:s390x (1.2.2-2) ... 176s Selecting previously unselected package libpulse0:s390x. 176s Preparing to unpack .../169-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 176s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 176s Selecting previously unselected package libspeexdsp1:s390x. 176s Preparing to unpack .../170-libspeexdsp1_1.2.1-3_s390x.deb ... 176s Unpacking libspeexdsp1:s390x (1.2.1-3) ... 176s Selecting previously unselected package libunwind8:s390x. 176s Preparing to unpack .../171-libunwind8_1.6.2-3.1_s390x.deb ... 176s Unpacking libunwind8:s390x (1.6.2-3.1) ... 176s Selecting previously unselected package libroc0.4:s390x. 176s Preparing to unpack .../172-libroc0.4_0.4.0+dfsg-4ubuntu1_s390x.deb ... 176s Unpacking libroc0.4:s390x (0.4.0+dfsg-4ubuntu1) ... 176s Selecting previously unselected package libproxy1v5:s390x. 176s Preparing to unpack .../173-libproxy1v5_0.5.9-1_s390x.deb ... 176s Unpacking libproxy1v5:s390x (0.5.9-1) ... 176s Selecting previously unselected package glib-networking-common. 176s Preparing to unpack .../174-glib-networking-common_2.80.1-1_all.deb ... 176s Unpacking glib-networking-common (2.80.1-1) ... 176s Selecting previously unselected package glib-networking-services. 176s Preparing to unpack .../175-glib-networking-services_2.80.1-1_s390x.deb ... 176s Unpacking glib-networking-services (2.80.1-1) ... 176s Selecting previously unselected package glib-networking:s390x. 176s Preparing to unpack .../176-glib-networking_2.80.1-1_s390x.deb ... 176s Unpacking glib-networking:s390x (2.80.1-1) ... 176s Selecting previously unselected package libsoup-3.0-common. 176s Preparing to unpack .../177-libsoup-3.0-common_3.6.4-2_all.deb ... 176s Unpacking libsoup-3.0-common (3.6.4-2) ... 176s Selecting previously unselected package libsoup-3.0-0:s390x. 176s Preparing to unpack .../178-libsoup-3.0-0_3.6.4-2_s390x.deb ... 176s Unpacking libsoup-3.0-0:s390x (3.6.4-2) ... 177s Selecting previously unselected package libsnapd-glib-2-1:s390x. 177s Preparing to unpack .../179-libsnapd-glib-2-1_1.66-0ubuntu1_s390x.deb ... 177s Unpacking libsnapd-glib-2-1:s390x (1.66-0ubuntu1) ... 177s Selecting previously unselected package libpipewire-0.3-modules:s390x. 177s Preparing to unpack .../180-libpipewire-0.3-modules_1.2.7-1ubuntu5_s390x.deb ... 177s Unpacking libpipewire-0.3-modules:s390x (1.2.7-1ubuntu5) ... 177s Selecting previously unselected package pipewire-bin. 177s Preparing to unpack .../181-pipewire-bin_1.2.7-1ubuntu5_s390x.deb ... 177s Unpacking pipewire-bin (1.2.7-1ubuntu5) ... 177s Selecting previously unselected package pipewire:s390x. 177s Preparing to unpack .../182-pipewire_1.2.7-1ubuntu5_s390x.deb ... 177s Unpacking pipewire:s390x (1.2.7-1ubuntu5) ... 177s Selecting previously unselected package pipewire-alsa:s390x. 177s Preparing to unpack .../183-pipewire-alsa_1.2.7-1ubuntu5_s390x.deb ... 177s Unpacking pipewire-alsa:s390x (1.2.7-1ubuntu5) ... 177s Selecting previously unselected package pipewire-pulse. 177s Preparing to unpack .../184-pipewire-pulse_1.2.7-1ubuntu5_s390x.deb ... 177s Unpacking pipewire-pulse (1.2.7-1ubuntu5) ... 177s Selecting previously unselected package liblua5.4-0:s390x. 177s Preparing to unpack .../185-liblua5.4-0_5.4.7-1_s390x.deb ... 177s Unpacking liblua5.4-0:s390x (5.4.7-1) ... 177s Selecting previously unselected package libwireplumber-0.5-0:s390x. 177s Preparing to unpack .../186-libwireplumber-0.5-0_0.5.8-1_s390x.deb ... 177s Unpacking libwireplumber-0.5-0:s390x (0.5.8-1) ... 177s Selecting previously unselected package wireplumber. 177s Preparing to unpack .../187-wireplumber_0.5.8-1_s390x.deb ... 177s Unpacking wireplumber (0.5.8-1) ... 177s Selecting previously unselected package pipewire-audio. 177s Preparing to unpack .../188-pipewire-audio_1.2.7-1ubuntu5_all.deb ... 177s Unpacking pipewire-audio (1.2.7-1ubuntu5) ... 177s Selecting previously unselected package libtdb1:s390x. 177s Preparing to unpack .../189-libtdb1_1.4.12-1build1_s390x.deb ... 177s Unpacking libtdb1:s390x (1.4.12-1build1) ... 177s Selecting previously unselected package libvorbisfile3:s390x. 177s Preparing to unpack .../190-libvorbisfile3_1.3.7-2_s390x.deb ... 177s Unpacking libvorbisfile3:s390x (1.3.7-2) ... 177s Selecting previously unselected package sound-theme-freedesktop. 177s Preparing to unpack .../191-sound-theme-freedesktop_0.8-3ubuntu1_all.deb ... 177s Unpacking sound-theme-freedesktop (0.8-3ubuntu1) ... 177s Selecting previously unselected package libcanberra0:s390x. 177s Preparing to unpack .../192-libcanberra0_0.30-17ubuntu1_s390x.deb ... 177s Unpacking libcanberra0:s390x (0.30-17ubuntu1) ... 177s Selecting previously unselected package libcanberra-gtk3-0:s390x. 177s Preparing to unpack .../193-libcanberra-gtk3-0_0.30-17ubuntu1_s390x.deb ... 177s Unpacking libcanberra-gtk3-0:s390x (0.30-17ubuntu1) ... 177s Selecting previously unselected package libgck-2-2:s390x. 177s Preparing to unpack .../194-libgck-2-2_4.3.91-1_s390x.deb ... 177s Unpacking libgck-2-2:s390x (4.3.91-1) ... 177s Selecting previously unselected package libgcr-4-4:s390x. 177s Preparing to unpack .../195-libgcr-4-4_4.3.91-1_s390x.deb ... 177s Unpacking libgcr-4-4:s390x (4.3.91-1) ... 177s Selecting previously unselected package libavahi-glib1:s390x. 177s Preparing to unpack .../196-libavahi-glib1_0.8-14ubuntu1_s390x.deb ... 177s Unpacking libavahi-glib1:s390x (0.8-14ubuntu1) ... 177s Selecting previously unselected package libnotify4:s390x. 177s Preparing to unpack .../197-libnotify4_0.8.3-1build2_s390x.deb ... 177s Unpacking libnotify4:s390x (0.8.3-1build2) ... 177s Selecting previously unselected package geoclue-2.0. 177s Preparing to unpack .../198-geoclue-2.0_2.7.2-2ubuntu1_s390x.deb ... 177s Unpacking geoclue-2.0 (2.7.2-2ubuntu1) ... 177s Selecting previously unselected package libgeoclue-2-0:s390x. 177s Preparing to unpack .../199-libgeoclue-2-0_2.7.2-2ubuntu1_s390x.deb ... 177s Unpacking libgeoclue-2-0:s390x (2.7.2-2ubuntu1) ... 177s Selecting previously unselected package geocode-glib-common. 177s Preparing to unpack .../200-geocode-glib-common_3.26.3-6build3_all.deb ... 177s Unpacking geocode-glib-common (3.26.3-6build3) ... 177s Selecting previously unselected package libgeocode-glib-2-0:s390x. 177s Preparing to unpack .../201-libgeocode-glib-2-0_3.26.3-6build3_s390x.deb ... 177s Unpacking libgeocode-glib-2-0:s390x (3.26.3-6build3) ... 177s Selecting previously unselected package libgweather-4-common. 177s Preparing to unpack .../202-libgweather-4-common_4.4.4-1_all.deb ... 177s Unpacking libgweather-4-common (4.4.4-1) ... 177s Selecting previously unselected package libgweather-4-0t64:s390x. 177s Preparing to unpack .../203-libgweather-4-0t64_4.4.4-1_s390x.deb ... 177s Unpacking libgweather-4-0t64:s390x (4.4.4-1) ... 177s Selecting previously unselected package libnm0:s390x. 177s Preparing to unpack .../204-libnm0_1.50.0-1ubuntu3_s390x.deb ... 177s Unpacking libnm0:s390x (1.50.0-1ubuntu3) ... 177s Selecting previously unselected package libpulse-mainloop-glib0:s390x. 177s Preparing to unpack .../205-libpulse-mainloop-glib0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 177s Unpacking libpulse-mainloop-glib0:s390x (1:17.0+dfsg1-2ubuntu1) ... 177s Selecting previously unselected package gnome-settings-daemon. 177s Preparing to unpack .../206-gnome-settings-daemon_48~beta-1ubuntu1_s390x.deb ... 177s Unpacking gnome-settings-daemon (48~beta-1ubuntu1) ... 177s Selecting previously unselected package gir1.2-accountsservice-1.0:s390x. 177s Preparing to unpack .../207-gir1.2-accountsservice-1.0_23.13.9-7ubuntu1_s390x.deb ... 177s Unpacking gir1.2-accountsservice-1.0:s390x (23.13.9-7ubuntu1) ... 177s Selecting previously unselected package gir1.2-freedesktop:s390x. 177s Preparing to unpack .../208-gir1.2-freedesktop_1.82.0-4_s390x.deb ... 177s Unpacking gir1.2-freedesktop:s390x (1.82.0-4) ... 177s Selecting previously unselected package gir1.2-gdkpixbuf-2.0:s390x. 177s Preparing to unpack .../209-gir1.2-gdkpixbuf-2.0_2.42.12+dfsg-2_s390x.deb ... 177s Unpacking gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 177s Selecting previously unselected package libgraphene-1.0-0:s390x. 177s Preparing to unpack .../210-libgraphene-1.0-0_1.10.8-5_s390x.deb ... 177s Unpacking libgraphene-1.0-0:s390x (1.10.8-5) ... 177s Selecting previously unselected package gir1.2-graphene-1.0:s390x. 177s Preparing to unpack .../211-gir1.2-graphene-1.0_1.10.8-5_s390x.deb ... 177s Unpacking gir1.2-graphene-1.0:s390x (1.10.8-5) ... 177s Selecting previously unselected package libharfbuzz-gobject0:s390x. 177s Preparing to unpack .../212-libharfbuzz-gobject0_10.2.0-1_s390x.deb ... 177s Unpacking libharfbuzz-gobject0:s390x (10.2.0-1) ... 177s Selecting previously unselected package gir1.2-harfbuzz-0.0:s390x. 177s Preparing to unpack .../213-gir1.2-harfbuzz-0.0_10.2.0-1_s390x.deb ... 177s Unpacking gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 177s Selecting previously unselected package libxft2:s390x. 177s Preparing to unpack .../214-libxft2_2.3.6-1build1_s390x.deb ... 177s Unpacking libxft2:s390x (2.3.6-1build1) ... 177s Selecting previously unselected package libpangoxft-1.0-0:s390x. 177s Preparing to unpack .../215-libpangoxft-1.0-0_1.56.1-1_s390x.deb ... 177s Unpacking libpangoxft-1.0-0:s390x (1.56.1-1) ... 177s Selecting previously unselected package gir1.2-pango-1.0:s390x. 177s Preparing to unpack .../216-gir1.2-pango-1.0_1.56.1-1_s390x.deb ... 177s Unpacking gir1.2-pango-1.0:s390x (1.56.1-1) ... 177s Selecting previously unselected package libcairo-script-interpreter2:s390x. 177s Preparing to unpack .../217-libcairo-script-interpreter2_1.18.2-2_s390x.deb ... 177s Unpacking libcairo-script-interpreter2:s390x (1.18.2-2) ... 177s Selecting previously unselected package libcpdb2t64:s390x. 177s Preparing to unpack .../218-libcpdb2t64_2.0~b5-1.2build1_s390x.deb ... 177s Unpacking libcpdb2t64:s390x (2.0~b5-1.2build1) ... 177s Selecting previously unselected package libcpdb-frontend2t64:s390x. 177s Preparing to unpack .../219-libcpdb-frontend2t64_2.0~b5-1.2build1_s390x.deb ... 177s Unpacking libcpdb-frontend2t64:s390x (2.0~b5-1.2build1) ... 177s Selecting previously unselected package libharfbuzz-subset0:s390x. 177s Preparing to unpack .../220-libharfbuzz-subset0_10.2.0-1_s390x.deb ... 177s Unpacking libharfbuzz-subset0:s390x (10.2.0-1) ... 177s Selecting previously unselected package libgtk-4-common. 177s Preparing to unpack .../221-libgtk-4-common_4.17.1+ds-2ubuntu1_all.deb ... 177s Unpacking libgtk-4-common (4.17.1+ds-2ubuntu1) ... 177s Selecting previously unselected package libgtk-4-1:s390x. 177s Preparing to unpack .../222-libgtk-4-1_4.17.1+ds-2ubuntu1_s390x.deb ... 177s Unpacking libgtk-4-1:s390x (4.17.1+ds-2ubuntu1) ... 177s Selecting previously unselected package gir1.2-gtk-4.0:s390x. 177s Preparing to unpack .../223-gir1.2-gtk-4.0_4.17.1+ds-2ubuntu1_s390x.deb ... 177s Unpacking gir1.2-gtk-4.0:s390x (4.17.1+ds-2ubuntu1) ... 177s Selecting previously unselected package libstemmer0d:s390x. 177s Preparing to unpack .../224-libstemmer0d_2.2.0-4build1_s390x.deb ... 177s Unpacking libstemmer0d:s390x (2.2.0-4build1) ... 177s Selecting previously unselected package libappstream5:s390x. 177s Preparing to unpack .../225-libappstream5_1.0.4-1_s390x.deb ... 177s Unpacking libappstream5:s390x (1.0.4-1) ... 177s Selecting previously unselected package libadwaita-1-0:s390x. 177s Preparing to unpack .../226-libadwaita-1-0_1.6.2-1ubuntu1_s390x.deb ... 177s Unpacking libadwaita-1-0:s390x (1.6.2-1ubuntu1) ... 177s Selecting previously unselected package gir1.2-adw-1:s390x. 177s Preparing to unpack .../227-gir1.2-adw-1_1.6.2-1ubuntu1_s390x.deb ... 177s Unpacking gir1.2-adw-1:s390x (1.6.2-1ubuntu1) ... 177s Selecting previously unselected package gir1.2-atk-1.0:s390x. 177s Preparing to unpack .../228-gir1.2-atk-1.0_2.55.2-1_s390x.deb ... 177s Unpacking gir1.2-atk-1.0:s390x (2.55.2-1) ... 177s Selecting previously unselected package gir1.2-atspi-2.0:s390x. 177s Preparing to unpack .../229-gir1.2-atspi-2.0_2.55.2-1_s390x.deb ... 177s Unpacking gir1.2-atspi-2.0:s390x (2.55.2-1) ... 177s Selecting previously unselected package gir1.2-gck-2:s390x. 177s Preparing to unpack .../230-gir1.2-gck-2_4.3.91-1_s390x.deb ... 177s Unpacking gir1.2-gck-2:s390x (4.3.91-1) ... 177s Selecting previously unselected package gir1.2-gcr-4:s390x. 177s Preparing to unpack .../231-gir1.2-gcr-4_4.3.91-1_s390x.deb ... 177s Unpacking gir1.2-gcr-4:s390x (4.3.91-1) ... 177s Selecting previously unselected package gir1.2-gdesktopenums-3.0:s390x. 177s Preparing to unpack .../232-gir1.2-gdesktopenums-3.0_48~beta-1ubuntu1_s390x.deb ... 177s Unpacking gir1.2-gdesktopenums-3.0:s390x (48~beta-1ubuntu1) ... 177s Selecting previously unselected package gir1.2-geoclue-2.0:s390x. 177s Preparing to unpack .../233-gir1.2-geoclue-2.0_2.7.2-2ubuntu1_s390x.deb ... 177s Unpacking gir1.2-geoclue-2.0:s390x (2.7.2-2ubuntu1) ... 177s Selecting previously unselected package libgnome-desktop-4-2t64:s390x. 177s Preparing to unpack .../234-libgnome-desktop-4-2t64_44.1-2_s390x.deb ... 177s Unpacking libgnome-desktop-4-2t64:s390x (44.1-2) ... 177s Selecting previously unselected package gir1.2-gnomedesktop-4.0:s390x. 177s Preparing to unpack .../235-gir1.2-gnomedesktop-4.0_44.1-2_s390x.deb ... 177s Unpacking gir1.2-gnomedesktop-4.0:s390x (44.1-2) ... 177s Selecting previously unselected package libgnome-bg-4-2t64:s390x. 177s Preparing to unpack .../236-libgnome-bg-4-2t64_44.1-2_s390x.deb ... 177s Unpacking libgnome-bg-4-2t64:s390x (44.1-2) ... 177s Selecting previously unselected package gir1.2-gnomebg-4.0:s390x. 177s Preparing to unpack .../237-gir1.2-gnomebg-4.0_44.1-2_s390x.deb ... 177s Unpacking gir1.2-gnomebg-4.0:s390x (44.1-2) ... 177s Selecting previously unselected package gnome-bluetooth-3-common. 177s Preparing to unpack .../238-gnome-bluetooth-3-common_47.1-1_all.deb ... 177s Unpacking gnome-bluetooth-3-common (47.1-1) ... 177s Selecting previously unselected package libgnome-bluetooth-3.0-13:s390x. 177s Preparing to unpack .../239-libgnome-bluetooth-3.0-13_47.1-1_s390x.deb ... 178s Unpacking libgnome-bluetooth-3.0-13:s390x (47.1-1) ... 178s Selecting previously unselected package gir1.2-gnomebluetooth-3.0:s390x. 178s Preparing to unpack .../240-gir1.2-gnomebluetooth-3.0_47.1-1_s390x.deb ... 178s Unpacking gir1.2-gnomebluetooth-3.0:s390x (47.1-1) ... 178s Selecting previously unselected package libgstreamer1.0-0:s390x. 178s Preparing to unpack .../241-libgstreamer1.0-0_1.25.1-1_s390x.deb ... 178s Unpacking libgstreamer1.0-0:s390x (1.25.1-1) ... 178s Selecting previously unselected package gir1.2-gstreamer-1.0:s390x. 178s Preparing to unpack .../242-gir1.2-gstreamer-1.0_1.25.1-1_s390x.deb ... 178s Unpacking gir1.2-gstreamer-1.0:s390x (1.25.1-1) ... 178s Selecting previously unselected package gir1.2-gweather-4.0:s390x. 178s Preparing to unpack .../243-gir1.2-gweather-4.0_4.4.4-1_s390x.deb ... 178s Unpacking gir1.2-gweather-4.0:s390x (4.4.4-1) ... 178s Selecting previously unselected package libibus-1.0-5:s390x. 178s Preparing to unpack .../244-libibus-1.0-5_1.5.32~beta1-1_s390x.deb ... 178s Unpacking libibus-1.0-5:s390x (1.5.32~beta1-1) ... 178s Selecting previously unselected package gir1.2-ibus-1.0:s390x. 178s Preparing to unpack .../245-gir1.2-ibus-1.0_1.5.32~beta1-1_s390x.deb ... 178s Unpacking gir1.2-ibus-1.0:s390x (1.5.32~beta1-1) ... 178s Selecting previously unselected package mutter-common. 178s Preparing to unpack .../246-mutter-common_47.4-1ubuntu2_all.deb ... 178s Unpacking mutter-common (47.4-1ubuntu2) ... 178s Selecting previously unselected package mutter-common-bin. 178s Preparing to unpack .../247-mutter-common-bin_47.4-1ubuntu2_s390x.deb ... 178s Unpacking mutter-common-bin (47.4-1ubuntu2) ... 178s Selecting previously unselected package libdisplay-info2:s390x. 178s Preparing to unpack .../248-libdisplay-info2_0.2.0-2_s390x.deb ... 178s Unpacking libdisplay-info2:s390x (0.2.0-2) ... 178s Selecting previously unselected package libeis1:s390x. 178s Preparing to unpack .../249-libeis1_1.3.901-1_s390x.deb ... 178s Unpacking libeis1:s390x (1.3.901-1) ... 178s Selecting previously unselected package libmtdev1t64:s390x. 178s Preparing to unpack .../250-libmtdev1t64_1.1.7-1_s390x.deb ... 178s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 178s Selecting previously unselected package libwacom-common. 178s Preparing to unpack .../251-libwacom-common_2.14.0-1_all.deb ... 178s Unpacking libwacom-common (2.14.0-1) ... 178s Selecting previously unselected package libwacom9:s390x. 178s Preparing to unpack .../252-libwacom9_2.14.0-1_s390x.deb ... 178s Unpacking libwacom9:s390x (2.14.0-1) ... 178s Selecting previously unselected package libinput-bin. 178s Preparing to unpack .../253-libinput-bin_1.26.2-1_s390x.deb ... 178s Unpacking libinput-bin (1.26.2-1) ... 178s Selecting previously unselected package libinput10:s390x. 178s Preparing to unpack .../254-libinput10_1.26.2-1_s390x.deb ... 178s Unpacking libinput10:s390x (1.26.2-1) ... 178s Selecting previously unselected package libxcb-util1:s390x. 178s Preparing to unpack .../255-libxcb-util1_0.4.1-1_s390x.deb ... 178s Unpacking libxcb-util1:s390x (0.4.1-1) ... 178s Selecting previously unselected package libstartup-notification0:s390x. 178s Preparing to unpack .../256-libstartup-notification0_0.12-8_s390x.deb ... 178s Unpacking libstartup-notification0:s390x (0.12-8) ... 178s Selecting previously unselected package libxcb-res0:s390x. 178s Preparing to unpack .../257-libxcb-res0_1.17.0-2_s390x.deb ... 178s Unpacking libxcb-res0:s390x (1.17.0-2) ... 178s Selecting previously unselected package libxcb-xkb1:s390x. 178s Preparing to unpack .../258-libxcb-xkb1_1.17.0-2_s390x.deb ... 178s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 178s Selecting previously unselected package libxkbcommon-x11-0:s390x. 178s Preparing to unpack .../259-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 178s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 178s Selecting previously unselected package libxkbfile1:s390x. 178s Preparing to unpack .../260-libxkbfile1_1%3a1.1.0-1build4_s390x.deb ... 178s Unpacking libxkbfile1:s390x (1:1.1.0-1build4) ... 178s Selecting previously unselected package libxtst6:s390x. 178s Preparing to unpack .../261-libxtst6_2%3a1.2.5-1_s390x.deb ... 178s Unpacking libxtst6:s390x (2:1.2.5-1) ... 178s Selecting previously unselected package libmutter-15-0:s390x. 178s Preparing to unpack .../262-libmutter-15-0_47.4-1ubuntu2_s390x.deb ... 178s Unpacking libmutter-15-0:s390x (47.4-1ubuntu2) ... 178s Selecting previously unselected package gir1.2-mutter-15:s390x. 178s Preparing to unpack .../263-gir1.2-mutter-15_47.4-1ubuntu2_s390x.deb ... 178s Unpacking gir1.2-mutter-15:s390x (47.4-1ubuntu2) ... 178s Selecting previously unselected package gir1.2-nm-1.0:s390x. 178s Preparing to unpack .../264-gir1.2-nm-1.0_1.50.0-1ubuntu3_s390x.deb ... 178s Unpacking gir1.2-nm-1.0:s390x (1.50.0-1ubuntu3) ... 178s Selecting previously unselected package libnma-common. 178s Preparing to unpack .../265-libnma-common_1.10.6-5_all.deb ... 178s Unpacking libnma-common (1.10.6-5) ... 178s Selecting previously unselected package libnma-gtk4-0:s390x. 178s Preparing to unpack .../266-libnma-gtk4-0_1.10.6-5_s390x.deb ... 178s Unpacking libnma-gtk4-0:s390x (1.10.6-5) ... 178s Selecting previously unselected package gir1.2-nma4-1.0:s390x. 178s Preparing to unpack .../267-gir1.2-nma4-1.0_1.10.6-5_s390x.deb ... 178s Unpacking gir1.2-nma4-1.0:s390x (1.10.6-5) ... 178s Selecting previously unselected package gir1.2-polkit-1.0. 178s Preparing to unpack .../268-gir1.2-polkit-1.0_126-2_s390x.deb ... 178s Unpacking gir1.2-polkit-1.0 (126-2) ... 178s Selecting previously unselected package librsvg2-2:s390x. 178s Preparing to unpack .../269-librsvg2-2_2.59.2+dfsg-1_s390x.deb ... 178s Unpacking librsvg2-2:s390x (2.59.2+dfsg-1) ... 178s Selecting previously unselected package gir1.2-rsvg-2.0:s390x. 178s Preparing to unpack .../270-gir1.2-rsvg-2.0_2.59.2+dfsg-1_s390x.deb ... 178s Unpacking gir1.2-rsvg-2.0:s390x (2.59.2+dfsg-1) ... 178s Selecting previously unselected package gir1.2-soup-3.0:s390x. 178s Preparing to unpack .../271-gir1.2-soup-3.0_3.6.4-2_s390x.deb ... 178s Unpacking gir1.2-soup-3.0:s390x (3.6.4-2) ... 178s Selecting previously unselected package gir1.2-upowerglib-1.0:s390x. 178s Preparing to unpack .../272-gir1.2-upowerglib-1.0_1.90.7-1_s390x.deb ... 178s Unpacking gir1.2-upowerglib-1.0:s390x (1.90.7-1) ... 178s Selecting previously unselected package gnome-control-center-data. 178s Preparing to unpack .../273-gnome-control-center-data_1%3a47.3-1ubuntu1_all.deb ... 178s Unpacking gnome-control-center-data (1:47.3-1ubuntu1) ... 178s Selecting previously unselected package libgoa-1.0-common. 178s Preparing to unpack .../274-libgoa-1.0-common_3.53.1-1_all.deb ... 178s Unpacking libgoa-1.0-common (3.53.1-1) ... 178s Selecting previously unselected package libgoa-1.0-0b:s390x. 178s Preparing to unpack .../275-libgoa-1.0-0b_3.53.1-1_s390x.deb ... 178s Unpacking libgoa-1.0-0b:s390x (3.53.1-1) ... 178s Selecting previously unselected package librest-1.0-0:s390x. 178s Preparing to unpack .../276-librest-1.0-0_0.9.1-6build3_s390x.deb ... 178s Unpacking librest-1.0-0:s390x (0.9.1-6build3) ... 178s Selecting previously unselected package libsecret-common. 178s Preparing to unpack .../277-libsecret-common_0.21.6-3_all.deb ... 178s Unpacking libsecret-common (0.21.6-3) ... 178s Selecting previously unselected package libsecret-1-0:s390x. 178s Preparing to unpack .../278-libsecret-1-0_0.21.6-3_s390x.deb ... 178s Unpacking libsecret-1-0:s390x (0.21.6-3) ... 178s Selecting previously unselected package libgoa-backend-1.0-2:s390x. 178s Preparing to unpack .../279-libgoa-backend-1.0-2_3.53.1-1_s390x.deb ... 178s Unpacking libgoa-backend-1.0-2:s390x (3.53.1-1) ... 178s Selecting previously unselected package gnome-online-accounts. 178s Preparing to unpack .../280-gnome-online-accounts_3.53.1-1_s390x.deb ... 178s Unpacking gnome-online-accounts (3.53.1-1) ... 178s Selecting previously unselected package heif-gdk-pixbuf:s390x. 178s Preparing to unpack .../281-heif-gdk-pixbuf_1.19.5-1build1_s390x.deb ... 178s Unpacking heif-gdk-pixbuf:s390x (1.19.5-1build1) ... 178s Selecting previously unselected package heif-thumbnailer. 178s Preparing to unpack .../282-heif-thumbnailer_1.19.5-1build1_s390x.deb ... 178s Unpacking heif-thumbnailer (1.19.5-1build1) ... 178s Selecting previously unselected package gir1.2-gtk-3.0:s390x. 178s Preparing to unpack .../283-gir1.2-gtk-3.0_3.24.48-3ubuntu1_s390x.deb ... 178s Unpacking gir1.2-gtk-3.0:s390x (3.24.48-3ubuntu1) ... 178s Selecting previously unselected package libpackagekit-glib2-18:s390x. 178s Preparing to unpack .../284-libpackagekit-glib2-18_1.3.0-2_s390x.deb ... 178s Unpacking libpackagekit-glib2-18:s390x (1.3.0-2) ... 178s Selecting previously unselected package gir1.2-packagekitglib-1.0. 178s Preparing to unpack .../285-gir1.2-packagekitglib-1.0_1.3.0-2_s390x.deb ... 178s Unpacking gir1.2-packagekitglib-1.0 (1.3.0-2) ... 178s Selecting previously unselected package python3-defer. 178s Preparing to unpack .../286-python3-defer_1.0.6-2.1ubuntu1_all.deb ... 178s Unpacking python3-defer (1.0.6-2.1ubuntu1) ... 178s Selecting previously unselected package python3-aptdaemon. 178s Preparing to unpack .../287-python3-aptdaemon_2.0.1_all.deb ... 178s Unpacking python3-aptdaemon (2.0.1) ... 178s Selecting previously unselected package aptdaemon. 178s Preparing to unpack .../288-aptdaemon_2.0.1_all.deb ... 178s Unpacking aptdaemon (2.0.1) ... 178s Selecting previously unselected package aptdaemon-data. 178s Preparing to unpack .../289-aptdaemon-data_2.0.1_all.deb ... 178s Unpacking aptdaemon-data (2.0.1) ... 178s Selecting previously unselected package libvte-2.91-common. 178s Preparing to unpack .../290-libvte-2.91-common_0.78.3-3_s390x.deb ... 178s Unpacking libvte-2.91-common (0.78.3-3) ... 178s Selecting previously unselected package libvte-2.91-0:s390x. 178s Preparing to unpack .../291-libvte-2.91-0_0.78.3-3_s390x.deb ... 178s Unpacking libvte-2.91-0:s390x (0.78.3-3) ... 178s Selecting previously unselected package gir1.2-vte-2.91:s390x. 178s Preparing to unpack .../292-gir1.2-vte-2.91_0.78.3-3_s390x.deb ... 178s Unpacking gir1.2-vte-2.91:s390x (0.78.3-3) ... 178s Selecting previously unselected package python3-aptdaemon.gtk3widgets. 178s Preparing to unpack .../293-python3-aptdaemon.gtk3widgets_2.0.1_all.deb ... 178s Unpacking python3-aptdaemon.gtk3widgets (2.0.1) ... 178s Selecting previously unselected package language-selector-gnome. 178s Preparing to unpack .../294-language-selector-gnome_0.226_all.deb ... 178s Unpacking language-selector-gnome (0.226) ... 178s Selecting previously unselected package liborc-0.4-0t64:s390x. 178s Preparing to unpack .../295-liborc-0.4-0t64_1%3a0.4.40-1_s390x.deb ... 178s Unpacking liborc-0.4-0t64:s390x (1:0.4.40-1) ... 178s Selecting previously unselected package libgstreamer-plugins-base1.0-0:s390x. 178s Preparing to unpack .../296-libgstreamer-plugins-base1.0-0_1.25.1-2_s390x.deb ... 178s Unpacking libgstreamer-plugins-base1.0-0:s390x (1.25.1-2) ... 178s Selecting previously unselected package libgstreamer-gl1.0-0:s390x. 178s Preparing to unpack .../297-libgstreamer-gl1.0-0_1.25.1-2_s390x.deb ... 178s Unpacking libgstreamer-gl1.0-0:s390x (1.25.1-2) ... 178s Selecting previously unselected package libgtk-4-media-gstreamer. 178s Preparing to unpack .../298-libgtk-4-media-gstreamer_4.17.1+ds-2ubuntu1_s390x.deb ... 178s Unpacking libgtk-4-media-gstreamer (4.17.1+ds-2ubuntu1) ... 178s Selecting previously unselected package tecla. 178s Preparing to unpack .../299-tecla_47.0-1_s390x.deb ... 178s Unpacking tecla (47.0-1) ... 178s Selecting previously unselected package libwebpdemux2:s390x. 178s Preparing to unpack .../300-libwebpdemux2_1.5.0-0.1_s390x.deb ... 178s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 178s Selecting previously unselected package libwebpmux3:s390x. 178s Preparing to unpack .../301-libwebpmux3_1.5.0-0.1_s390x.deb ... 178s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 178s Selecting previously unselected package webp-pixbuf-loader:s390x. 178s Preparing to unpack .../302-webp-pixbuf-loader_0.2.7-1_s390x.deb ... 178s Unpacking webp-pixbuf-loader:s390x (0.2.7-1) ... 178s Selecting previously unselected package libwhoopsie-preferences0. 178s Preparing to unpack .../303-libwhoopsie-preferences0_23build3_s390x.deb ... 178s Unpacking libwhoopsie-preferences0 (23build3) ... 178s Selecting previously unselected package libwhoopsie0:s390x. 178s Preparing to unpack .../304-libwhoopsie0_0.2.78_s390x.deb ... 178s Unpacking libwhoopsie0:s390x (0.2.78) ... 178s Selecting previously unselected package whoopsie-preferences. 178s Preparing to unpack .../305-whoopsie-preferences_23build3_s390x.deb ... 178s Unpacking whoopsie-preferences (23build3) ... 178s Selecting previously unselected package libcolord-gtk4-1t64:s390x. 178s Preparing to unpack .../306-libcolord-gtk4-1t64_0.3.1-1build2_s390x.deb ... 178s Unpacking libcolord-gtk4-1t64:s390x (0.3.1-1build2) ... 178s Selecting previously unselected package libgnome-rr-4-2t64:s390x. 178s Preparing to unpack .../307-libgnome-rr-4-2t64_44.1-2_s390x.deb ... 178s Unpacking libgnome-rr-4-2t64:s390x (44.1-2) ... 178s Selecting previously unselected package libgsound0t64:s390x. 178s Preparing to unpack .../308-libgsound0t64_1.0.3-3.2build2_s390x.deb ... 178s Unpacking libgsound0t64:s390x (1.0.3-3.2build2) ... 178s Selecting previously unselected package libgtop2-common. 179s Preparing to unpack .../309-libgtop2-common_2.41.3-1build4_all.deb ... 179s Unpacking libgtop2-common (2.41.3-1build4) ... 179s Selecting previously unselected package libgtop-2.0-11:s390x. 179s Preparing to unpack .../310-libgtop-2.0-11_2.41.3-1build4_s390x.deb ... 179s Unpacking libgtop-2.0-11:s390x (2.41.3-1build4) ... 179s Selecting previously unselected package libpwquality-common. 179s Preparing to unpack .../311-libpwquality-common_1.4.5-4_all.deb ... 179s Unpacking libpwquality-common (1.4.5-4) ... 179s Selecting previously unselected package libcrack2:s390x. 179s Preparing to unpack .../312-libcrack2_2.9.6-5.2_s390x.deb ... 179s Unpacking libcrack2:s390x (2.9.6-5.2) ... 179s Selecting previously unselected package libpwquality1:s390x. 179s Preparing to unpack .../313-libpwquality1_1.4.5-4_s390x.deb ... 179s Unpacking libpwquality1:s390x (1.4.5-4) ... 179s Selecting previously unselected package libtalloc2:s390x. 179s Preparing to unpack .../314-libtalloc2_2.4.2-2build1_s390x.deb ... 179s Unpacking libtalloc2:s390x (2.4.2-2build1) ... 179s Selecting previously unselected package libtevent0t64:s390x. 179s Preparing to unpack .../315-libtevent0t64_0.16.1-3_s390x.deb ... 179s Unpacking libtevent0t64:s390x (0.16.1-3) ... 179s Selecting previously unselected package libldb2:s390x. 179s Preparing to unpack .../316-libldb2_2%3a2.9.1+samba4.20.4+dfsg-1ubuntu5_s390x.deb ... 179s Unpacking libldb2:s390x (2:2.9.1+samba4.20.4+dfsg-1ubuntu5) ... 179s Selecting previously unselected package libwbclient0:s390x. 179s Preparing to unpack .../317-libwbclient0_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 179s Unpacking libwbclient0:s390x (2:4.20.4+dfsg-1ubuntu5) ... 179s Selecting previously unselected package samba-libs:s390x. 179s Preparing to unpack .../318-samba-libs_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 179s Unpacking samba-libs:s390x (2:4.20.4+dfsg-1ubuntu5) ... 179s Selecting previously unselected package libsmbclient0:s390x. 179s Preparing to unpack .../319-libsmbclient0_2%3a4.20.4+dfsg-1ubuntu5_s390x.deb ... 179s Unpacking libsmbclient0:s390x (2:4.20.4+dfsg-1ubuntu5) ... 179s Selecting previously unselected package gnome-control-center. 179s Preparing to unpack .../320-gnome-control-center_1%3a47.3-1ubuntu1_s390x.deb ... 179s Unpacking gnome-control-center (1:47.3-1ubuntu1) ... 179s Selecting previously unselected package gnome-shell-common. 179s Preparing to unpack .../321-gnome-shell-common_47.0-2ubuntu3.1_all.deb ... 179s Unpacking gnome-shell-common (47.0-2ubuntu3.1) ... 179s Selecting previously unselected package gstreamer1.0-pipewire:s390x. 179s Preparing to unpack .../322-gstreamer1.0-pipewire_1.2.7-1ubuntu5_s390x.deb ... 179s Unpacking gstreamer1.0-pipewire:s390x (1.2.7-1ubuntu5) ... 179s Selecting previously unselected package libglib2.0-bin. 179s Preparing to unpack .../323-libglib2.0-bin_2.83.3-2_s390x.deb ... 179s Unpacking libglib2.0-bin (2.83.3-2) ... 179s Selecting previously unselected package ubuntu-wallpapers-oracular. 179s Preparing to unpack .../324-ubuntu-wallpapers-oracular_24.10.3_all.deb ... 179s Unpacking ubuntu-wallpapers-oracular (24.10.3) ... 179s Selecting previously unselected package ubuntu-wallpapers. 179s Preparing to unpack .../325-ubuntu-wallpapers_24.10.3_all.deb ... 179s Unpacking ubuntu-wallpapers (24.10.3) ... 179s Selecting previously unselected package libcamel-1.2-64t64:s390x. 179s Preparing to unpack .../326-libcamel-1.2-64t64_3.55.2-1_s390x.deb ... 179s Unpacking libcamel-1.2-64t64:s390x (3.55.2-1) ... 179s Selecting previously unselected package libedataserver-1.2-27t64:s390x. 179s Preparing to unpack .../327-libedataserver-1.2-27t64_3.55.2-1_s390x.deb ... 179s Unpacking libedataserver-1.2-27t64:s390x (3.55.2-1) ... 179s Selecting previously unselected package libical3t64:s390x. 179s Preparing to unpack .../328-libical3t64_3.0.19-4_s390x.deb ... 179s Unpacking libical3t64:s390x (3.0.19-4) ... 179s Selecting previously unselected package libecal-2.0-3:s390x. 179s Preparing to unpack .../329-libecal-2.0-3_3.55.2-1_s390x.deb ... 179s Unpacking libecal-2.0-3:s390x (3.55.2-1) ... 179s Selecting previously unselected package libmozjs-128-0:s390x. 179s Preparing to unpack .../330-libmozjs-128-0_128.7.0-1_s390x.deb ... 179s Unpacking libmozjs-128-0:s390x (128.7.0-1) ... 179s Selecting previously unselected package libgjs0g:s390x. 179s Preparing to unpack .../331-libgjs0g_1.82.1-1_s390x.deb ... 179s Unpacking libgjs0g:s390x (1.82.1-1) ... 180s Selecting previously unselected package libgnome-autoar-0-0:s390x. 180s Preparing to unpack .../332-libgnome-autoar-0-0_0.4.5-2_s390x.deb ... 180s Unpacking libgnome-autoar-0-0:s390x (0.4.5-2) ... 180s Selecting previously unselected package gnome-shell. 180s Preparing to unpack .../333-gnome-shell_47.0-2ubuntu3.1_s390x.deb ... 180s Unpacking gnome-shell (47.0-2ubuntu3.1) ... 180s Selecting previously unselected package gvfs-common. 180s Preparing to unpack .../334-gvfs-common_1.56.1-1ubuntu1_all.deb ... 180s Unpacking gvfs-common (1.56.1-1ubuntu1) ... 180s Selecting previously unselected package gvfs-libs:s390x. 180s Preparing to unpack .../335-gvfs-libs_1.56.1-1ubuntu1_s390x.deb ... 180s Unpacking gvfs-libs:s390x (1.56.1-1ubuntu1) ... 180s Selecting previously unselected package gvfs-daemons. 180s Preparing to unpack .../336-gvfs-daemons_1.56.1-1ubuntu1_s390x.deb ... 180s Unpacking gvfs-daemons (1.56.1-1ubuntu1) ... 180s Selecting previously unselected package gvfs:s390x. 180s Preparing to unpack .../337-gvfs_1.56.1-1ubuntu1_s390x.deb ... 180s Unpacking gvfs:s390x (1.56.1-1ubuntu1) ... 180s Selecting previously unselected package libnautilus-extension4:s390x. 180s Preparing to unpack .../338-libnautilus-extension4_1%3a47.1-1ubuntu1_s390x.deb ... 180s Unpacking libnautilus-extension4:s390x (1:47.1-1ubuntu1) ... 180s Selecting previously unselected package nautilus-data. 180s Preparing to unpack .../339-nautilus-data_1%3a47.1-1ubuntu1_all.deb ... 180s Unpacking nautilus-data (1:47.1-1ubuntu1) ... 180s Selecting previously unselected package libtracker-sparql-3.0-0:s390x. 180s Preparing to unpack .../340-libtracker-sparql-3.0-0_3.7.3-2build1_s390x.deb ... 180s Unpacking libtracker-sparql-3.0-0:s390x (3.7.3-2build1) ... 180s Selecting previously unselected package tracker. 180s Preparing to unpack .../341-tracker_3.7.3-2build1_s390x.deb ... 180s Unpacking tracker (3.7.3-2build1) ... 180s Selecting previously unselected package libcue2:s390x. 180s Preparing to unpack .../342-libcue2_2.2.1-4.1build1_s390x.deb ... 180s Unpacking libcue2:s390x (2.2.1-4.1build1) ... 180s Selecting previously unselected package libexempi8:s390x. 180s Preparing to unpack .../343-libexempi8_2.6.5-1build1_s390x.deb ... 180s Unpacking libexempi8:s390x (2.6.5-1build1) ... 180s Selecting previously unselected package libinireader0:s390x. 180s Preparing to unpack .../344-libinireader0_58-1ubuntu1_s390x.deb ... 180s Unpacking libinireader0:s390x (58-1ubuntu1) ... 180s Selecting previously unselected package libexiv2-data. 180s Preparing to unpack .../345-libexiv2-data_0.28.4+dfsg-1_all.deb ... 180s Unpacking libexiv2-data (0.28.4+dfsg-1) ... 180s Selecting previously unselected package libexiv2-28:s390x. 180s Preparing to unpack .../346-libexiv2-28_0.28.4+dfsg-1_s390x.deb ... 180s Unpacking libexiv2-28:s390x (0.28.4+dfsg-1) ... 180s Selecting previously unselected package libgexiv2-2:s390x. 180s Preparing to unpack .../347-libgexiv2-2_0.14.3-1build1_s390x.deb ... 180s Unpacking libgexiv2-2:s390x (0.14.3-1build1) ... 180s Selecting previously unselected package libgif7:s390x. 180s Preparing to unpack .../348-libgif7_5.2.2-1ubuntu1_s390x.deb ... 180s Unpacking libgif7:s390x (5.2.2-1ubuntu1) ... 180s Selecting previously unselected package libgsf-1-common. 180s Preparing to unpack .../349-libgsf-1-common_1.14.53-1_all.deb ... 180s Unpacking libgsf-1-common (1.14.53-1) ... 180s Selecting previously unselected package libgsf-1-114:s390x. 180s Preparing to unpack .../350-libgsf-1-114_1.14.53-1_s390x.deb ... 180s Unpacking libgsf-1-114:s390x (1.14.53-1) ... 180s Selecting previously unselected package libgxps2t64:s390x. 180s Preparing to unpack .../351-libgxps2t64_0.3.2-4build3_s390x.deb ... 180s Unpacking libgxps2t64:s390x (0.3.2-4build3) ... 180s Selecting previously unselected package libtotem-plparser-common. 180s Preparing to unpack .../352-libtotem-plparser-common_3.26.6-2_all.deb ... 180s Unpacking libtotem-plparser-common (3.26.6-2) ... 180s Selecting previously unselected package libtotem-plparser18:s390x. 180s Preparing to unpack .../353-libtotem-plparser18_3.26.6-2_s390x.deb ... 180s Unpacking libtotem-plparser18:s390x (3.26.6-2) ... 180s Selecting previously unselected package tracker-extract. 180s Preparing to unpack .../354-tracker-extract_3.7.4-1build1_s390x.deb ... 180s Unpacking tracker-extract (3.7.4-1build1) ... 180s Selecting previously unselected package tracker-miner-fs. 180s Preparing to unpack .../355-tracker-miner-fs_3.7.4-1build1_s390x.deb ... 180s Unpacking tracker-miner-fs (3.7.4-1build1) ... 180s Selecting previously unselected package xdg-user-dirs-gtk. 180s Preparing to unpack .../356-xdg-user-dirs-gtk_0.14-1_s390x.deb ... 180s Unpacking xdg-user-dirs-gtk (0.14-1) ... 180s Selecting previously unselected package libdbusmenu-glib4:s390x. 180s Preparing to unpack .../357-libdbusmenu-glib4_18.10.20180917~bzr492+repack1-4_s390x.deb ... 180s Unpacking libdbusmenu-glib4:s390x (18.10.20180917~bzr492+repack1-4) ... 180s Selecting previously unselected package libportal-gtk4-1:s390x. 180s Preparing to unpack .../358-libportal-gtk4-1_0.9.0-1_s390x.deb ... 180s Unpacking libportal-gtk4-1:s390x (0.9.0-1) ... 180s Selecting previously unselected package libportal1:s390x. 180s Preparing to unpack .../359-libportal1_0.9.0-1_s390x.deb ... 180s Unpacking libportal1:s390x (0.9.0-1) ... 180s Selecting previously unselected package libdee-1.0-4:s390x. 180s Preparing to unpack .../360-libdee-1.0-4_1.2.7+17.10.20170616-7build6_s390x.deb ... 180s Unpacking libdee-1.0-4:s390x (1.2.7+17.10.20170616-7build6) ... 180s Selecting previously unselected package libunity-protocol-private0:s390x. 180s Preparing to unpack .../361-libunity-protocol-private0_7.1.4+19.04.20190319-6.1_s390x.deb ... 180s Unpacking libunity-protocol-private0:s390x (7.1.4+19.04.20190319-6.1) ... 180s Selecting previously unselected package libunity-scopes-json-def-desktop. 180s Preparing to unpack .../362-libunity-scopes-json-def-desktop_7.1.4+19.04.20190319-6.1_all.deb ... 180s Unpacking libunity-scopes-json-def-desktop (7.1.4+19.04.20190319-6.1) ... 180s Selecting previously unselected package libunity9. 180s Preparing to unpack .../363-libunity9_7.1.4+19.04.20190319-6.1_s390x.deb ... 180s Unpacking libunity9 (7.1.4+19.04.20190319-6.1) ... 180s Selecting previously unselected package nautilus. 180s Preparing to unpack .../364-nautilus_1%3a47.1-1ubuntu1_s390x.deb ... 180s Unpacking nautilus (1:47.1-1ubuntu1) ... 180s Selecting previously unselected package libcdparanoia0:s390x. 180s Preparing to unpack .../365-libcdparanoia0_3.10.2+debian-14ubuntu1_s390x.deb ... 180s Unpacking libcdparanoia0:s390x (3.10.2+debian-14ubuntu1) ... 180s Selecting previously unselected package libtheoradec1:s390x. 180s Preparing to unpack .../366-libtheoradec1_1.2.0~alpha1+dfsg-5_s390x.deb ... 180s Unpacking libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 180s Selecting previously unselected package libtheoraenc1:s390x. 180s Preparing to unpack .../367-libtheoraenc1_1.2.0~alpha1+dfsg-5_s390x.deb ... 180s Unpacking libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 180s Selecting previously unselected package libvisual-0.4-0:s390x. 180s Preparing to unpack .../368-libvisual-0.4-0_0.4.2-2build1_s390x.deb ... 180s Unpacking libvisual-0.4-0:s390x (0.4.2-2build1) ... 180s Selecting previously unselected package gstreamer1.0-plugins-base:s390x. 180s Preparing to unpack .../369-gstreamer1.0-plugins-base_1.25.1-2_s390x.deb ... 180s Unpacking gstreamer1.0-plugins-base:s390x (1.25.1-2) ... 180s Selecting previously unselected package libaa1:s390x. 180s Preparing to unpack .../370-libaa1_1.4p5-51.1_s390x.deb ... 180s Unpacking libaa1:s390x (1.4p5-51.1) ... 180s Selecting previously unselected package libraw1394-11:s390x. 180s Preparing to unpack .../371-libraw1394-11_2.1.2-2build3_s390x.deb ... 180s Unpacking libraw1394-11:s390x (2.1.2-2build3) ... 180s Selecting previously unselected package libavc1394-0:s390x. 180s Preparing to unpack .../372-libavc1394-0_0.5.4-5build3_s390x.deb ... 180s Unpacking libavc1394-0:s390x (0.5.4-5build3) ... 180s Selecting previously unselected package libcaca0:s390x. 180s Preparing to unpack .../373-libcaca0_0.99.beta20-5_s390x.deb ... 180s Unpacking libcaca0:s390x (0.99.beta20-5) ... 180s Selecting previously unselected package libdv4t64:s390x. 180s Preparing to unpack .../374-libdv4t64_1.0.0-17.1build1_s390x.deb ... 180s Unpacking libdv4t64:s390x (1.0.0-17.1build1) ... 180s Selecting previously unselected package libgstreamer-plugins-good1.0-0:s390x. 180s Preparing to unpack .../375-libgstreamer-plugins-good1.0-0_1.24.10-1ubuntu3_s390x.deb ... 180s Unpacking libgstreamer-plugins-good1.0-0:s390x (1.24.10-1ubuntu3) ... 180s Selecting previously unselected package libiec61883-0:s390x. 180s Preparing to unpack .../376-libiec61883-0_1.2.0-7_s390x.deb ... 180s Unpacking libiec61883-0:s390x (1.2.0-7) ... 180s Selecting previously unselected package libspeex1:s390x. 180s Preparing to unpack .../377-libspeex1_1.2.1-3_s390x.deb ... 180s Unpacking libspeex1:s390x (1.2.1-3) ... 180s Selecting previously unselected package libtheora0:s390x. 180s Preparing to unpack .../378-libtheora0_1.2.0~alpha1+dfsg-5_s390x.deb ... 180s Unpacking libtheora0:s390x (1.2.0~alpha1+dfsg-5) ... 180s Selecting previously unselected package libshout3:s390x. 180s Preparing to unpack .../379-libshout3_2.4.6-1build2_s390x.deb ... 180s Unpacking libshout3:s390x (2.4.6-1build2) ... 180s Selecting previously unselected package libtag2:s390x. 180s Preparing to unpack .../380-libtag2_2.0.2-2_s390x.deb ... 180s Unpacking libtag2:s390x (2.0.2-2) ... 180s Selecting previously unselected package libtwolame0:s390x. 180s Preparing to unpack .../381-libtwolame0_0.4.0-2build3_s390x.deb ... 180s Unpacking libtwolame0:s390x (0.4.0-2build3) ... 180s Selecting previously unselected package libvpx9:s390x. 180s Preparing to unpack .../382-libvpx9_1.15.0-1ubuntu1_s390x.deb ... 180s Unpacking libvpx9:s390x (1.15.0-1ubuntu1) ... 180s Selecting previously unselected package libwavpack1:s390x. 180s Preparing to unpack .../383-libwavpack1_5.8.1-1_s390x.deb ... 180s Unpacking libwavpack1:s390x (5.8.1-1) ... 180s Selecting previously unselected package gstreamer1.0-plugins-good:s390x. 180s Preparing to unpack .../384-gstreamer1.0-plugins-good_1.24.10-1ubuntu3_s390x.deb ... 180s Unpacking gstreamer1.0-plugins-good:s390x (1.24.10-1ubuntu3) ... 180s Selecting previously unselected package xdg-desktop-portal. 180s Preparing to unpack .../385-xdg-desktop-portal_1.19.2+ds-1ubuntu1_s390x.deb ... 180s Unpacking xdg-desktop-portal (1.19.2+ds-1ubuntu1) ... 180s Selecting previously unselected package xdg-desktop-portal-gtk. 180s Preparing to unpack .../386-xdg-desktop-portal-gtk_1.15.2-1_s390x.deb ... 180s Unpacking xdg-desktop-portal-gtk (1.15.2-1) ... 180s Selecting previously unselected package xdg-desktop-portal-gnome. 180s Preparing to unpack .../387-xdg-desktop-portal-gnome_47.1-4ubuntu1_s390x.deb ... 180s Unpacking xdg-desktop-portal-gnome (47.1-4ubuntu1) ... 180s Selecting previously unselected package libxt6t64:s390x. 180s Preparing to unpack .../388-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 180s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 180s Selecting previously unselected package libxmu6:s390x. 180s Preparing to unpack .../389-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 180s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 180s Selecting previously unselected package libxaw7:s390x. 180s Preparing to unpack .../390-libxaw7_2%3a1.0.16-1_s390x.deb ... 180s Unpacking libxaw7:s390x (2:1.0.16-1) ... 180s Selecting previously unselected package x11-xkb-utils. 180s Preparing to unpack .../391-x11-xkb-utils_7.7+9_s390x.deb ... 180s Unpacking x11-xkb-utils (7.7+9) ... 180s Selecting previously unselected package xserver-common. 180s Preparing to unpack .../392-xserver-common_2%3a21.1.14-2ubuntu1_all.deb ... 180s Unpacking xserver-common (2:21.1.14-2ubuntu1) ... 180s Selecting previously unselected package libdecor-0-0:s390x. 180s Preparing to unpack .../393-libdecor-0-0_0.2.2-2_s390x.deb ... 180s Unpacking libdecor-0-0:s390x (0.2.2-2) ... 180s Selecting previously unselected package libxcvt0:s390x. 180s Preparing to unpack .../394-libxcvt0_0.1.3-1_s390x.deb ... 180s Unpacking libxcvt0:s390x (0.1.3-1) ... 180s Selecting previously unselected package libfontenc1:s390x. 180s Preparing to unpack .../395-libfontenc1_1%3a1.1.8-1build1_s390x.deb ... 180s Unpacking libfontenc1:s390x (1:1.1.8-1build1) ... 181s Selecting previously unselected package libxfont2:s390x. 181s Preparing to unpack .../396-libxfont2_1%3a2.0.6-1build1_s390x.deb ... 181s Unpacking libxfont2:s390x (1:2.0.6-1build1) ... 181s Selecting previously unselected package xwayland. 181s Preparing to unpack .../397-xwayland_2%3a24.1.5-1_s390x.deb ... 181s Unpacking xwayland (2:24.1.5-1) ... 181s Selecting previously unselected package yaru-theme-gnome-shell. 181s Preparing to unpack .../398-yaru-theme-gnome-shell_24.10.4-0ubuntu1_all.deb ... 181s Unpacking yaru-theme-gnome-shell (24.10.4-0ubuntu1) ... 181s Selecting previously unselected package session-migration. 181s Preparing to unpack .../399-session-migration_0.3.9build1_s390x.deb ... 181s Unpacking session-migration (0.3.9build1) ... 181s Selecting previously unselected package ubuntu-session. 181s Preparing to unpack .../400-ubuntu-session_47.0.1-1ubuntu1_all.deb ... 181s Unpacking ubuntu-session (47.0.1-1ubuntu1) ... 181s Selecting previously unselected package librsvg2-common:s390x. 181s Preparing to unpack .../401-librsvg2-common_2.59.2+dfsg-1_s390x.deb ... 181s Unpacking librsvg2-common:s390x (2.59.2+dfsg-1) ... 181s Selecting previously unselected package x11-xserver-utils. 181s Preparing to unpack .../402-x11-xserver-utils_7.7+11_s390x.deb ... 181s Unpacking x11-xserver-utils (7.7+11) ... 181s Selecting previously unselected package gdm3. 181s Preparing to unpack .../403-gdm3_48~beta-1ubuntu1_s390x.deb ... 181s Unpacking gdm3 (48~beta-1ubuntu1) ... 181s Selecting previously unselected package libevent-2.1-7t64:s390x. 181s Preparing to unpack .../404-libevent-2.1-7t64_2.1.12-stable-10_s390x.deb ... 181s Unpacking libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 181s Selecting previously unselected package libunbound8:s390x. 181s Preparing to unpack .../405-libunbound8_1.22.0-1ubuntu1_s390x.deb ... 181s Unpacking libunbound8:s390x (1.22.0-1ubuntu1) ... 181s Selecting previously unselected package libgnutls-dane0t64:s390x. 181s Preparing to unpack .../406-libgnutls-dane0t64_3.8.8-2ubuntu1_s390x.deb ... 181s Unpacking libgnutls-dane0t64:s390x (3.8.8-2ubuntu1) ... 181s Selecting previously unselected package gnutls-bin. 181s Preparing to unpack .../407-gnutls-bin_3.8.8-2ubuntu1_s390x.deb ... 181s Unpacking gnutls-bin (3.8.8-2ubuntu1) ... 181s Selecting previously unselected package libbasicobjects0t64:s390x. 181s Preparing to unpack .../408-libbasicobjects0t64_0.6.2-3_s390x.deb ... 181s Unpacking libbasicobjects0t64:s390x (0.6.2-3) ... 181s Selecting previously unselected package libcares2:s390x. 181s Preparing to unpack .../409-libcares2_1.34.4-2.1_s390x.deb ... 181s Unpacking libcares2:s390x (1.34.4-2.1) ... 181s Selecting previously unselected package libcollection4t64:s390x. 181s Preparing to unpack .../410-libcollection4t64_0.6.2-3_s390x.deb ... 181s Unpacking libcollection4t64:s390x (0.6.2-3) ... 181s Selecting previously unselected package libdhash1t64:s390x. 181s Preparing to unpack .../411-libdhash1t64_0.6.2-3_s390x.deb ... 181s Unpacking libdhash1t64:s390x (0.6.2-3) ... 181s Selecting previously unselected package libpath-utils1t64:s390x. 181s Preparing to unpack .../412-libpath-utils1t64_0.6.2-3_s390x.deb ... 181s Unpacking libpath-utils1t64:s390x (0.6.2-3) ... 181s Selecting previously unselected package libref-array1t64:s390x. 181s Preparing to unpack .../413-libref-array1t64_0.6.2-3_s390x.deb ... 181s Unpacking libref-array1t64:s390x (0.6.2-3) ... 181s Selecting previously unselected package libini-config5t64:s390x. 181s Preparing to unpack .../414-libini-config5t64_0.6.2-3_s390x.deb ... 181s Unpacking libini-config5t64:s390x (0.6.2-3) ... 181s Selecting previously unselected package libipa-hbac0t64. 181s Preparing to unpack .../415-libipa-hbac0t64_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking libipa-hbac0t64 (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package libnfsidmap1:s390x. 181s Preparing to unpack .../416-libnfsidmap1_1%3a2.6.4-4ubuntu1_s390x.deb ... 181s Unpacking libnfsidmap1:s390x (1:2.6.4-4ubuntu1) ... 181s Selecting previously unselected package libpam-pwquality:s390x. 181s Preparing to unpack .../417-libpam-pwquality_1.4.5-4_s390x.deb ... 181s Unpacking libpam-pwquality:s390x (1.4.5-4) ... 181s Selecting previously unselected package libnss-sss:s390x. 181s Preparing to unpack .../418-libnss-sss_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking libnss-sss:s390x (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package libpam-sss:s390x. 181s Preparing to unpack .../419-libpam-sss_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking libpam-sss:s390x (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package softhsm2-common. 181s Preparing to unpack .../420-softhsm2-common_2.6.1-2.2ubuntu3_s390x.deb ... 181s Unpacking softhsm2-common (2.6.1-2.2ubuntu3) ... 181s Selecting previously unselected package libsofthsm2. 181s Preparing to unpack .../421-libsofthsm2_2.6.1-2.2ubuntu3_s390x.deb ... 181s Unpacking libsofthsm2 (2.6.1-2.2ubuntu3) ... 181s Selecting previously unselected package libsss-certmap0. 181s Preparing to unpack .../422-libsss-certmap0_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking libsss-certmap0 (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package libsss-idmap0. 181s Preparing to unpack .../423-libsss-idmap0_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking libsss-idmap0 (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package libsss-nss-idmap0. 181s Preparing to unpack .../424-libsss-nss-idmap0_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking libsss-nss-idmap0 (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package pamtester. 181s Preparing to unpack .../425-pamtester_0.1.2-4_s390x.deb ... 181s Unpacking pamtester (0.1.2-4) ... 181s Selecting previously unselected package python3-sss. 181s Preparing to unpack .../426-python3-sss_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking python3-sss (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package softhsm2. 181s Preparing to unpack .../427-softhsm2_2.6.1-2.2ubuntu3_s390x.deb ... 181s Unpacking softhsm2 (2.6.1-2.2ubuntu3) ... 181s Selecting previously unselected package sssd-common. 181s Preparing to unpack .../428-sssd-common_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd-common (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package sssd-ad-common. 181s Preparing to unpack .../429-sssd-ad-common_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd-ad-common (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package sssd-krb5-common. 181s Preparing to unpack .../430-sssd-krb5-common_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd-krb5-common (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package sssd-ad. 181s Preparing to unpack .../431-sssd-ad_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd-ad (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package sssd-ipa. 181s Preparing to unpack .../432-sssd-ipa_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd-ipa (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package sssd-krb5. 181s Preparing to unpack .../433-sssd-krb5_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd-krb5 (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package sssd-ldap. 181s Preparing to unpack .../434-sssd-ldap_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd-ldap (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package sssd-proxy. 181s Preparing to unpack .../435-sssd-proxy_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd-proxy (2.10.1-2ubuntu2) ... 181s Selecting previously unselected package sssd. 181s Preparing to unpack .../436-sssd_2.10.1-2ubuntu2_s390x.deb ... 181s Unpacking sssd (2.10.1-2ubuntu2) ... 181s Setting up libpwquality-common (1.4.5-4) ... 181s Setting up libcamel-1.2-64t64:s390x (3.55.2-1) ... 181s Setting up libgsf-1-common (1.14.53-1) ... 181s Setting up bubblewrap (0.11.0-2) ... 181s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 181s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 181s Setting up liblcms2-2:s390x (2.16-2) ... 181s Setting up libpixman-1-0:s390x (0.44.0-3) ... 181s Setting up libfreeaptx0:s390x (0.1.1-2build1) ... 181s Setting up libcdparanoia0:s390x (3.10.2+debian-14ubuntu1) ... 181s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 181s Setting up libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 181s Setting up libwayland-server0:s390x (1.23.1-1) ... 181s Setting up libaom3:s390x (3.11.0-1) ... 181s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 181s Setting up libwhoopsie-preferences0 (23build3) ... 181s Setting up libxcb-res0:s390x (1.17.0-2) ... 181s Setting up session-migration (0.3.9build1) ... 181s Created symlink '/etc/systemd/user/graphical-session-pre.target.wants/session-migration.service' → '/usr/lib/systemd/user/session-migration.service'. 181s Setting up libraw1394-11:s390x (2.1.2-2build3) ... 181s Setting up libsbc1:s390x (2.0-1build1) ... 181s Setting up libgck-2-2:s390x (4.3.91-1) ... 181s Setting up softhsm2-common (2.6.1-2.2ubuntu3) ... 182s Creating config file /etc/softhsm/softhsm2.conf with new version 182s Setting up libnfsidmap1:s390x (1:2.6.4-4ubuntu1) ... 182s Setting up libieee1284-3t64:s390x (0.2.11-14.1build1) ... 182s Setting up geocode-glib-common (3.26.3-6build3) ... 182s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 182s Setting up libcue2:s390x (2.2.1-4.1build1) ... 182s Setting up pamtester (0.1.2-4) ... 182s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 182s Setting up libogg0:s390x (1.3.5-3build1) ... 182s Setting up libsss-idmap0 (2.10.1-2ubuntu2) ... 182s Setting up desktop-file-utils (0.28-1) ... 182s Setting up libportal1:s390x (0.9.0-1) ... 182s Setting up libspeex1:s390x (1.2.1-3) ... 182s Setting up libcaca0:s390x (0.99.beta20-5) ... 182s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 182s Setting up libgcr-4-4:s390x (4.3.91-1) ... 182s Setting up hicolor-icon-theme (0.18-2) ... 182s Setting up libxi6:s390x (2:1.8.2-1) ... 182s Setting up libtwolame0:s390x (0.4.0-2build3) ... 182s Setting up libinireader0:s390x (58-1ubuntu1) ... 182s Setting up liblc3-1:s390x (1.1.2+dfsg-1) ... 182s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 182s Setting up libvte-2.91-common (0.78.3-3) ... 182s Setting up libdatrie1:s390x (0.2.13-3build1) ... 182s Setting up libdee-1.0-4:s390x (1.2.7+17.10.20170616-7build6) ... 182s Setting up xdg-user-dirs (0.18-2) ... 182s Setting up libbasicobjects0t64:s390x (0.6.2-3) ... 182s Setting up libipa-hbac0t64 (2.10.1-2ubuntu2) ... 182s Setting up libref-array1t64:s390x (0.6.2-3) ... 182s Setting up yaru-theme-gnome-shell (24.10.4-0ubuntu1) ... 182s update-alternatives: using /usr/share/gnome-shell/theme/Yaru/gnome-shell-theme.gresource to provide /usr/share/gnome-shell/gdm-theme.gresource (gdm-theme.gresource) in auto mode 182s Setting up libvisual-0.4-0:s390x (0.4.2-2build1) ... 182s Setting up libxcb-render0:s390x (1.17.0-2) ... 182s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 182s Setting up libglvnd0:s390x (1.7.0-1build1) ... 182s Setting up libtag2:s390x (2.0.2-2) ... 182s Setting up libsnmp-base (5.9.4+dfsg-1.1ubuntu6) ... 182s Setting up libtdb1:s390x (1.4.12-1build1) ... 182s Setting up libtotem-plparser-common (3.26.6-2) ... 182s Setting up libgusb2:s390x (0.4.9-1) ... 182s Setting up libxcb-glx0:s390x (1.17.0-2) ... 182s Setting up libdbusmenu-glib4:s390x (18.10.20180917~bzr492+repack1-4) ... 182s Setting up libunity-scopes-json-def-desktop (7.1.4+19.04.20190319-6.1) ... 182s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 182s Setting up libibus-1.0-5:s390x (1.5.32~beta1-1) ... 182s Setting up libcollection4t64:s390x (0.6.2-3) ... 182s Setting up libgnome-autoar-0-0:s390x (0.4.5-2) ... 182s Setting up x11-common (1:7.7+23ubuntu3) ... 182s Setting up libdisplay-info2:s390x (0.2.0-2) ... 182s Setting up libdeflate0:s390x (1.23-1) ... 182s Setting up libexempi8:s390x (2.6.5-1build1) ... 182s Setting up libglib2.0-bin (2.83.3-2) ... 182s Setting up libcpdb2t64:s390x (2.0~b5-1.2build1) ... 182s Setting up libpackagekit-glib2-18:s390x (1.3.0-2) ... 182s Setting up libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 182s Setting up apg (2.2.3.dfsg.1-7) ... 182s Setting up libxcb-shm0:s390x (1.17.0-2) ... 182s Setting up libwhoopsie0:s390x (0.2.78) ... 182s Setting up libcpdb-frontend2t64:s390x (2.0~b5-1.2build1) ... 182s Setting up libsoup-3.0-common (3.6.4-2) ... 182s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 182s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 182s Setting up gir1.2-gdesktopenums-3.0:s390x (48~beta-1ubuntu1) ... 182s Setting up libunwind8:s390x (1.6.2-3.1) ... 182s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 182s Setting up libwbclient0:s390x (2:4.20.4+dfsg-1ubuntu5) ... 182s Setting up libcolord2:s390x (1.4.7-1build2) ... 182s Setting up colord-data (1.4.7-1build2) ... 182s Setting up libxcb-util1:s390x (0.4.1-1) ... 182s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 182s Setting up liborc-0.4-0t64:s390x (1:0.4.40-1) ... 182s Setting up acl (2.3.2-2) ... 182s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 182s Setting up libgsf-1-114:s390x (1.14.53-1) ... 182s Setting up libxcb-present0:s390x (1.17.0-2) ... 182s Setting up libtalloc2:s390x (2.4.2-2build1) ... 182s Setting up libdconf1:s390x (0.40.0-5) ... 182s Setting up gnome-desktop3-data (44.1-2) ... 182s Setting up libasound2-data (1.2.13-1build1) ... 182s Setting up libgtop2-common (2.41.3-1build4) ... 182s Setting up gir1.2-packagekitglib-1.0 (1.3.0-2) ... 182s Setting up libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 182s Setting up libpath-utils1t64:s390x (0.6.2-3) ... 182s Setting up libfontenc1:s390x (1:1.1.8-1build1) ... 182s Setting up libunbound8:s390x (1.22.0-1ubuntu1) ... 182s Setting up libgles2:s390x (1.7.0-1build1) ... 182s Setting up libasound2t64:s390x (1.2.13-1build1) ... 182s Setting up libgnutls-dane0t64:s390x (3.8.8-2ubuntu1) ... 182s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 182s Setting up libxkbregistry0:s390x (1.7.0-2) ... 182s Setting up libepoxy0:s390x (1.5.10-2) ... 182s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 182s Setting up libxcb-sync1:s390x (1.17.0-2) ... 182s Setting up gnome-bluetooth-3-common (47.1-1) ... 182s Setting up libtotem-plparser18:s390x (3.26.6-2) ... 182s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 182s Setting up libatspi2.0-0t64:s390x (2.55.2-1) ... 182s Setting up libopus0:s390x (1.5.2-2) ... 182s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 182s Setting up libexif12:s390x (0.6.25-1) ... 182s Setting up libimagequant0:s390x (2.18.0-1build1) ... 182s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 182s Setting up fonts-dejavu-mono (2.37-8) ... 182s Setting up libcares2:s390x (1.34.4-2.1) ... 182s Setting up libmpc3:s390x (1.3.1-1build2) ... 182s Setting up libdhash1t64:s390x (0.6.2-3) ... 182s Setting up libvorbis0a:s390x (1.3.7-2) ... 182s Setting up libxrandr2:s390x (2:1.5.4-1) ... 182s Setting up libnautilus-extension4:s390x (1:47.1-1ubuntu1) ... 182s Setting up fonts-dejavu-core (2.37-8) ... 182s Setting up libexiv2-data (0.28.4+dfsg-1) ... 182s Setting up libdv4t64:s390x (1.0.0-17.1build1) ... 182s Setting up libmozjs-128-0:s390x (128.7.0-1) ... 182s Setting up libical3t64:s390x (3.0.19-4) ... 182s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 182s Setting up libltdl7:s390x (2.5.4-3build1) ... 182s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 182s Setting up libnm0:s390x (1.50.0-1ubuntu3) ... 182s Setting up libvulkan1:s390x (1.4.304.0-1) ... 182s Setting up libcrack2:s390x (2.9.6-5.2) ... 182s Setting up libwebp7:s390x (1.5.0-0.1) ... 182s Setting up gir1.2-gck-2:s390x (4.3.91-1) ... 182s Setting up libgif7:s390x (5.2.2-1ubuntu1) ... 182s Setting up libvpx9:s390x (1.15.0-1ubuntu1) ... 182s Setting up libplist-2.0-4:s390x (2.6.0-2build1) ... 182s Setting up libmtdev1t64:s390x (1.1.7-1) ... 182s Setting up sound-theme-freedesktop (0.8-3ubuntu1) ... 182s Setting up libduktape207:s390x (2.7.0+tests-0ubuntu3) ... 182s Setting up libasyncns0:s390x (0.8-6build4) ... 182s Setting up libxshmfence1:s390x (1.3-1build5) ... 182s Setting up libusbmuxd6:s390x (2.0.2-5~exp1ubuntu1) ... 182s Setting up at-spi2-common (2.55.2-1) ... 182s Setting up gir1.2-polkit-1.0 (126-2) ... 182s Setting up libbluetooth3:s390x (5.79-1) ... 182s Setting up libwavpack1:s390x (5.8.1-1) ... 182s Setting up libxcb-randr0:s390x (1.17.0-2) ... 182s Setting up python3-defer (1.0.6-2.1ubuntu1) ... 182s Setting up libspeexdsp1:s390x (1.2.1-3) ... 182s Setting up libxcvt0:s390x (0.1.3-1) ... 182s Setting up gnome-session-common (47.0.1-1ubuntu1) ... 182s Setting up libgtop-2.0-11:s390x (2.41.3-1build4) ... 182s Setting up libupower-glib3:s390x (1.90.7-1) ... 182s Setting up liblua5.4-0:s390x (5.4.7-1) ... 182s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 182s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 182s Setting up libthai-data (0.1.29-2build1) ... 182s Setting up libabsl20230802:s390x (20230802.1-4ubuntu2) ... 182s Setting up sgml-base (1.31) ... 182s Setting up libgphoto2-port12t64:s390x (2.5.31-4) ... 182s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 182s Setting up libwayland-egl1:s390x (1.23.1-1) ... 182s Setting up libstemmer0d:s390x (2.2.0-4build1) ... 182s Setting up aptdaemon-data (2.0.1) ... 182s Setting up libxkbfile1:s390x (1:1.1.0-1build4) ... 182s Setting up libaccountsservice0:s390x (23.13.9-7ubuntu1) ... 182s Setting up glib-networking-common (2.80.1-1) ... 182s Setting up gir1.2-nm-1.0:s390x (1.50.0-1ubuntu3) ... 182s Setting up libsane-common (1.3.1-1) ... 182s Setting up libisl23:s390x (0.27-1) ... 182s Setting up libde265-0:s390x (1.0.15-1build4) ... 182s Setting up libimobiledevice6:s390x (1.3.0-8.1ubuntu4) ... 182s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 182s Setting up libsss-nss-idmap0 (2.10.1-2ubuntu2) ... 182s Setting up libini-config5t64:s390x (0.6.2-3) ... 182s Setting up libeis1:s390x (1.3.901-1) ... 182s Setting up gvfs-common (1.56.1-1ubuntu1) ... 182s Setting up gir1.2-ibus-1.0:s390x (1.5.32~beta1-1) ... 182s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 182s Setting up libxfont2:s390x (1:2.0.6-1build1) ... 182s Setting up ubuntu-wallpapers-oracular (24.10.3) ... 182s Setting up libunity-protocol-private0:s390x (7.1.4+19.04.20190319-6.1) ... 182s Setting up accountsservice (23.13.9-7ubuntu1) ... 182s Created symlink '/etc/systemd/system/graphical.target.wants/accounts-daemon.service' → '/usr/lib/systemd/system/accounts-daemon.service'. 183s Setting up libsecret-common (0.21.6-3) ... 183s Setting up libgstreamer1.0-0:s390x (1.25.1-1) ... 183s Setcap worked! gst-ptp-helper is not suid! 183s Setting up libmp3lame0:s390x (3.100-6build1) ... 183s Setting up libtevent0t64:s390x (0.16.1-3) ... 183s Setting up libgraphene-1.0-0:s390x (1.10.8-5) ... 183s Setting up libvorbisenc2:s390x (1.3.7-2) ... 183s Setting up libaa1:s390x (1.4p5-51.1) ... 183s Setting up libiec61883-0:s390x (1.2.0-7) ... 183s Setting up libwacom-common (2.14.0-1) ... 183s Setting up libstartup-notification0:s390x (0.12-8) ... 183s Setting up libnss-sss:s390x (2.10.1-2ubuntu2) ... 183s Setting up libwayland-client0:s390x (1.23.1-1) ... 183s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 183s Setting up gir1.2-graphene-1.0:s390x (1.10.8-5) ... 183s Setting up gnutls-bin (3.8.8-2ubuntu1) ... 183s Setting up libavc1394-0:s390x (0.5.4-5build3) ... 183s Setting up libroc0.4:s390x (0.4.0+dfsg-4ubuntu1) ... 183s Setting up libsofthsm2 (2.6.1-2.2ubuntu3) ... 183s Setting up softhsm2 (2.6.1-2.2ubuntu3) ... 183s Setting up libice6:s390x (2:1.1.1-1) ... 183s Setting up gir1.2-gstreamer-1.0:s390x (1.25.1-1) ... 183s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 183s Setting up libproxy1v5:s390x (0.5.9-1) ... 183s Setting up libsnmp40t64:s390x (5.9.4+dfsg-1.1ubuntu6) ... 183s Setting up libatk1.0-0t64:s390x (2.55.2-1) ... 183s Setting up dconf-cli (0.40.0-5) ... 183s Setting up libv4lconvert0t64:s390x (1.28.1-1) ... 183s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 183s Setting up gir1.2-atk-1.0:s390x (2.55.2-1) ... 183s Setting up libwacom9:s390x (2.14.0-1) ... 183s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 183s Setting up libxtst6:s390x (2:1.2.5-1) ... 183s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 183s Setting up libxcursor1:s390x (1:1.2.3-1) ... 183s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 183s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 183s Setting up upower (1.90.7-1) ... 183s upower.service is a disabled or a static unit, not starting it. 183s Setting up libgnome-bluetooth-3.0-13:s390x (47.1-1) ... 183s Setting up libcolorhug2:s390x (1.4.7-1build2) ... 183s Setting up libappstream5:s390x (1.0.4-1) ... 183s Setting up libgstreamer-plugins-base1.0-0:s390x (1.25.1-2) ... 183s Setting up dconf-service (0.40.0-5) ... 183s Setting up whoopsie-preferences (23build3) ... 183s Setting up libharfbuzz-gobject0:s390x (10.2.0-1) ... 183s Setting up gir1.2-accountsservice-1.0:s390x (23.13.9-7ubuntu1) ... 183s Setting up libwebrtc-audio-processing-1-3:s390x (1.3-3) ... 183s Setting up libexiv2-28:s390x (0.28.4+dfsg-1) ... 183s Setting up libsss-certmap0 (2.10.1-2ubuntu2) ... 183s Setting up libinput-bin (1.26.2-1) ... 183s Setting up libthai0:s390x (0.1.29-2build1) ... 183s Setting up libvorbisfile3:s390x (1.3.7-2) ... 183s Setting up libsecret-1-0:s390x (0.21.6-3) ... 183s Setting up libgstreamer-plugins-good1.0-0:s390x (1.24.10-1ubuntu3) ... 183s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 183s Setting up libpwquality1:s390x (1.4.5-4) ... 183s Setting up gir1.2-gcr-4:s390x (4.3.91-1) ... 183s Setting up libspa-0.2-modules:s390x (1.2.7-1ubuntu5) ... 183s Setting up libraqm0:s390x (0.10.2-1) ... 183s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 183s Setting up cpp-14 (14.2.0-16ubuntu1) ... 183s Setting up libv4l-0t64:s390x (1.28.1-1) ... 183s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 183s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 183s Setting up xml-core (0.19) ... 183s Setting up libspa-0.2-bluetooth:s390x (1.2.7-1ubuntu5) ... 183s Setting up libegl1:s390x (1.7.0-1build1) ... 183s Setting up gir1.2-upowerglib-1.0:s390x (1.90.7-1) ... 183s Setting up libdecor-0-0:s390x (0.2.2-2) ... 183s Setting up libharfbuzz-subset0:s390x (10.2.0-1) ... 183s Setting up language-selector-common (0.226) ... 183s Setting up ubuntu-wallpapers (24.10.3) ... 183s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 183s Setting up libavahi-glib1:s390x (0.8-14ubuntu1) ... 183s Setting up gir1.2-gnomebluetooth-3.0:s390x (47.1-1) ... 183s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 183s Setting up libsndfile1:s390x (1.2.2-2) ... 183s Setting up libgexiv2-2:s390x (0.14.3-1build1) ... 183s Setting up libldb2:s390x (2:2.9.1+samba4.20.4+dfsg-1ubuntu5) ... 183s Setting up libsm6:s390x (2:1.2.4-1) ... 183s Setting up libpipewire-0.3-0t64:s390x (1.2.7-1ubuntu5) ... 183s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 183s Setting up libpoppler145:s390x (25.01.0-4) ... 183s Setting up libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 183s Setting up libinput10:s390x (1.26.2-1) ... 183s Setting up glib-networking-services (2.80.1-1) ... 183s Setting up gtk-update-icon-cache (4.17.1+ds-2ubuntu1) ... 183s Setting up libcanberra0:s390x (0.30-17ubuntu1) ... 183s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 185s Regenerating fonts cache... done. 185s Setting up libxft2:s390x (2.3.6-1build1) ... 185s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 185s Setting up libglx0:s390x (1.7.0-1build1) ... 185s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 185s Setting up gir1.2-gdkpixbuf-2.0:s390x (2.42.12+dfsg-2) ... 185s Setting up libgdm1 (48~beta-1ubuntu1) ... 185s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 185s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 185s Setting up libwireplumber-0.5-0:s390x (0.5.8-1) ... 185s Setting up libgsound0t64:s390x (1.0.3-3.2build2) ... 185s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 185s Setting up libpam-pwquality:s390x (1.4.5-4) ... 185s Setting up gnome-shell-common (47.0-2ubuntu3.1) ... 185s Setting up samba-libs:s390x (2:4.20.4+dfsg-1ubuntu5) ... 185s Setting up nautilus-data (1:47.1-1ubuntu1) ... 185s Setting up python3-sss (2.10.1-2ubuntu2) ... 186s Setting up libcairo2:s390x (1.18.2-2) ... 186s Setting up webp-pixbuf-loader:s390x (0.2.7-1) ... 186s Setting up libpoppler-glib8t64:s390x (25.01.0-4) ... 186s Setting up mutter-common (47.4-1ubuntu2) ... 186s Setting up libgxps2t64:s390x (0.3.2-4build3) ... 186s Setting up libgl1:s390x (1.7.0-1build1) ... 186s Setting up libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 186s Setting up gnome-control-center-data (1:47.3-1ubuntu1) ... 186s Setting up libnotify4:s390x (0.8.3-1build2) ... 186s Setting up libpulse-mainloop-glib0:s390x (1:17.0+dfsg1-2ubuntu1) ... 186s Setting up libunity9 (7.1.4+19.04.20190319-6.1) ... 186s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 186s Setting up libnma-common (1.10.6-5) ... 186s Setting up libgweather-4-common (4.4.4-1) ... 186s Setting up cpp (4:14.2.0-1ubuntu1) ... 186s Setting up libtheora0:s390x (1.2.0~alpha1+dfsg-5) ... 186s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 186s Setting up libgtk-4-common (4.17.1+ds-2ubuntu1) ... 186s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 186s Setting up libsmbclient0:s390x (2:4.20.4+dfsg-1ubuntu5) ... 186s Setting up evolution-data-server-common (3.55.2-1) ... 186s Setting up libpam-sss:s390x (2.10.1-2ubuntu2) ... 186s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 186s Setting up libgtk-3-common (3.24.48-3ubuntu1) ... 186s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 186s Setting up libgoa-1.0-common (3.53.1-1) ... 186s Setting up libcairo-script-interpreter2:s390x (1.18.2-2) ... 186s Setting up gsettings-desktop-schemas (48~beta-1ubuntu1) ... 186s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 186s Setting up gir1.2-freedesktop:s390x (1.82.0-4) ... 186s Setting up libgjs0g:s390x (1.82.1-1) ... 186s Setting up libpangoxft-1.0-0:s390x (1.56.1-1) ... 186s Setting up gnome-settings-daemon-common (48~beta-1ubuntu1) ... 186s Setting up sssd-common (2.10.1-2ubuntu2) ... 186s Creating SSSD system user & group... 186s warn: The home directory `/var/lib/sss' already exists. Not touching this directory. 186s warn: Warning: The home directory `/var/lib/sss' does not belong to the user you are currently creating. 186s Warning: found usr.sbin.sssd in /etc/apparmor.d/force-complain, forcing complain mode 186s Warning from /etc/apparmor.d/usr.sbin.sssd (/etc/apparmor.d/usr.sbin.sssd line 63): Caching disabled for: 'usr.sbin.sssd' due to force complain 186s Created symlink '/etc/systemd/system/sssd.service.wants/sssd-autofs.socket' → '/usr/lib/systemd/system/sssd-autofs.socket'. 186s Created symlink '/etc/systemd/system/sssd.service.wants/sssd-nss.socket' → '/usr/lib/systemd/system/sssd-nss.socket'. 187s Created symlink '/etc/systemd/system/sssd.service.wants/sssd-pam.socket' → '/usr/lib/systemd/system/sssd-pam.socket'. 187s Created symlink '/etc/systemd/system/sssd.service.wants/sssd-ssh.socket' → '/usr/lib/systemd/system/sssd-ssh.socket'. 187s Created symlink '/etc/systemd/system/sssd.service.wants/sssd-sudo.socket' → '/usr/lib/systemd/system/sssd-sudo.socket'. 187s Created symlink '/etc/systemd/system/multi-user.target.wants/sssd.service' → '/usr/lib/systemd/system/sssd.service'. 187s sssd-autofs.service is a disabled or a static unit, not starting it. 187s sssd-nss.service is a disabled or a static unit, not starting it. 187s sssd-pam.service is a disabled or a static unit, not starting it. 187s sssd-ssh.service is a disabled or a static unit, not starting it. 187s sssd-sudo.service is a disabled or a static unit, not starting it. 188s Could not execute systemctl: at /usr/bin/deb-systemd-invoke line 148. 188s Setting up sssd-proxy (2.10.1-2ubuntu2) ... 188s Setting up gir1.2-atspi-2.0:s390x (2.55.2-1) ... 188s Setting up libxaw7:s390x (2:1.0.16-1) ... 188s Setting up x11-xserver-utils (7.7+11) ... 188s Setting up gir1.2-harfbuzz-0.0:s390x (10.2.0-1) ... 188s Setting up librsvg2-2:s390x (2.59.2+dfsg-1) ... 188s Setting up gir1.2-pango-1.0:s390x (1.56.1-1) ... 188s Setting up libgstreamer-gl1.0-0:s390x (1.25.1-2) ... 188s Setting up gstreamer1.0-plugins-base:s390x (1.25.1-2) ... 188s Setting up sssd-ad-common (2.10.1-2ubuntu2) ... 188s Created symlink '/etc/systemd/system/sssd.service.wants/sssd-pac.socket' → '/usr/lib/systemd/system/sssd-pac.socket'. 188s sssd-pac.service is a disabled or a static unit, not starting it. 188s Could not execute systemctl: at /usr/bin/deb-systemd-invoke line 148. 188s Setting up sssd-krb5-common (2.10.1-2ubuntu2) ... 188s Setting up libshout3:s390x (2.4.6-1build2) ... 188s Setting up librsvg2-common:s390x (2.59.2+dfsg-1) ... 188s Setting up sssd-krb5 (2.10.1-2ubuntu2) ... 188s Setting up gir1.2-rsvg-2.0:s390x (2.59.2+dfsg-1) ... 188s Setting up sssd-ldap (2.10.1-2ubuntu2) ... 188s Setting up sssd-ad (2.10.1-2ubuntu2) ... 188s Setting up x11-xkb-utils (7.7+9) ... 188s Setting up sssd-ipa (2.10.1-2ubuntu2) ... 188s Setting up xserver-common (2:21.1.14-2ubuntu1) ... 188s Setting up sssd (2.10.1-2ubuntu2) ... 188s Setting up xwayland (2:24.1.5-1) ... 188s Setting up libheif1:s390x (1.19.5-1build1) ... 188s Setting up adwaita-icon-theme (48~beta-2) ... 188s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 188s Setting up libgd3:s390x (2.3.3-12ubuntu3) ... 188s Setting up heif-gdk-pixbuf:s390x (1.19.5-1build1) ... 188s Setting up heif-thumbnailer (1.19.5-1build1) ... 188s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 188s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 188s Setting up humanity-icon-theme (0.6.16) ... 188s Setting up libgphoto2-6t64:s390x (2.5.31-4) ... 188s Setting up ubuntu-mono (24.04-0ubuntu1) ... 188s Setting up libsane1:s390x (1.3.1-1) ... 188s No diversion 'diversion of /lib/udev/hwdb.d/20-sane.hwdb to /lib/udev/hwdb.d/20-sane.hwdb.usr-is-merged by usr-is-merged', none removed. 188s No diversion 'diversion of /lib/udev/rules.d/60-libsane1.rules to /lib/udev/rules.d/60-libsane1.rules.usr-is-merged by usr-is-merged', none removed. 188s No diversion 'diversion of /lib/udev/rules.d/99-libsane1.rules to /lib/udev/rules.d/99-libsane1.rules.usr-is-merged by usr-is-merged', none removed. 188s Adding scanner group... 188s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 188s Processing triggers for dbus (1.14.10-4ubuntu5) ... 188s Setting up libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 188s Processing triggers for udev (257.2-3ubuntu1) ... 189s Setting up libgoa-1.0-0b:s390x (3.53.1-1) ... 189s Setting up gvfs-libs:s390x (1.56.1-1ubuntu1) ... 189s Setting up libgtk-4-1:s390x (4.17.1+ds-2ubuntu1) ... 189s Setting up gir1.2-gdm-1.0 (48~beta-1ubuntu1) ... 189s Setting up glib-networking:s390x (2.80.1-1) ... 189s Setting up xdg-user-dirs-gtk (0.14-1) ... 189s Setting up libportal-gtk4-1:s390x (0.9.0-1) ... 189s Setting up gir1.2-gtk-4.0:s390x (4.17.1+ds-2ubuntu1) ... 189s Setting up libnma-gtk4-0:s390x (1.10.6-5) ... 189s Setting up libcolord-gtk4-1t64:s390x (0.3.1-1build2) ... 189s Processing triggers for libc-bin (2.40-4ubuntu1) ... 189s Setting up libsoup-3.0-0:s390x (3.6.4-2) ... 189s Setting up gir1.2-gtk-3.0:s390x (3.24.48-3ubuntu1) ... 189s Setting up libcanberra-gtk3-0:s390x (0.30-17ubuntu1) ... 189s Setting up geoclue-2.0 (2.7.2-2ubuntu1) ... 189s geoclue.service is a disabled or a static unit, not starting it. 189s Processing triggers for systemd (257.2-3ubuntu1) ... 189s Setting up gir1.2-nma4-1.0:s390x (1.10.6-5) ... 189s Setting up libadwaita-1-0:s390x (1.6.2-1ubuntu1) ... 189s Setting up libvte-2.91-0:s390x (0.78.3-3) ... 189s Processing triggers for man-db (2.13.0-1) ... 190s Setting up libgnome-desktop-3-20t64:s390x (44.1-2) ... 190s Setting up gvfs-daemons (1.56.1-1ubuntu1) ... 190s Setting up libgnome-desktop-4-2t64:s390x (44.1-2) ... 190s Setting up tecla (47.0-1) ... 190s Setting up libgeocode-glib-2-0:s390x (3.26.3-6build3) ... 190s Setting up mutter-common-bin (47.4-1ubuntu2) ... 190s Setting up gir1.2-soup-3.0:s390x (3.6.4-2) ... 190s Setting up librest-1.0-0:s390x (0.9.1-6build3) ... 190s Setting up libgnome-rr-4-2t64:s390x (44.1-2) ... 190s Setting up libsnapd-glib-2-1:s390x (1.66-0ubuntu1) ... 190s Setting up libgtk-4-media-gstreamer (4.17.1+ds-2ubuntu1) ... 190s Setting up gir1.2-vte-2.91:s390x (0.78.3-3) ... 190s Setting up gir1.2-gnomedesktop-4.0:s390x (44.1-2) ... 190s Setting up libgoa-backend-1.0-2:s390x (3.53.1-1) ... 190s Setting up libedataserver-1.2-27t64:s390x (3.55.2-1) ... 190s Setting up libgweather-4-0t64:s390x (4.4.4-1) ... 190s Setting up libgeoclue-2-0:s390x (2.7.2-2ubuntu1) ... 190s Setting up gvfs:s390x (1.56.1-1ubuntu1) ... 190s Setting up gnome-online-accounts (3.53.1-1) ... 190s Setting up gstreamer1.0-plugins-good:s390x (1.24.10-1ubuntu3) ... 190s Setting up libtracker-sparql-3.0-0:s390x (3.7.3-2build1) ... 190s Setting up libmutter-15-0:s390x (47.4-1ubuntu2) ... 190s Setting up gnome-session-bin (47.0.1-1ubuntu1) ... 190s update-alternatives: using /usr/bin/gnome-session to provide /usr/bin/x-session-manager (x-session-manager) in auto mode 190s Setting up gir1.2-adw-1:s390x (1.6.2-1ubuntu1) ... 190s Setting up gir1.2-gweather-4.0:s390x (4.4.4-1) ... 190s Setting up libgnome-bg-4-2t64:s390x (44.1-2) ... 190s Setting up libpipewire-0.3-modules:s390x (1.2.7-1ubuntu5) ... 190s Setting up gir1.2-geoclue-2.0:s390x (2.7.2-2ubuntu1) ... 190s Setting up gir1.2-mutter-15:s390x (47.4-1ubuntu2) ... 190s Setting up libecal-2.0-3:s390x (3.55.2-1) ... 190s Setting up tracker (3.7.3-2build1) ... 190s Setting up gir1.2-gnomebg-4.0:s390x (44.1-2) ... 190s Setting up xdg-desktop-portal (1.19.2+ds-1ubuntu1) ... 190s Created symlink '/etc/systemd/user/graphical-session-pre.target.wants/xdg-desktop-portal-rewrite-launchers.service' → '/usr/lib/systemd/user/xdg-desktop-portal-rewrite-launchers.service'. 190s Setting up tracker-extract (3.7.4-1build1) ... 190s Setting up tracker-miner-fs (3.7.4-1build1) ... 191s Created symlink '/etc/systemd/user/gnome-session.target.wants/tracker-miner-fs-3.service' → '/usr/lib/systemd/user/tracker-miner-fs-3.service'. 191s Setting up pipewire-bin (1.2.7-1ubuntu5) ... 191s Setting up pipewire:s390x (1.2.7-1ubuntu5) ... 191s Created symlink '/etc/systemd/user/default.target.wants/filter-chain.service' → '/usr/lib/systemd/user/filter-chain.service'. 191s Created symlink '/etc/systemd/user/sockets.target.wants/pipewire.socket' → '/usr/lib/systemd/user/pipewire.socket'. 191s Created symlink '/etc/systemd/user/default.target.wants/pipewire.service' → '/usr/lib/systemd/user/pipewire.service'. 191s Setting up nautilus (1:47.1-1ubuntu1) ... 191s Setting up xdg-desktop-portal-gtk (1.15.2-1) ... 191s Setting up xdg-desktop-portal-gnome (47.1-4ubuntu1) ... 191s Setting up gstreamer1.0-pipewire:s390x (1.2.7-1ubuntu5) ... 191s Setting up pipewire-alsa:s390x (1.2.7-1ubuntu5) ... 191s Setting up wireplumber (0.5.8-1) ... 191s Created symlink '/etc/systemd/user/pipewire.service.wants/wireplumber.service' → '/usr/lib/systemd/user/wireplumber.service'. 191s Setting up pipewire-pulse (1.2.7-1ubuntu5) ... 191s Created symlink '/etc/systemd/user/default.target.wants/pipewire-pulse.service' → '/usr/lib/systemd/user/pipewire-pulse.service'. 191s Created symlink '/etc/systemd/user/sockets.target.wants/pipewire-pulse.socket' → '/usr/lib/systemd/user/pipewire-pulse.socket'. 191s Setting up pipewire-audio (1.2.7-1ubuntu5) ... 191s Setting up gnome-settings-daemon (48~beta-1ubuntu1) ... 191s Processing triggers for sgml-base (1.31) ... 191s Setting up polkitd (126-2) ... 192s Setting up aptdaemon (2.0.1) ... 192s Setting up python3-aptdaemon (2.0.1) ... 192s Setting up colord (1.4.7-1build2) ... 192s colord.service is a disabled or a static unit, not starting it. 192s Setting up python3-aptdaemon.gtk3widgets (2.0.1) ... 192s Setting up language-selector-gnome (0.226) ... 192s Setting up gnome-control-center (1:47.3-1ubuntu1) ... 192s Setting up gnome-shell (47.0-2ubuntu3.1) ... 192s Setting up ubuntu-session (47.0.1-1ubuntu1) ... 192s Setting up gdm3 (48~beta-1ubuntu1) ... 193s Creating config file /etc/gdm3/greeter.dconf-defaults with new version 193s update-alternatives: using /etc/pam.d/gdm-smartcard-sssd-exclusive to provide /etc/pam.d/gdm-smartcard (gdm-smartcard) in auto mode 193s Processing triggers for libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 193s Processing triggers for libc-bin (2.40-4ubuntu1) ... 193s Processing triggers for dbus (1.14.10-4ubuntu5) ... 193s autopkgtest: DBG: testbed command exited with code 0 193s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'gdm3'], kind short, sout pipe, serr pipe, env [] 193s autopkgtest: DBG: testbed command exited with code 0 193s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'id -Gn'], kind short, sout pipe, serr pipe, env [] 193s autopkgtest: DBG: testbed command exited with code 0 193s autopkgtest: DBG: User "ubuntu" groups include sudo (ubuntu adm cdrom sudo dip lxd cpacfstats) 193s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'sudo -n true'], kind short, sout pipe, serr pipe, env [] 194s autopkgtest: DBG: testbed command exited with code 0 194s autopkgtest: DBG: sudo -n true stdout: 194s autopkgtest: DBG: sudo -n true stderr: 194s autopkgtest: DBG: sudo -n true status: 0 194s autopkgtest: DBG: User "ubuntu" can already sudo without password 194s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-packages.all"], kind short, sout raw, serr pipe, env [] 194s autopkgtest: DBG: testbed command exited with code 0 194s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-packages.all /tmp/autopkgtest-work.rdbsu32v/out/sssd-gdm-smartcard-auth-test-packages.all 194s autopkgtest: DBG: got reply from testbed: ok 194s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.ply29s/build.z4X/src'], kind short, sout raw, serr raw, env [] 194s autopkgtest: DBG: testbed command exited with code 0 194s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.ply29s/build.z4X/src already exists 194s autopkgtest [15:14:21]: test sssd-gdm-smartcard-auth-test: sudo env OFFLINE_MODE=1 GDM_USER=gdm bash debian/tests/sssd-gdm-smartcard-pam-auth-tester.sh 194s autopkgtest [15:14:21]: test sssd-gdm-smartcard-auth-test: [----------------------- 194s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.ply29s/wrapper.sh --debug --artifacts=/tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-artifacts --chdir=/tmp/autopkgtest.ply29s/build.z4X/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.ply29s/sssd-gdm-smartcard-auth-test-stderr --stdout=/tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-stdout --tmp=/tmp/autopkgtest.ply29s/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=tilix/1.9.6-2build2 -- bash -ec 'sudo env OFFLINE_MODE=1 GDM_USER=gdm bash debian/tests/sssd-gdm-smartcard-pam-auth-tester.sh'"], kind test, sout raw, serr raw, env [] 194s /tmp/autopkgtest.ply29s/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-artifacts 194s /tmp/autopkgtest.ply29s/wrapper.sh: changing to directory: /tmp/autopkgtest.ply29s/build.z4X/src 194s /tmp/autopkgtest.ply29s/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 194s /tmp/autopkgtest.ply29s/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 194s /tmp/autopkgtest.ply29s/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 194s /tmp/autopkgtest.ply29s/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 194s /tmp/autopkgtest.ply29s/wrapper.sh: setting environment: LANG=C.UTF-8 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LANGUAGE 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_ADDRESS 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_ALL 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_COLLATE 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_CTYPE 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_IDENTIFICATION 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_MEASUREMENT 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_MESSAGES 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_MONETARY 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_NAME 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_NUMERIC 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_PAPER 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_TELEPHONE 194s /tmp/autopkgtest.ply29s/wrapper.sh: unsetting environment: LC_TIME 194s /tmp/autopkgtest.ply29s/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 194s /tmp/autopkgtest.ply29s/wrapper.sh: pretending to be a login shell 194s /tmp/autopkgtest.ply29s/wrapper.sh: will write standard error to /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-stderr 194s /tmp/autopkgtest.ply29s/wrapper.sh: will write stdout to /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-stdout 194s /tmp/autopkgtest.ply29s/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.ply29s/autopkgtest_tmp 194s /tmp/autopkgtest.ply29s/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=tilix/1.9.6-2build2 194s /tmp/autopkgtest.ply29s/wrapper.sh: command to run: bash -ec sudo env OFFLINE_MODE=1 GDM_USER=gdm bash debian/tests/sssd-gdm-smartcard-pam-auth-tester.sh 194s /tmp/autopkgtest.ply29s/wrapper.sh: copying /tmp/tmp.74uAsOht90/out to stdout and file: /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-stdout 194s /tmp/autopkgtest.ply29s/wrapper.sh: copying /tmp/tmp.74uAsOht90/err to standard error and file: /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-stdout 194s /tmp/autopkgtest.ply29s/wrapper.sh: writing script pid 7443 to /tmp/autopkgtest_script_pid 194s + required_tools=(gdm3 pamtester softhsm2-util sssd) 194s + [[ ! -v OFFLINE_MODE ]] 194s ++ id -u 194s + '[' 0 '!=' 0 ']' 194s + '[' -z ubuntu ']' 194s + for cmd in "${required_tools[@]}" 194s + command -v gdm3 194s + for cmd in "${required_tools[@]}" 194s + command -v pamtester 194s + for cmd in "${required_tools[@]}" 194s + command -v softhsm2-util 194s + for cmd in "${required_tools[@]}" 194s + command -v sssd 194s + [[ -v WAIT ]] 194s + PIN=9812 194s + GDM_USER=gdm 194s ++ mktemp -d -t sssd-softhsm2-gdm-certs-XXXXXX 194s + tmpdir=/tmp/sssd-softhsm2-gdm-certs-bFqJSU 194s + backupsdir= 194s + alternative_pam_configs=(/etc/pam.d/gdm-smartcard-sssd-exclusive /etc/pam.d/gdm-smartcard-sssd-or-password) 194s + declare -a restore_paths 194s + declare -a delete_paths 194s + trap handle_exit EXIT 194s ++ dirname debian/tests/sssd-gdm-smartcard-pam-auth-tester.sh 194s + tester=debian/tests/sssd-softhism2-certificates-tests.sh 194s + '[' '!' -e debian/tests/sssd-softhism2-certificates-tests.sh ']' 194s + '[' '!' -e debian/tests/sssd-softhism2-certificates-tests.sh ']' 194s + export PIN TEST_TMPDIR=/tmp/sssd-softhsm2-gdm-certs-bFqJSU GENERATE_SMART_CARDS=1 KEEP_TEMPORARY_FILES=1 NO_SSSD_TESTS=1 194s + TEST_TMPDIR=/tmp/sssd-softhsm2-gdm-certs-bFqJSU 194s + GENERATE_SMART_CARDS=1 194s + KEEP_TEMPORARY_FILES=1 194s + NO_SSSD_TESTS=1 194s + bash debian/tests/sssd-softhism2-certificates-tests.sh 194s + required_tools=(p11tool openssl softhsm2-util) 194s + for cmd in "${required_tools[@]}" 194s + command -v p11tool 194s + for cmd in "${required_tools[@]}" 194s + command -v openssl 194s + for cmd in "${required_tools[@]}" 194s + command -v softhsm2-util 194s + PIN=9812 194s +++ find /usr/lib/softhsm/libsofthsm2.so 194s +++ head -n 1 194s ++ realpath /usr/lib/softhsm/libsofthsm2.so 194s + SOFTHSM2_MODULE=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so 194s + SSSD_P11_CHILD=/usr/libexec/sssd/p11_child 194s + TOKEN_ID=00112233445566778899FFAABBCCDDEEFF012345 194s + '[' '!' -v NO_SSSD_TESTS ']' 194s + '[' '!' -e /usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so ']' 194s + tmpdir=/tmp/sssd-softhsm2-gdm-certs-bFqJSU 194s + keys_size=1024 194s + [[ ! -v KEEP_TEMPORARY_FILES ]] 194s + trap 'set +x; echo -e "\nUnexpected failure!!!"' ERR 194s + echo -n 01 194s + touch /tmp/sssd-softhsm2-gdm-certs-bFqJSU/index.txt 194s + mkdir -p /tmp/sssd-softhsm2-gdm-certs-bFqJSU/new_certs 194s + cat 194s + root_ca_key_pass=pass:random-root-CA-password-28485 194s + openssl genrsa -aes256 -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-key.pem -passout pass:random-root-CA-password-28485 1024 194s + openssl req -passin pass:random-root-CA-password-28485 -batch -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.config -x509 -new -nodes -key /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-key.pem -sha256 -days 1024 -set_serial 0 -extensions v3_ca -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.pem 194s + openssl x509 -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.pem 194s + cat 194s + intermediate_ca_key_pass=pass:random-intermediate-CA-password-24802 194s + openssl genrsa -aes256 -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-key.pem -passout pass:random-intermediate-CA-password-24802 1024 194s + openssl req -batch -new -nodes -passin pass:random-intermediate-CA-password-24802 -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.config -key /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-key.pem -passout pass:random-root-CA-password-28485 -sha256 -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-certificate-request.pem 195s + openssl req -text -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-certificate-request.pem 195s Certificate Request: 195s Data: 195s Version: 1 (0x0) 195s Subject: O=Test Organization, OU=Test Organization Unit, CN=Test Organization Intermediate CA 195s Subject Public Key Info: 195s Public Key Algorithm: rsaEncryption 195s Public-Key: (1024 bit) 195s Modulus: 195s 00:c3:85:d5:ce:84:b4:1d:cf:74:4b:23:f5:dc:b0: 195s 5c:bd:cc:41:20:ed:6e:bc:36:45:13:60:a8:12:a3: 195s 1e:29:3a:cc:60:db:dd:66:c9:d6:ee:7c:42:e0:c1: 195s a7:94:3a:e9:52:b0:a7:88:f8:52:79:c0:56:0b:91: 195s 84:fe:66:fd:4b:58:3d:1a:3f:ae:ed:61:16:53:ec: 195s 8a:a1:87:fa:f4:1e:89:5c:db:a3:8d:a5:26:32:64: 195s f7:87:f7:e6:18:27:c7:d9:38:46:89:b3:c3:b7:a0: 195s a8:fb:16:45:e5:96:20:08:a5:5c:56:80:95:cc:19: 195s 62:51:dd:d0:40:4e:ed:d1:3d 195s Exponent: 65537 (0x10001) 195s Attributes: 195s (none) 195s Requested Extensions: 195s Signature Algorithm: sha256WithRSAEncryption 195s Signature Value: 195s 7b:af:02:9e:57:49:f1:a3:3a:a5:77:ff:80:fa:55:34:ad:e9: 195s 92:14:62:c8:09:59:99:83:af:04:7a:81:1f:df:5a:d9:7e:56: 195s 32:19:41:ad:a2:34:ff:71:38:e7:9d:f8:9e:67:7d:74:6b:b5: 195s 31:53:f1:77:fa:0f:9f:9b:e4:5a:be:14:63:95:59:45:87:50: 195s 00:b8:03:cf:89:82:74:4d:25:19:85:cd:a0:da:b3:ed:c9:8c: 195s 2f:59:79:ee:01:e5:0c:5e:24:7f:fb:2b:7e:78:a5:7b:74:b0: 195s 39:39:ae:d9:de:29:24:09:7b:bb:cf:e1:5f:25:de:0c:f8:ad: 195s 2b:dd 195s + openssl ca -batch -notext -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.config -passin pass:random-root-CA-password-28485 -keyfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-key.pem -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-certificate-request.pem -days 365 -extensions v3_intermediate_ca -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem 195s Using configuration from /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.config 195s Check that the request matches the signature 195s Signature ok 195s Certificate Details: 195s Serial Number: 1 (0x1) 195s Validity 195s Not Before: Feb 12 15:14:21 2025 GMT 195s Not After : Feb 12 15:14:21 2026 GMT 195s Subject: 195s organizationName = Test Organization 195s organizationalUnitName = Test Organization Unit 195s commonName = Test Organization Intermediate CA 195s X509v3 extensions: 195s X509v3 Subject Key Identifier: 195s D9:3C:64:CE:47:48:70:C6:BC:10:2F:AB:8F:3F:F0:6D:AD:18:1B:77 195s X509v3 Authority Key Identifier: 195s keyid:55:D7:9C:49:D4:3E:AE:A8:7C:AA:0A:69:BE:38:6A:AE:28:E1:1E:12 195s DirName:/O=Test Organization/OU=Test Organization Unit/CN=Test Organization Root CA 195s serial:00 195s X509v3 Basic Constraints: 195s CA:TRUE 195s X509v3 Key Usage: critical 195s Digital Signature, Certificate Sign, CRL Sign 195s Certificate is to be certified until Feb 12 15:14:21 2026 GMT (365 days) 195s 195s Write out database with 1 new entries 195s Database updated 195s + openssl x509 -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem: OK 195s + cat 195s + sub_intermediate_ca_key_pass=pass:random-sub-intermediate-CA-password-21813 195s + openssl genrsa -aes256 -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-key.pem -passout pass:random-sub-intermediate-CA-password-21813 1024 195s + openssl req -batch -new -nodes -passin pass:random-sub-intermediate-CA-password-21813 -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.config -key /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-key.pem -passout pass:random-intermediate-CA-password-24802 -sha256 -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-certificate-request.pem 195s + openssl req -text -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-certificate-request.pem 195s Certificate Request: 195s Data: 195s Version: 1 (0x0) 195s Subject: O=Test Organization, OU=Test Organization Unit, CN=Test Organization Sub Intermediate CA 195s Subject Public Key Info: 195s Public Key Algorithm: rsaEncryption 195s Public-Key: (1024 bit) 195s Modulus: 195s 00:c0:91:99:37:de:08:f5:4c:0d:eb:9c:28:1e:b6: 195s 93:48:e0:d3:c2:51:4a:b3:a5:e6:bd:63:1c:c1:6d: 195s a0:64:30:3a:63:9a:67:73:3f:7b:84:3b:aa:ed:a6: 195s 0e:07:2a:3e:6a:03:6a:91:e2:0e:a5:e6:28:e8:47: 195s 0c:4d:d4:f2:4c:0e:eb:a2:40:b0:e0:9e:c3:ac:20: 195s 6d:4c:05:2a:65:fd:9a:23:4f:ba:20:56:cc:39:e7: 195s a7:89:06:6a:c9:2d:3b:f7:59:8b:0d:12:03:98:1d: 195s 56:ce:a8:bf:e3:79:a9:f0:24:62:ec:2c:40:74:b2: 195s af:e0:7c:49:fb:ba:ce:da:91 195s Exponent: 65537 (0x10001) 195s Attributes: 195s (none) 195s Requested Extensions: 195s Signature Algorithm: sha256WithRSAEncryption 195s Signature Value: 195s 15:95:0d:93:6d:ad:bd:e5:34:c5:c2:b4:47:ee:09:7e:34:e3: 195s eb:c8:bf:ce:f5:4f:5e:b9:0f:dd:28:8c:db:22:ef:30:c2:ff: 195s 19:6e:e6:f6:7b:d7:3a:1c:c0:36:3b:cb:47:46:24:56:1f:0a: 195s f5:d5:03:0d:ac:64:46:6b:14:58:1f:9f:a1:ec:01:25:0a:e3: 195s db:c9:5c:7e:4e:a5:07:16:37:31:91:81:de:57:13:64:bd:ea: 195s 52:55:cd:29:dc:b4:31:90:9c:63:c0:49:5d:c0:7d:f8:e5:a6: 195s 44:e5:09:09:f2:3c:56:2f:da:27:ac:dd:37:75:60:f6:bc:02: 195s fb:a9 195s + openssl ca -batch -notext -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.config -passin pass:random-intermediate-CA-password-24802 -keyfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-key.pem -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-certificate-request.pem -days 365 -extensions v3_intermediate_ca -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 195s Using configuration from /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.config 195s Check that the request matches the signature 195s Signature ok 195s Certificate Details: 195s Serial Number: 2 (0x2) 195s Validity 195s Not Before: Feb 12 15:14:22 2025 GMT 195s Not After : Feb 12 15:14:22 2026 GMT 195s Subject: 195s organizationName = Test Organization 195s organizationalUnitName = Test Organization Unit 195s commonName = Test Organization Sub Intermediate CA 195s X509v3 extensions: 195s X509v3 Subject Key Identifier: 195s F6:FF:81:B5:07:05:71:4C:39:7E:28:67:FF:61:EB:E1:01:59:77:E1 195s X509v3 Authority Key Identifier: 195s keyid:D9:3C:64:CE:47:48:70:C6:BC:10:2F:AB:8F:3F:F0:6D:AD:18:1B:77 195s DirName:/O=Test Organization/OU=Test Organization Unit/CN=Test Organization Root CA 195s serial:01 195s X509v3 Basic Constraints: 195s CA:TRUE 195s X509v3 Key Usage: critical 195s Digital Signature, Certificate Sign, CRL Sign 195s Certificate is to be certified until Feb 12 15:14:22 2026 GMT (365 days) 195s 195s Write out database with 1 new entries 195s Database updated 195s + openssl x509 -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 195s + openssl verify -partial_chain -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem: OK 195s + expect_fail openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 195s + local cmd=openssl 195s + shift 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 195s O=Test Organization, OU=Test Organization Unit, CN=Test Organization Sub Intermediate CA 195s error 20 at 0 depth lookup: unable to get local issuer certificate 195s error /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem: verification failed 195s + cat 195s + root_ca_trusted_cert_0001_key_pass=pass:random-root-ca-trusted-cert-0001-24070 195s + openssl genrsa -aes256 -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-key.pem -passout pass:random-root-ca-trusted-cert-0001-24070 1024 195s + openssl req -new -nodes -reqexts req_exts -passin pass:random-root-ca-trusted-cert-0001-24070 -key /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-key.pem -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.config -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-request.pem 195s + openssl req -text -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-request.pem 195s Certificate Request: 195s Data: 195s Version: 1 (0x0) 195s Subject: O=Test Organization, OU=Test Organization Unit, CN=Test Organization Root Trusted Certificate 0001 195s Subject Public Key Info: 195s Public Key Algorithm: rsaEncryption 195s Public-Key: (1024 bit) 195s Modulus: 195s 00:f7:76:61:16:f9:1f:8d:db:b5:18:6b:fd:5d:54: 195s 35:ab:20:0c:85:15:85:3b:62:a1:78:1e:2d:7b:08: 195s ec:eb:2d:df:c4:de:8a:a1:16:67:48:87:28:39:1c: 195s 3e:3c:86:e9:b6:32:6a:d1:ee:68:ef:9c:93:13:2e: 195s d5:5b:e6:49:f3:0f:e2:af:1a:d4:a3:2f:bb:58:36: 195s 52:fb:1c:a0:cd:d8:2d:d3:68:f2:c8:5d:f0:ef:b5: 195s d0:51:c0:58:1b:79:6e:a1:a9:48:ed:43:40:ec:c4: 195s 05:04:11:db:96:31:17:1a:c3:70:91:7f:81:59:97: 195s 0b:d8:4d:0f:b6:e1:cb:bb:85 195s Exponent: 65537 (0x10001) 195s Attributes: 195s Requested Extensions: 195s X509v3 Basic Constraints: 195s CA:FALSE 195s Netscape Cert Type: 195s SSL Client, S/MIME 195s Netscape Comment: 195s Test Organization Root CA trusted Certificate 195s X509v3 Subject Key Identifier: 195s 29:68:48:96:D2:72:47:77:95:70:E9:5A:77:87:94:B0:62:B7:67:ED 195s X509v3 Key Usage: critical 195s Digital Signature, Non Repudiation, Key Encipherment 195s X509v3 Extended Key Usage: 195s TLS Web Client Authentication, E-mail Protection 195s X509v3 Subject Alternative Name: 195s email:mail@3v1n0.net, URI:https://github.com/3v1n0/ 195s Signature Algorithm: sha256WithRSAEncryption 195s Signature Value: 195s 30:20:a3:10:d5:0b:bc:7f:84:45:f8:fb:96:29:8c:61:2b:50: 195s e6:a1:61:e8:7a:ac:53:da:42:b2:df:c0:02:3d:cc:c2:7d:a2: 195s 1c:b3:5a:c3:1a:cf:34:91:98:4f:a9:ff:1d:70:0b:5a:e2:5b: 195s 0c:46:99:c6:97:c2:0f:f7:95:a5:4b:c2:d4:33:99:38:c9:2b: 195s e9:5b:15:1f:e6:67:ac:e1:5d:3c:93:34:f3:a1:a9:51:c1:93: 195s 0c:64:4e:a3:bc:f8:27:e6:5f:b8:97:cb:f2:3a:13:8b:58:19: 195s 93:dc:f8:1c:ab:d2:a1:46:ee:1a:bc:79:0a:54:d4:c2:ca:ca: 195s ce:61 195s + openssl ca -batch -notext -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.config -passin pass:random-root-CA-password-28485 -keyfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-key.pem -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-request.pem -days 365 -extensions usr_cert -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem 195s Using configuration from /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.config 195s Check that the request matches the signature 195s Signature ok 195s Certificate Details: 195s Serial Number: 3 (0x3) 195s Validity 195s Not Before: Feb 12 15:14:22 2025 GMT 195s Not After : Feb 12 15:14:22 2026 GMT 195s Subject: 195s organizationName = Test Organization 195s organizationalUnitName = Test Organization Unit 195s commonName = Test Organization Root Trusted Certificate 0001 195s X509v3 extensions: 195s X509v3 Authority Key Identifier: 195s 55:D7:9C:49:D4:3E:AE:A8:7C:AA:0A:69:BE:38:6A:AE:28:E1:1E:12 195s X509v3 Basic Constraints: 195s CA:FALSE 195s Netscape Cert Type: 195s SSL Client, S/MIME 195s Netscape Comment: 195s Test Organization Root CA trusted Certificate 195s X509v3 Subject Key Identifier: 195s 29:68:48:96:D2:72:47:77:95:70:E9:5A:77:87:94:B0:62:B7:67:ED 195s X509v3 Key Usage: critical 195s Digital Signature, Non Repudiation, Key Encipherment 195s X509v3 Extended Key Usage: 195s TLS Web Client Authentication, E-mail Protection 195s X509v3 Subject Alternative Name: 195s email:mail@3v1n0.net, URI:https://github.com/3v1n0/ 195s Certificate is to be certified until Feb 12 15:14:22 2026 GMT (365 days) 195s 195s Write out database with 1 new entries 195s Database updated 195s + openssl x509 -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem: OK 195s + expect_fail openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem 195s + local cmd=openssl 195s + shift 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem 195s O=Test Organization, OU=Test Organization Unit, CN=Test Organization Root Trusted Certificate 0001 195s error 20 at 0 depth lookup: unable to get local issuer certificate 195s error /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem: verification failed 195s + cat 195s + intermediate_ca_trusted_cert_0001_key_pass=pass:random-intermediate-ca-trusted-cert-0001-8299 195s + openssl genrsa -aes256 -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-key.pem -passout pass:random-intermediate-ca-trusted-cert-0001-8299 1024 195s + openssl req -new -nodes -reqexts req_exts -passin pass:random-intermediate-ca-trusted-cert-0001-8299 -key /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-key.pem -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.config -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-request.pem 195s + openssl req -text -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-request.pem 195s Certificate Request: 195s Data: 195s Version: 1 (0x0) 195s Subject: O=Test Organization, OU=Test Organization Unit, CN=Test Organization Intermediate Trusted Certificate 0001 195s Subject Public Key Info: 195s Public Key Algorithm: rsaEncryption 195s Public-Key: (1024 bit) 195s Modulus: 195s 00:d6:6d:0f:73:0a:2e:f3:aa:8b:0b:73:cd:db:53: 195s 82:a3:51:ad:ad:53:2b:97:ec:1f:0f:79:bf:82:4a: 195s ba:27:db:83:ab:a6:47:d5:46:6b:a7:0b:d1:28:50: 195s c3:3c:97:47:b1:16:16:33:17:c4:0f:3c:fc:47:9e: 195s 64:b3:50:79:28:e6:f3:5a:58:d2:2a:0f:1a:79:e4: 195s 8d:1b:a3:e7:3f:18:5d:b5:f8:1e:d7:b5:3a:e1:65: 195s b5:ed:4c:a0:db:9f:b0:a7:e2:58:3c:8b:52:4e:f0: 195s a4:bb:ee:fd:b8:bd:83:46:ca:10:87:86:33:0f:58: 195s f4:0e:36:f0:d0:86:20:e1:6d 195s Exponent: 65537 (0x10001) 195s Attributes: 195s Requested Extensions: 195s X509v3 Basic Constraints: 195s CA:FALSE 195s Netscape Cert Type: 195s SSL Client, S/MIME 195s Netscape Comment: 195s Test Organization Intermediate CA trusted Certificate 195s X509v3 Subject Key Identifier: 195s D7:A5:52:8C:DB:E3:7F:9C:22:0E:76:00:36:9F:2C:7B:02:C6:BE:6A 195s X509v3 Key Usage: critical 195s Digital Signature, Non Repudiation, Key Encipherment 195s X509v3 Extended Key Usage: 195s TLS Web Client Authentication, E-mail Protection 195s X509v3 Subject Alternative Name: 195s email:mail@3v1n0.net, URI:https://github.com/3v1n0/ 195s Signature Algorithm: sha256WithRSAEncryption 195s Signature Value: 195s ce:40:e8:bb:e4:99:5b:05:97:e1:04:6f:49:ea:05:14:bc:34: 195s 19:ba:f6:36:a1:d3:d5:a5:49:1c:9d:c2:65:72:6b:20:ed:65: 195s f1:0b:f3:fb:9c:90:4e:c0:9e:62:16:e9:8e:e8:4a:94:0c:2d: 195s 24:a1:94:0a:a2:e1:ec:fd:05:e6:a9:d9:90:21:1a:c5:f8:78: 195s 47:34:3e:4d:27:72:bc:f9:00:df:1c:7e:dc:db:1a:95:0f:78: 195s ec:2a:06:65:ee:a1:73:6e:b8:6e:6f:f9:b6:9e:70:a2:11:e5: 195s a8:39:e1:bc:d3:31:6d:84:8c:e8:3d:4b:90:e1:11:5c:3c:56: 195s 93:65 195s + openssl ca -passin pass:random-intermediate-CA-password-24802 -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.config -batch -notext -keyfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-key.pem -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-request.pem -days 365 -extensions usr_cert -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem 195s Using configuration from /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.config 195s Check that the request matches the signature 195s Signature ok 195s Certificate Details: 195s Serial Number: 4 (0x4) 195s Validity 195s Not Before: Feb 12 15:14:22 2025 GMT 195s Not After : Feb 12 15:14:22 2026 GMT 195s Subject: 195s organizationName = Test Organization 195s organizationalUnitName = Test Organization Unit 195s commonName = Test Organization Intermediate Trusted Certificate 0001 195s X509v3 extensions: 195s X509v3 Authority Key Identifier: 195s D9:3C:64:CE:47:48:70:C6:BC:10:2F:AB:8F:3F:F0:6D:AD:18:1B:77 195s X509v3 Basic Constraints: 195s CA:FALSE 195s Netscape Cert Type: 195s SSL Client, S/MIME 195s Netscape Comment: 195s Test Organization Intermediate CA trusted Certificate 195s X509v3 Subject Key Identifier: 195s D7:A5:52:8C:DB:E3:7F:9C:22:0E:76:00:36:9F:2C:7B:02:C6:BE:6A 195s X509v3 Key Usage: critical 195s Digital Signature, Non Repudiation, Key Encipherment 195s X509v3 Extended Key Usage: 195s TLS Web Client Authentication, E-mail Protection 195s X509v3 Subject Alternative Name: 195s email:mail@3v1n0.net, URI:https://github.com/3v1n0/ 195s Certificate is to be certified until Feb 12 15:14:22 2026 GMT (365 days) 195s 195s Write out database with 1 new entries 195s Database updated 195s + openssl x509 -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem 195s + echo 'This certificate should not be trusted fully' 195s This certificate should not be trusted fully 195s + expect_fail openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem 195s + local cmd=openssl 195s + shift 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem 195s O=Test Organization, OU=Test Organization Unit, CN=Test Organization Intermediate CA 195s error 2 at 1 depth lookup: unable to get issuer certificate 195s error /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem: verification failed 195s + openssl verify -partial_chain -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem: OK 195s + cat 195s + sub_intermediate_ca_trusted_cert_0001_key_pass=pass:random-sub-intermediate-ca-trusted-cert-0001-15110 195s + openssl genrsa -aes256 -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-key.pem -passout pass:random-sub-intermediate-ca-trusted-cert-0001-15110 1024 195s + openssl req -new -nodes -reqexts req_exts -passin pass:random-sub-intermediate-ca-trusted-cert-0001-15110 -key /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-key.pem -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.config -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-request.pem 195s + openssl req -text -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-request.pem 195s Certificate Request: 195s Data: 195s Version: 1 (0x0) 195s Subject: O=Test Organization, OU=Test Organization Unit, CN=Test Organization Sub Intermediate Trusted Certificate 0001 195s Subject Public Key Info: 195s Public Key Algorithm: rsaEncryption 195s Public-Key: (1024 bit) 195s Modulus: 195s 00:ab:f6:b6:8e:7c:2a:a7:c0:0e:8e:1c:69:67:c1: 195s cf:23:fa:90:86:62:29:a2:62:0e:36:10:cb:d3:70: 195s 67:26:60:8c:7b:d0:51:ab:ea:b0:95:a5:bc:b6:c7: 195s 33:d5:85:55:70:b3:cd:1a:11:9d:86:5d:76:04:21: 195s 5e:bb:1d:b4:e4:a2:0f:0d:fd:3e:59:30:3d:8e:62: 195s 4b:c3:a7:bf:84:d8:69:01:b4:b0:58:fb:1b:44:a5: 195s 10:49:6a:67:30:72:7c:8c:fd:5d:92:8b:2d:d2:ab: 195s d4:c7:40:7a:77:31:a5:16:45:ef:3f:3d:fb:8d:a2: 195s f7:c3:e2:29:8f:7a:37:ac:83 195s Exponent: 65537 (0x10001) 195s Attributes: 195s Requested Extensions: 195s X509v3 Basic Constraints: 195s CA:FALSE 195s Netscape Cert Type: 195s SSL Client, S/MIME 195s Netscape Comment: 195s Test Organization Sub Intermediate CA trusted Certificate 195s X509v3 Subject Key Identifier: 195s 8E:E0:A7:F0:16:A7:48:F8:30:B2:1E:95:BF:AD:E8:1B:6B:EF:B1:00 195s X509v3 Key Usage: critical 195s Digital Signature, Non Repudiation, Key Encipherment 195s X509v3 Extended Key Usage: 195s TLS Web Client Authentication, E-mail Protection 195s X509v3 Subject Alternative Name: 195s email:mail@3v1n0.net, URI:https://github.com/3v1n0/ 195s Signature Algorithm: sha256WithRSAEncryption 195s Signature Value: 195s 2c:02:b4:33:12:7f:6d:00:01:96:13:d5:3c:76:51:b1:4f:1a: 195s 2d:b8:5d:75:a6:12:5c:c3:c4:6f:6f:0b:7b:bc:45:5a:2a:51: 195s 9c:88:a1:36:8d:5b:b4:ce:7c:07:34:7b:8d:ad:fc:35:81:41: 195s 94:e1:4f:a5:12:c4:b4:fe:53:96:28:03:94:df:3c:bd:00:92: 195s 99:59:62:39:16:4c:09:81:0c:66:cd:a8:8a:2a:35:b7:30:c9: 195s a7:45:f8:9c:f1:12:db:7b:27:ac:74:dd:38:e3:7b:3e:f3:21: 195s 1e:c5:04:eb:3d:3e:37:5f:32:80:0a:35:ad:61:90:90:44:e7: 195s 06:86 195s + openssl ca -passin pass:random-sub-intermediate-CA-password-21813 -config /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.config -batch -notext -keyfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-key.pem -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-request.pem -days 365 -extensions usr_cert -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s Using configuration from /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.config 195s Check that the request matches the signature 195s Signature ok 195s Certificate Details: 195s Serial Number: 5 (0x5) 195s Validity 195s Not Before: Feb 12 15:14:22 2025 GMT 195s Not After : Feb 12 15:14:22 2026 GMT 195s Subject: 195s organizationName = Test Organization 195s organizationalUnitName = Test Organization Unit 195s commonName = Test Organization Sub Intermediate Trusted Certificate 0001 195s X509v3 extensions: 195s X509v3 Authority Key Identifier: 195s F6:FF:81:B5:07:05:71:4C:39:7E:28:67:FF:61:EB:E1:01:59:77:E1 195s X509v3 Basic Constraints: 195s CA:FALSE 195s Netscape Cert Type: 195s SSL Client, S/MIME 195s Netscape Comment: 195s Test Organization Sub Intermediate CA trusted Certificate 195s X509v3 Subject Key Identifier: 195s 8E:E0:A7:F0:16:A7:48:F8:30:B2:1E:95:BF:AD:E8:1B:6B:EF:B1:00 195s X509v3 Key Usage: critical 195s Digital Signature, Non Repudiation, Key Encipherment 195s X509v3 Extended Key Usage: 195s TLS Web Client Authentication, E-mail Protection 195s X509v3 Subject Alternative Name: 195s email:mail@3v1n0.net, URI:https://github.com/3v1n0/ 195s Certificate is to be certified until Feb 12 15:14:22 2026 GMT (365 days) 195s 195s Write out database with 1 new entries 195s Database updated 195s + openssl x509 -noout -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s This certificate should not be trusted fully 195s + echo 'This certificate should not be trusted fully' 195s + expect_fail openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s + local cmd=openssl 195s + shift 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s O=Test Organization, OU=Test Organization Unit, CN=Test Organization Sub Intermediate CA 195s error 2 at 1 depth lookup: unable to get issuer certificate 195s error /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem: verification failed 195s + expect_fail openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s + local cmd=openssl 195s + shift 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s O=Test Organization, OU=Test Organization Unit, CN=Test Organization Sub Intermediate Trusted Certificate 0001 195s error 20 at 0 depth lookup: unable to get local issuer certificate 195s error /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem: verification failed 195s + openssl verify -partial_chain -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem: OK 195s + expect_fail openssl verify -partial_chain -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s + local cmd=openssl 195s + shift 195s + openssl verify -partial_chain -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s Building a the full-chain CA file... 195s O=Test Organization, OU=Test Organization Unit, CN=Test Organization Sub Intermediate Trusted Certificate 0001 195s error 20 at 0 depth lookup: unable to get local issuer certificate 195s error /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem: verification failed 195s + echo 'Building a the full-chain CA file...' 195s + cat /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 195s + cat /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem 195s + cat /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 195s + openssl crl2pkcs7 -nocrl -certfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem 195s + openssl pkcs7 -print_certs -noout 195s subject=O=Test Organization, OU=Test Organization Unit, CN=Test Organization Root CA 195s issuer=O=Test Organization, OU=Test Organization Unit, CN=Test Organization Root CA 195s 195s subject=O=Test Organization, OU=Test Organization Unit, CN=Test Organization Intermediate CA 195s issuer=O=Test Organization, OU=Test Organization Unit, CN=Test Organization Root CA 195s 195s subject=O=Test Organization, OU=Test Organization Unit, CN=Test Organization Sub Intermediate CA 195s issuer=O=Test Organization, OU=Test Organization Unit, CN=Test Organization Intermediate CA 195s 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA.pem: OK 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem: OK 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem: OK 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-intermediate-chain-CA.pem 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-intermediate-chain-CA.pem: OK 195s + openssl verify -CAfile /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s + echo 'Certificates generation completed!' 195s + [[ -v NO_SSSD_TESTS ]] 195s + [[ -v GENERATE_SMART_CARDS ]] 195s + prepare_softhsm2_card /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem pass:random-root-ca-trusted-cert-0001-24070 195s + local certificate=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem 195s + local key_pass=pass:random-root-ca-trusted-cert-0001-24070 195s + local key_cn 195s + local key_name 195s + local tokens_dir 195s + local output_cert_file 195s + token_name= 195s ++ basename /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem .pem 195s + key_name=test-root-CA-trusted-certificate-0001 195s ++ openssl x509 -noout -subject -nameopt multiline -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem 195s ++ sed -n 's/ *commonName *= //p' 195s /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem: OK 195s Certificates generation completed! 195s + key_cn='Test Organization Root Trusted Certificate 0001' 195s + '[' -v SOFTHSM2_ISOLATED_CONFIGS ']' 195s + export SOFTHSM2_CONF=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf 195s + SOFTHSM2_CONF=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf 195s ++ basename /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf .conf 195s + tokens_dir=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001 195s + token_name='Test Organization Root Tr Token' 195s + '[' '!' -e /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf ']' 195s + local key_file 195s + local decrypted_key 195s + mkdir -p /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001 195s + key_file=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-key.pem 195s + decrypted_key=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-key-decrypted.pem 195s + cat 195s + softhsm2-util --init-token --label 'Test Organization Root Tr Token' --pin 9812 --so-pin 9812 --free 195s Slot 0 has a free/uninitialized token. 195s The token has been initialized and is reassigned to slot 1482738688 195s + softhsm2-util --show-slots 195s Available slots: 195s Slot 1482738688 195s Slot info: 195s Description: SoftHSM slot ID 0x5860cc00 195s Manufacturer ID: SoftHSM project 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Token present: yes 195s Token info: 195s Manufacturer ID: SoftHSM project 195s Model: SoftHSM v2 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Serial number: f4dabb865860cc00 195s Initialized: yes 195s User PIN init.: yes 195s Label: Test Organization Root Tr Token 195s Slot 1 195s Slot info: 195s Description: SoftHSM slot ID 0x1 195s Manufacturer ID: SoftHSM project 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Token present: yes 195s Token info: 195s Manufacturer ID: SoftHSM project 195s Model: SoftHSM v2 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Serial number: 195s Initialized: no 195s User PIN init.: no 195s Label: 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --write --no-mark-private --load-certificate=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001.pem --login --set-pin=9812 --label 'Test Organization Root Trusted Certificate 0001' --id 00112233445566778899FFAABBCCDDEEFF012345 195s + openssl rsa -passin pass:random-root-ca-trusted-cert-0001-24070 -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-key.pem -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-key-decrypted.pem 195s writing RSA key 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --write --load-privkey=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-key-decrypted.pem --login --set-pin=9812 --label 'Test Organization Root Trusted Certificate 0001 Key' --id 00112233445566778899FFAABBCCDDEEFF012345 195s + rm /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-root-CA-trusted-certificate-0001-key-decrypted.pem 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --list-all 195s Object 0: 195s URL: pkcs11:model=SoftHSM%20v2;manufacturer=SoftHSM%20project;serial=f4dabb865860cc00;token=Test%20Organization%20Root%20Tr%20Token;id=%00%11%22%33%44%55%66%77%88%99%FF%AA%BB%CC%DD%EE%FF%01%23%45;object=Test%20Organization%20Root%20Trusted%20Certificate%200001;type=cert 195s Type: X.509 Certificate (RSA-1024) 195s Expires: Thu Feb 12 15:14:22 2026 195s Label: Test Organization Root Trusted Certificate 0001 195s ID: 00:11:22:33:44:55:66:77:88:99:ff:aa:bb:cc:dd:ee:ff:01:23:45 195s 195s Test Organization Root Tr Token 195s + echo 'Test Organization Root Tr Token' 195s + prepare_softhsm2_card /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem pass:random-intermediate-ca-trusted-cert-0001-8299 195s + local certificate=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem 195s + local key_pass=pass:random-intermediate-ca-trusted-cert-0001-8299 195s + local key_cn 195s + local key_name 195s + local tokens_dir 195s + local output_cert_file 195s + token_name= 195s ++ basename /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem .pem 195s + key_name=test-intermediate-CA-trusted-certificate-0001 195s ++ openssl x509 -noout -subject -nameopt multiline -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem 195s ++ sed -n 's/ *commonName *= //p' 195s + key_cn='Test Organization Intermediate Trusted Certificate 0001' 195s + '[' -v SOFTHSM2_ISOLATED_CONFIGS ']' 195s + export SOFTHSM2_CONF=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-intermediate-CA-trusted-certificate-0001.conf 195s + SOFTHSM2_CONF=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-intermediate-CA-trusted-certificate-0001.conf 195s ++ basename /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-intermediate-CA-trusted-certificate-0001.conf .conf 195s + tokens_dir=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-intermediate-CA-trusted-certificate-0001 195s + token_name='Test Organization Interme Token' 195s + '[' '!' -e /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-intermediate-CA-trusted-certificate-0001.conf ']' 195s + local key_file 195s + local decrypted_key 195s + mkdir -p /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-intermediate-CA-trusted-certificate-0001 195s + key_file=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-key.pem 195s + decrypted_key=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-key-decrypted.pem 195s + cat 195s + softhsm2-util --init-token --label 'Test Organization Interme Token' --pin 9812 --so-pin 9812 --free 195s + softhsm2-util --show-slots 195s Slot 0 has a free/uninitialized token. 195s The token has been initialized and is reassigned to slot 1312718159 195s Available slots: 195s Slot 1312718159 195s Slot info: 195s Description: SoftHSM slot ID 0x4e3e7d4f 195s Manufacturer ID: SoftHSM project 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Token present: yes 195s Token info: 195s Manufacturer ID: SoftHSM project 195s Model: SoftHSM v2 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Serial number: a5ccda124e3e7d4f 195s Initialized: yes 195s User PIN init.: yes 195s Label: Test Organization Interme Token 195s Slot 1 195s Slot info: 195s Description: SoftHSM slot ID 0x1 195s Manufacturer ID: SoftHSM project 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Token present: yes 195s Token info: 195s Manufacturer ID: SoftHSM project 195s Model: SoftHSM v2 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Serial number: 195s Initialized: no 195s User PIN init.: no 195s Label: 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --write --no-mark-private --load-certificate=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001.pem --login --set-pin=9812 --label 'Test Organization Intermediate Trusted Certificate 0001' --id 00112233445566778899FFAABBCCDDEEFF012345 195s + openssl rsa -passin pass:random-intermediate-ca-trusted-cert-0001-8299 -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-key.pem -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-key-decrypted.pem 195s writing RSA key 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --write --load-privkey=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-key-decrypted.pem --login --set-pin=9812 --label 'Test Organization Intermediate Trusted Certificate 0001 Key' --id 00112233445566778899FFAABBCCDDEEFF012345 195s + rm /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-intermediate-CA-trusted-certificate-0001-key-decrypted.pem 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --list-all 195s Object 0: 195s URL: pkcs11:model=SoftHSM%20v2;manufacturer=SoftHSM%20project;serial=a5ccda124e3e7d4f;token=Test%20Organization%20Interme%20Token;id=%00%11%22%33%44%55%66%77%88%99%FF%AA%BB%CC%DD%EE%FF%01%23%45;object=Test%20Organization%20Intermediate%20Trusted%20Certificate%200001;type=cert 195s Type: X.509 Certificate (RSA-1024) 195s Expires: Thu Feb 12 15:14:22 2026 195s Label: Test Organization Intermediate Trusted Certificate 0001 195s ID: 00:11:22:33:44:55:66:77:88:99:ff:aa:bb:cc:dd:ee:ff:01:23:45 195s 195s Test Organization Interme Token 195s + echo 'Test Organization Interme Token' 195s + prepare_softhsm2_card /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem pass:random-sub-intermediate-ca-trusted-cert-0001-15110 195s + local certificate=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s + local key_pass=pass:random-sub-intermediate-ca-trusted-cert-0001-15110 195s + local key_cn 195s + local key_name 195s + local tokens_dir 195s + local output_cert_file 195s + token_name= 195s ++ basename /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem .pem 195s + key_name=test-sub-intermediate-CA-trusted-certificate-0001 195s ++ openssl x509 -noout -subject -nameopt multiline -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem 195s ++ sed -n 's/ *commonName *= //p' 195s + key_cn='Test Organization Sub Intermediate Trusted Certificate 0001' 195s + '[' -v SOFTHSM2_ISOLATED_CONFIGS ']' 195s + export SOFTHSM2_CONF=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf 195s + SOFTHSM2_CONF=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf 195s ++ basename /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf .conf 195s + tokens_dir=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001 195s + token_name='Test Organization Sub Int Token' 195s + '[' '!' -e /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf ']' 195s + local key_file 195s + local decrypted_key 195s + mkdir -p /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001 195s + key_file=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-key.pem 195s + decrypted_key=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-key-decrypted.pem 195s + cat 195s + softhsm2-util --init-token --label 'Test Organization Sub Int Token' --pin 9812 --so-pin 9812 --free 195s Slot 0 has a free/uninitialized token. 195s The token has been initialized and is reassigned to slot 1231168269 195s + softhsm2-util --show-slots 195s Available slots: 195s Slot 1231168269 195s Slot info: 195s Description: SoftHSM slot ID 0x4962230d 195s Manufacturer ID: SoftHSM project 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Token present: yes 195s Token info: 195s Manufacturer ID: SoftHSM project 195s Model: SoftHSM v2 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Serial number: aa8fa3184962230d 195s Initialized: yes 195s User PIN init.: yes 195s Label: Test Organization Sub Int Token 195s Slot 1 195s Slot info: 195s Description: SoftHSM slot ID 0x1 195s Manufacturer ID: SoftHSM project 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Token present: yes 195s Token info: 195s Manufacturer ID: SoftHSM project 195s Model: SoftHSM v2 195s Hardware version: 2.6 195s Firmware version: 2.6 195s Serial number: 195s Initialized: no 195s User PIN init.: no 195s Label: 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --write --no-mark-private --load-certificate=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001.pem --login --set-pin=9812 --label 'Test Organization Sub Intermediate Trusted Certificate 0001' --id 00112233445566778899FFAABBCCDDEEFF012345 195s + openssl rsa -passin pass:random-sub-intermediate-ca-trusted-cert-0001-15110 -in /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-key.pem -out /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-key-decrypted.pem 195s writing RSA key 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --write --load-privkey=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-key-decrypted.pem --login --set-pin=9812 --label 'Test Organization Sub Intermediate Trusted Certificate 0001 Key' --id 00112233445566778899FFAABBCCDDEEFF012345 195s + rm /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA-trusted-certificate-0001-key-decrypted.pem 195s + p11tool --provider=/usr/lib/s390x-linux-gnu/softhsm/libsofthsm2.so --list-all 195s Object 0: 195s URL: pkcs11:model=SoftHSM%20v2;manufacturer=SoftHSM%20project;serial=aa8fa3184962230d;token=Test%20Organization%20Sub%20Int%20Token;id=%00%11%22%33%44%55%66%77%88%99%FF%AA%BB%CC%DD%EE%FF%01%23%45;object=Test%20Organization%20Sub%20Intermediate%20Trusted%20Certificate%200001;type=cert 195s Type: X.509 Certificate (RSA-1024) 195s Expires: Thu Feb 12 15:14:22 2026 195s Label: Test Organization Sub Intermediate Trusted Certificate 0001 195s ID: 00:11:22:33:44:55:66:77:88:99:ff:aa:bb:cc:dd:ee:ff:01:23:45 195s 195s + echo 'Test Organization Sub Int Token' 195s Test Organization Sub Int Token 195s + echo 'Certificates generation completed!' 195s Certificates generation completed! 195s + exit 0 195s + find /tmp/sssd-softhsm2-gdm-certs-bFqJSU -type d -exec chmod 777 '{}' ';' 195s + find /tmp/sssd-softhsm2-gdm-certs-bFqJSU -type f -exec chmod 666 '{}' ';' 195s + pamtester -v gdm-password ubuntu authenticate 195s pamtester: invoking pam_start(gdm-password, ubuntu, ...) 195s pamtester: performing operation - authenticate 195s Password: pamtester: Authentication failure 195s + backup_file /etc/sssd/sssd.conf 195s + '[' -z '' ']' 195s ++ mktemp -d -t sssd-softhsm2-gdm-backups-XXXXXX 195s + backupsdir=/tmp/sssd-softhsm2-gdm-backups-sBtr8c 195s + '[' -e /etc/sssd/sssd.conf ']' 195s + delete_paths+=("$1") 195s + rm -f /etc/sssd/sssd.conf 195s ++ runuser -u ubuntu -- sh -c 'echo ~' 195s + user_home=/home/ubuntu 195s + mkdir -p /home/ubuntu 195s + chown ubuntu:ubuntu /home/ubuntu 195s ++ runuser -u gdm -- sh -c 'echo ~' 195s + gdm_home=/var/lib/gdm3 195s + mkdir -p /var/lib/gdm3 195s + chown gdm:gdm /var/lib/gdm3 195s ++ runuser -u ubuntu -- sh -c 'echo ${XDG_CONFIG_HOME:-~/.config}' 195s + user_config=/home/ubuntu/.config 195s ++ runuser -u gdm -- sh -c 'echo ${XDG_CONFIG_HOME:-~/.config}' 195s + gdm_config=/var/lib/gdm3/.config 195s + system_config=/etc 195s + softhsm2_conf_paths=("$SUDO_USER:$user_config/softhsm2/softhsm2.conf" "$GDM_USER:$gdm_config/softhsm2/softhsm2.conf" "root:$system_config/softhsm/softhsm2.conf") 195s + for path_pair in "${softhsm2_conf_paths[@]}" 195s + IFS=: 195s + read -r -a path 195s + path=/home/ubuntu/.config/softhsm2/softhsm2.conf 195s + backup_file /home/ubuntu/.config/softhsm2/softhsm2.conf 195s + '[' -z /tmp/sssd-softhsm2-gdm-backups-sBtr8c ']' 195s + '[' -e /home/ubuntu/.config/softhsm2/softhsm2.conf ']' 195s + delete_paths+=("$1") 195s + rm -f /home/ubuntu/.config/softhsm2/softhsm2.conf 195s + for path_pair in "${softhsm2_conf_paths[@]}" 195s + IFS=: 195s + read -r -a path 195s + path=/var/lib/gdm3/.config/softhsm2/softhsm2.conf 195s + backup_file /var/lib/gdm3/.config/softhsm2/softhsm2.conf 195s + '[' -z /tmp/sssd-softhsm2-gdm-backups-sBtr8c ']' 195s + '[' -e /var/lib/gdm3/.config/softhsm2/softhsm2.conf ']' 195s + delete_paths+=("$1") 195s + rm -f /var/lib/gdm3/.config/softhsm2/softhsm2.conf 195s + for path_pair in "${softhsm2_conf_paths[@]}" 195s + IFS=: 195s + read -r -a path 195s + path=/etc/softhsm/softhsm2.conf 195s + backup_file /etc/softhsm/softhsm2.conf 195s + '[' -z /tmp/sssd-softhsm2-gdm-backups-sBtr8c ']' 195s + '[' -e /etc/softhsm/softhsm2.conf ']' 195s ++ dirname /etc/softhsm/softhsm2.conf 195s + local back_dir=/tmp/sssd-softhsm2-gdm-backups-sBtr8c//etc/softhsm 195s ++ basename /etc/softhsm/softhsm2.conf 195s + local back_path=/tmp/sssd-softhsm2-gdm-backups-sBtr8c//etc/softhsm/softhsm2.conf 195s + '[' '!' -e /tmp/sssd-softhsm2-gdm-backups-sBtr8c//etc/softhsm/softhsm2.conf ']' 195s + mkdir -p /tmp/sssd-softhsm2-gdm-backups-sBtr8c//etc/softhsm 195s + cp -a /etc/softhsm/softhsm2.conf /tmp/sssd-softhsm2-gdm-backups-sBtr8c//etc/softhsm/softhsm2.conf 195s + restore_paths+=("$back_path") 195s + rm -f /etc/softhsm/softhsm2.conf 195s + test_authentication /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem 195s + certificate_config=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf 195s + ca_db=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem 195s + verification_options= 195s + mkdir -p -m 700 /etc/sssd 195s Using CA DB '/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem' with verification options: '' 195s + echo 'Using CA DB '\''/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem'\'' with verification options: '\'''\''' 195s + cat 195s + chmod 600 /etc/sssd/sssd.conf 195s + for path_pair in "${softhsm2_conf_paths[@]}" 195s + IFS=: 195s + read -r -a path 195s + user=ubuntu 195s + path=/home/ubuntu/.config/softhsm2/softhsm2.conf 195s ++ dirname /home/ubuntu/.config/softhsm2/softhsm2.conf 195s + runuser -u ubuntu -- mkdir -p /home/ubuntu/.config/softhsm2 195s + runuser -u ubuntu -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf /home/ubuntu/.config/softhsm2/softhsm2.conf 195s + runuser -u ubuntu -- softhsm2-util --show-slots 195s + grep 'Test Organization' 195s Label: Test Organization Root Tr Token 195s + for path_pair in "${softhsm2_conf_paths[@]}" 195s + IFS=: 195s + read -r -a path 195s + user=gdm 195s + path=/var/lib/gdm3/.config/softhsm2/softhsm2.conf 195s ++ dirname /var/lib/gdm3/.config/softhsm2/softhsm2.conf 195s + runuser -u gdm -- mkdir -p /var/lib/gdm3/.config/softhsm2 195s + runuser -u gdm -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf /var/lib/gdm3/.config/softhsm2/softhsm2.conf 195s + runuser -u gdm -- softhsm2-util --show-slots 195s + grep 'Test Organization' 195s Label: Test Organization Root Tr Token 195s + for path_pair in "${softhsm2_conf_paths[@]}" 195s + IFS=: 195s + read -r -a path 195s + user=root 195s + path=/etc/softhsm/softhsm2.conf 195s ++ dirname /etc/softhsm/softhsm2.conf 195s + runuser -u root -- mkdir -p /etc/softhsm 195s + runuser -u root -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-root-CA-trusted-certificate-0001.conf /etc/softhsm/softhsm2.conf 195s + runuser -u root -- softhsm2-util --show-slots 195s + grep 'Test Organization' 195s Label: Test Organization Root Tr Token 195s + systemctl restart sssd 195s + for alternative in "${alternative_pam_configs[@]}" 195s + update-alternatives --set gdm-smartcard /etc/pam.d/gdm-smartcard-sssd-exclusive 195s + echo -n -e 9812 195s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 195s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 195s pamtester: performing operation - authenticate 195s PIN for Test Organization Root Tr Token: pamtester: successfully authenticated 195s + echo -n -e 9812 195s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 195s pamtester: invoking pam_start(gdm-smartcard, , ...) 195s pamtester: performing operation - authenticate 195s PIN for Test Organization Root Tr Token: pamtester: successfully authenticated 195s + echo -n -e wrong9812 195s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 195s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 195s pamtester: performing operation - authenticate 195s PIN for Test Organization Root Tr Token: pamtester: Authentication failure 195s + echo -n -e wrong9812 195s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 195s pamtester: invoking pam_start(gdm-smartcard, , ...) 195s pamtester: performing operation - authenticate 195s PIN for Test Organization Root Tr Token: pamtester: Authentication failure 195s + echo -n -e 9812 195s + pamtester -v gdm-smartcard root authenticate 195s pamtester: invoking pam_start(gdm-smartcard, root, ...) 195s pamtester: performing operation - authenticate 195s pamtester: Authentication failure 195s + [[ -v WAIT ]] 195s + for alternative in "${alternative_pam_configs[@]}" 195s + update-alternatives --set gdm-smartcard /etc/pam.d/gdm-smartcard-sssd-or-password 195s update-alternatives: using /etc/pam.d/gdm-smartcard-sssd-or-password to provide /etc/pam.d/gdm-smartcard (gdm-smartcard) in manual mode 195s + echo -n -e 9812 195s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 195s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 195s pamtester: performing operation - authenticate 196s PIN for Test Organization Root Tr Token: pamtester: successfully authenticated 196s + echo -n -e 9812 196s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 196s pamtester: invoking pam_start(gdm-smartcard, , ...) 196s pamtester: performing operation - authenticate 196s PIN for Test Organization Root Tr Token: pamtester: successfully authenticated 196s + echo -n -e wrong9812 196s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 196s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 196s pamtester: performing operation - authenticate 196s PIN for Test Organization Root Tr Token: Password: pamtester: Authentication failure 196s + echo -n -e wrong9812 196s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 196s pamtester: invoking pam_start(gdm-smartcard, , ...) 196s pamtester: performing operation - authenticate 196s PIN for Test Organization Root Tr Token: Password: pamtester: Authentication failure 196s + echo -n -e 9812 196s + pamtester -v gdm-smartcard root authenticate 196s pamtester: invoking pam_start(gdm-smartcard, root, ...) 196s pamtester: performing operation - authenticate 197s Password: pamtester: Authentication failure 197s + [[ -v WAIT ]] 197s + [[ -v WAIT ]] 197s + test_authentication /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem 197s + certificate_config=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf 197s + ca_db=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem 197s + verification_options= 197s + mkdir -p -m 700 /etc/sssd 197s + echo 'Using CA DB '\''/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem'\'' with verification options: '\'''\''' 197s + cat 197s Using CA DB '/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-full-chain-CA.pem' with verification options: '' 197s + chmod 600 /etc/sssd/sssd.conf 197s + for path_pair in "${softhsm2_conf_paths[@]}" 197s + IFS=: 197s + read -r -a path 197s + user=ubuntu 197s + path=/home/ubuntu/.config/softhsm2/softhsm2.conf 197s ++ dirname /home/ubuntu/.config/softhsm2/softhsm2.conf 197s Label: Test Organization Sub Int Token 197s Label: Test Organization Sub Int Token 197s Label: Test Organization Sub Int Token 197s + runuser -u ubuntu -- mkdir -p /home/ubuntu/.config/softhsm2 197s + runuser -u ubuntu -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /home/ubuntu/.config/softhsm2/softhsm2.conf 197s + runuser -u ubuntu -- softhsm2-util --show-slots 197s + grep 'Test Organization' 197s + for path_pair in "${softhsm2_conf_paths[@]}" 197s + IFS=: 197s + read -r -a path 197s + user=gdm 197s + path=/var/lib/gdm3/.config/softhsm2/softhsm2.conf 197s ++ dirname /var/lib/gdm3/.config/softhsm2/softhsm2.conf 197s + runuser -u gdm -- mkdir -p /var/lib/gdm3/.config/softhsm2 197s + runuser -u gdm -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /var/lib/gdm3/.config/softhsm2/softhsm2.conf 197s + runuser -u gdm -- softhsm2-util --show-slots 197s + grep 'Test Organization' 197s + for path_pair in "${softhsm2_conf_paths[@]}" 197s + IFS=: 197s + read -r -a path 197s + user=root 197s + path=/etc/softhsm/softhsm2.conf 197s ++ dirname /etc/softhsm/softhsm2.conf 197s + runuser -u root -- mkdir -p /etc/softhsm 197s + runuser -u root -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /etc/softhsm/softhsm2.conf 197s + runuser -u root -- softhsm2-util --show-slots 197s + grep 'Test Organization' 197s + systemctl restart sssd 197s update-alternatives: using /etc/pam.d/gdm-smartcard-sssd-exclusive to provide /etc/pam.d/gdm-smartcard (gdm-smartcard) in manual mode 197s + for alternative in "${alternative_pam_configs[@]}" 197s + update-alternatives --set gdm-smartcard /etc/pam.d/gdm-smartcard-sssd-exclusive 197s + echo -n -e 9812 197s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 197s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 197s pamtester: performing operation - authenticate 197s PIN for Test Organization Sub Int Token: pamtester: successfully authenticated 197s + echo -n -e 9812 197s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 197s pamtester: invoking pam_start(gdm-smartcard, , ...) 197s pamtester: performing operation - authenticate 197s PIN for Test Organization Sub Int Token: pamtester: successfully authenticated 197s + echo -n -e wrong9812 197s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 197s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 197s pamtester: performing operation - authenticate 197s PIN for Test Organization Sub Int Token: pamtester: Authentication failure 197s + echo -n -e wrong9812 197s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 197s pamtester: invoking pam_start(gdm-smartcard, , ...) 197s pamtester: performing operation - authenticate 197s PIN for Test Organization Sub Int Token: pamtester: Authentication failure 197s + echo -n -e 9812 197s + pamtester -v gdm-smartcard root authenticate 197s pamtester: invoking pam_start(gdm-smartcard, root, ...) 197s pamtester: performing operation - authenticate 197s pamtester: Authentication failure 197s + [[ -v WAIT ]] 197s + for alternative in "${alternative_pam_configs[@]}" 197s + update-alternatives --set gdm-smartcard /etc/pam.d/gdm-smartcard-sssd-or-password 197s update-alternatives: using /etc/pam.d/gdm-smartcard-sssd-or-password to provide /etc/pam.d/gdm-smartcard (gdm-smartcard) in manual mode 197s + echo -n -e 9812 197s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 197s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 197s pamtester: performing operation - authenticate 197s PIN for Test Organization Sub Int Token: pamtester: successfully authenticated 197s + echo -n -e 9812 197s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 197s pamtester: invoking pam_start(gdm-smartcard, , ...) 197s pamtester: performing operation - authenticate 197s PIN for Test Organization Sub Int Token: pamtester: successfully authenticated 197s + echo -n -e wrong9812 197s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 197s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 197s pamtester: performing operation - authenticate 197s PIN for Test Organization Sub Int Token: Password: pamtester: Authentication failure 197s + echo -n -e wrong9812 197s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 197s pamtester: invoking pam_start(gdm-smartcard, , ...) 197s pamtester: performing operation - authenticate 197s PIN for Test Organization Sub Int Token: Password: pamtester: Authentication failure 197s + echo -n -e 9812 197s + pamtester -v gdm-smartcard root authenticate 197s pamtester: invoking pam_start(gdm-smartcard, root, ...) 197s pamtester: performing operation - authenticate 199s Password: pamtester: Authentication failure 199s + [[ -v WAIT ]] 199s + test_authentication /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem partial_chain 199s + certificate_config=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf 199s + ca_db=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 199s + verification_options=partial_chain 199s + mkdir -p -m 700 /etc/sssd 199s + echo 'Using CA DB '\''/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem'\'' with verification options: '\''partial_chain'\''' 199s + cat 199s Using CA DB '/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem' with verification options: 'partial_chain' 199s + chmod 600 /etc/sssd/sssd.conf 199s + for path_pair in "${softhsm2_conf_paths[@]}" 199s + IFS=: 199s + read -r -a path 199s + user=ubuntu 199s + path=/home/ubuntu/.config/softhsm2/softhsm2.conf 199s Label: Test Organization Sub Int Token 199s Label: Test Organization Sub Int Token 199s Label: Test Organization Sub Int Token 199s ++ dirname /home/ubuntu/.config/softhsm2/softhsm2.conf 199s + runuser -u ubuntu -- mkdir -p /home/ubuntu/.config/softhsm2 199s + runuser -u ubuntu -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /home/ubuntu/.config/softhsm2/softhsm2.conf 199s + runuser -u ubuntu -- softhsm2-util --show-slots 199s + grep 'Test Organization' 199s + for path_pair in "${softhsm2_conf_paths[@]}" 199s + IFS=: 199s + read -r -a path 199s + user=gdm 199s + path=/var/lib/gdm3/.config/softhsm2/softhsm2.conf 199s ++ dirname /var/lib/gdm3/.config/softhsm2/softhsm2.conf 199s + runuser -u gdm -- mkdir -p /var/lib/gdm3/.config/softhsm2 199s + runuser -u gdm -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /var/lib/gdm3/.config/softhsm2/softhsm2.conf 199s + runuser -u gdm -- softhsm2-util --show-slots 199s + grep 'Test Organization' 199s + for path_pair in "${softhsm2_conf_paths[@]}" 199s + IFS=: 199s + read -r -a path 199s + user=root 199s + path=/etc/softhsm/softhsm2.conf 199s ++ dirname /etc/softhsm/softhsm2.conf 199s + runuser -u root -- mkdir -p /etc/softhsm 199s + runuser -u root -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /etc/softhsm/softhsm2.conf 199s + runuser -u root -- softhsm2-util --show-slots 199s + grep 'Test Organization' 199s + systemctl restart sssd 199s update-alternatives: using /etc/pam.d/gdm-smartcard-sssd-exclusive to provide /etc/pam.d/gdm-smartcard (gdm-smartcard) in manual mode 199s + for alternative in "${alternative_pam_configs[@]}" 199s + update-alternatives --set gdm-smartcard /etc/pam.d/gdm-smartcard-sssd-exclusive 199s + echo -n -e 9812 199s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 199s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 199s pamtester: performing operation - authenticate 199s PIN for Test Organization Sub Int Token: pamtester: successfully authenticated 199s + echo -n -e 9812 199s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 199s pamtester: invoking pam_start(gdm-smartcard, , ...) 199s pamtester: performing operation - authenticate 199s PIN for Test Organization Sub Int Token: pamtester: successfully authenticated 199s + echo -n -e wrong9812 199s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 199s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 199s pamtester: performing operation - authenticate 199s PIN for Test Organization Sub Int Token: pamtester: Authentication failure 199s + echo -n -e wrong9812 199s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 199s pamtester: invoking pam_start(gdm-smartcard, , ...) 199s pamtester: performing operation - authenticate 200s PIN for Test Organization Sub Int Token: pamtester: Authentication failure 200s + echo -n -e 9812 200s + pamtester -v gdm-smartcard root authenticate 200s pamtester: invoking pam_start(gdm-smartcard, root, ...) 200s pamtester: performing operation - authenticate 200s pamtester: Authentication failure 200s + [[ -v WAIT ]] 200s + for alternative in "${alternative_pam_configs[@]}" 200s + update-alternatives --set gdm-smartcard /etc/pam.d/gdm-smartcard-sssd-or-password 200s update-alternatives: using /etc/pam.d/gdm-smartcard-sssd-or-password to provide /etc/pam.d/gdm-smartcard (gdm-smartcard) in manual mode 200s + echo -n -e 9812 200s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 200s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 200s pamtester: performing operation - authenticate 200s PIN for Test Organization Sub Int Token: pamtester: successfully authenticated 200s + echo -n -e 9812 200s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 200s pamtester: invoking pam_start(gdm-smartcard, , ...) 200s pamtester: performing operation - authenticate 200s PIN for Test Organization Sub Int Token: pamtester: successfully authenticated 200s + echo -n -e wrong9812 200s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 200s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 200s pamtester: performing operation - authenticate 200s PIN for Test Organization Sub Int Token: Password: pamtester: Authentication failure 200s + echo -n -e wrong9812 200s + runuser -u ubuntu -- pamtester -v gdm-smartcard '' authenticate 200s pamtester: invoking pam_start(gdm-smartcard, , ...) 200s pamtester: performing operation - authenticate 200s PIN for Test Organization Sub Int Token: Password: pamtester: Authentication failure 200s + echo -n -e 9812 200s + pamtester -v gdm-smartcard root authenticate 200s pamtester: invoking pam_start(gdm-smartcard, root, ...) 200s pamtester: performing operation - authenticate 202s Password: pamtester: Authentication failure 202s + [[ -v WAIT ]] 202s + test_authentication /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 202s + certificate_config=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf 202s + ca_db=/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem 202s + verification_options= 202s + mkdir -p -m 700 /etc/sssd 202s + echo 'Using CA DB '\''/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem'\'' with verification options: '\'''\''' 202s + cat 202s Using CA DB '/tmp/sssd-softhsm2-gdm-certs-bFqJSU/test-sub-intermediate-CA.pem' with verification options: '' 202s + chmod 600 /etc/sssd/sssd.conf 202s + for path_pair in "${softhsm2_conf_paths[@]}" 202s + IFS=: 202s + read -r -a path 202s + user=ubuntu 202s + path=/home/ubuntu/.config/softhsm2/softhsm2.conf 202s ++ dirname /home/ubuntu/.config/softhsm2/softhsm2.conf 202s Label: Test Organization Sub Int Token 202s Label: Test Organization Sub Int Token 202s Label: Test Organization Sub Int Token 202s + runuser -u ubuntu -- mkdir -p /home/ubuntu/.config/softhsm2 202s + runuser -u ubuntu -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /home/ubuntu/.config/softhsm2/softhsm2.conf 202s + runuser -u ubuntu -- softhsm2-util --show-slots 202s + grep 'Test Organization' 202s + for path_pair in "${softhsm2_conf_paths[@]}" 202s + IFS=: 202s + read -r -a path 202s + user=gdm 202s + path=/var/lib/gdm3/.config/softhsm2/softhsm2.conf 202s ++ dirname /var/lib/gdm3/.config/softhsm2/softhsm2.conf 202s + runuser -u gdm -- mkdir -p /var/lib/gdm3/.config/softhsm2 202s + runuser -u gdm -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /var/lib/gdm3/.config/softhsm2/softhsm2.conf 202s + runuser -u gdm -- softhsm2-util --show-slots 202s + grep 'Test Organization' 202s + for path_pair in "${softhsm2_conf_paths[@]}" 202s + IFS=: 202s + read -r -a path 202s + user=root 202s + path=/etc/softhsm/softhsm2.conf 202s ++ dirname /etc/softhsm/softhsm2.conf 202s + runuser -u root -- mkdir -p /etc/softhsm 202s + runuser -u root -- ln -sf /tmp/sssd-softhsm2-gdm-certs-bFqJSU/softhsm2-test-sub-intermediate-CA-trusted-certificate-0001.conf /etc/softhsm/softhsm2.conf 202s + runuser -u root -- softhsm2-util --show-slots 202s + grep 'Test Organization' 202s + systemctl restart sssd 202s update-alternatives: using /etc/pam.d/gdm-smartcard-sssd-exclusive to provide /etc/pam.d/gdm-smartcard (gdm-smartcard) in manual mode 202s + for alternative in "${alternative_pam_configs[@]}" 202s + update-alternatives --set gdm-smartcard /etc/pam.d/gdm-smartcard-sssd-exclusive 202s + runuser -u ubuntu -- pamtester -v gdm-smartcard ubuntu authenticate 202s + echo -n -e 9812 202s pamtester: invoking pam_start(gdm-smartcard, ubuntu, ...) 202s pamtester: performing operation - authenticate 202s Please (re)insert (different) SmartcardPlease insert smart card 202s Please (re)insert (different) Smartcard 202s pamtester: Authentication service cannot retrieve authentication info 202s + return 2 202s + handle_exit 202s + exit_code=0 202s + restore_changes 202s + for path in "${restore_paths[@]}" 202s + local original_path 202s ++ realpath --strip --relative-base=/tmp/sssd-softhsm2-gdm-backups-sBtr8c /tmp/sssd-softhsm2-gdm-backups-sBtr8c//etc/softhsm/softhsm2.conf 202s + original_path=/etc/softhsm/softhsm2.conf 202s + rm /etc/softhsm/softhsm2.conf 202s + mv /tmp/sssd-softhsm2-gdm-backups-sBtr8c//etc/softhsm/softhsm2.conf /etc/softhsm/softhsm2.conf 202s + for path in "${delete_paths[@]}" 202s + rm -f /etc/sssd/sssd.conf 202s + for path in "${delete_paths[@]}" 202s + rm -f /home/ubuntu/.config/softhsm2/softhsm2.conf 202s + for path in "${delete_paths[@]}" 202s + rm -f /var/lib/gdm3/.config/softhsm2/softhsm2.conf 202s + update-alternatives --auto gdm-smartcard 202s + '[' -e /etc/sssd/sssd.conf ']' 202s + systemctl stop sssd 202s + '[' -e /etc/softhsm/softhsm2.conf ']' 202s + chmod 600 /etc/softhsm/softhsm2.conf 202s + rm -rf /tmp/sssd-softhsm2-gdm-certs-bFqJSU 202s + '[' 0 = 0 ']' 202s + rm -rf /tmp/sssd-softhsm2-gdm-backups-sBtr8c 202s Script completed successfully! 202s + set +x 202s /tmp/autopkgtest.ply29s/wrapper.sh: checking for leaked background processes... 202s /tmp/autopkgtest.ply29s/wrapper.sh: waiting for tee/cat subprocesses... 202s /tmp/autopkgtest.ply29s/wrapper.sh: cleaning up... 202s /tmp/autopkgtest.ply29s/wrapper.sh: Exit status: 0 202s autopkgtest: DBG: testbed command exited with code 0 203s autopkgtest [15:14:30]: test sssd-gdm-smartcard-auth-test: -----------------------] 203s autopkgtest: DBG: testbed executing test finished with exit status 0 203s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-stdout /tmp/autopkgtest-work.rdbsu32v/out/sssd-gdm-smartcard-auth-test-stdout 203s autopkgtest: DBG: got reply from testbed: ok 203s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-stderr /tmp/autopkgtest-work.rdbsu32v/out/sssd-gdm-smartcard-auth-test-stderr 203s autopkgtest: DBG: got reply from testbed: ok 203s autopkgtest [15:14:30]: test sssd-gdm-smartcard-auth-test: - - - - - - - - - - results - - - - - - - - - - 203s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-artifacts/ /tmp/autopkgtest-work.rdbsu32v/out/artifacts/ 203s sssd-gdm-smartcard-auth-test PASS 203s autopkgtest: DBG: got reply from testbed: ok 203s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.ply29s/sssd-gdm-smartcard-auth-test-artifacts', '/tmp/autopkgtest.ply29s/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 203s autopkgtest: DBG: testbed command exited with code 0 203s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 223 203s autopkgtest: DBG: needs_reset, previously=True, requested by run_tests() line 230 203s autopkgtest [15:14:30]: @@@@@@@@@@@@@@@@@@@@ summary 203s sssd-gdm-smartcard-auth-test PASS 203s autopkgtest: DBG: testbed stop 203s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.ply29s 203s autopkgtest: DBG: sending command to testbed: close 209s autopkgtest: DBG: got reply from testbed: ok 209s autopkgtest: DBG: sending command to testbed: quit 209s nova [W] Using flock in prodstack6-s390x 209s flock: timeout while waiting to get lock 209s Creating nova instance adt-plucky-s390x-gdm3-20250212-151107-juju-7f2275-prod-proposed-migration-environment-15-8e12668a-9422-4fbe-9e08-dfd01cddd6e1 from image adt/ubuntu-plucky-s390x-server-20250212.img (UUID bc0c6a1e-2159-4845-8bbd-54291ac11f45)... 209s nova [W] Timed out waiting for c9ec7a50-df38-48c4-8397-12500a55d46d to get deleted.