wazuh / wazuh-packages

Wazuh - Tools for packages creation
https://wazuh.com
GNU General Public License v2.0
105 stars 96 forks source link

Error in generating deb package while creating the docker image #1964

Closed davidcr01 closed 1 year ago

davidcr01 commented 1 year ago

Description

An error has been found while generating a Debian package. It seems the docker image can not be created due to expired keys when fetching the wheezy repository.

The example shows the error using generate_debian_package.sh, but this error has been detected in other scripts that use wheezy or jessie distributions, such as https://github.com/wazuh/wazuh-packages/blob/master/stack/indexer/deb/build_package.sh

root@ip-172-31-4-99:/home/ubuntu/wazuh-packages/debs# ./generate_debian_package.sh -b master --packages-branch master -s /tmp -t agent -a amd64 -r my_rev. 
Sending build context to Docker daemon  9.216kB
Step 1/12 : FROM debian:7
 ---> 10fcec6d95c4
Step 2/12 : ENV DEBIAN_FRONTEND noninteractive
 ---> Using cache
 ---> 3091f363cacd
Step 3/12 : RUN echo "deb http://archive.debian.org/debian/ wheezy contrib main non-free" > /etc/apt/sources.list &&     echo "deb-src http://archive.debian.org/debian/ wheezy contrib main non-free" >> /etc/apt/sources.list &&     apt-get update && apt-get install -y apt-utils &&     apt-get install -y --force-yes     curl gcc make sudo wget expect gnupg perl-base=5.14.2-21+deb7u3 perl     libc-bin=2.13-38+deb7u10 libc6=2.13-38+deb7u10 libc6-dev build-essential     cdbs devscripts equivs automake autoconf libtool libaudit-dev selinux-basics     libdb5.1=5.1.29-5 libdb5.1-dev libssl1.0.0=1.0.1e-2+deb7u20 procps gawk libsigsegv2
 ---> Running in 3d5d518c3451
Get:1 http://archive.debian.org wheezy Release.gpg [2373 B]
Get:2 http://archive.debian.org wheezy Release [191 kB]
Ign http://archive.debian.org wheezy Release
Get:3 http://archive.debian.org wheezy/contrib Sources [55.8 kB]
Get:4 http://archive.debian.org wheezy/main Sources [7533 kB]
Get:5 http://archive.debian.org wheezy/non-free Sources [112 kB]
Get:6 http://archive.debian.org wheezy/contrib amd64 Packages [50.5 kB]
Get:7 http://archive.debian.org wheezy/main amd64 Packages [7634 kB]
Get:8 http://archive.debian.org wheezy/non-free amd64 Packages [100 kB]
Fetched 15.7 MB in 4s (3487 kB/s)
Reading package lists...
W: GPG error: http://archive.debian.org wheezy Release: The following signatures were invalid: KEYEXPIRED 1587841717 KEYEXPIRED 1668891673 KEYEXPIRED 1557241909
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  libapt-inst1.5
The following NEW packages will be installed:
  apt-utils libapt-inst1.5
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 545 kB of archives.
After this operation, 2049 kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  libapt-inst1.5 apt-utils
E: There are problems and -y was used without --force-yes
The command '/bin/sh -c echo "deb http://archive.debian.org/debian/ wheezy contrib main non-free" > /etc/apt/sources.list &&     echo "deb-src http://archive.debian.org/debian/ wheezy contrib main non-free" >> /etc/apt/sources.list &&     apt-get update && apt-get install -y apt-utils &&     apt-get install -y --force-yes     curl gcc make sudo wget expect gnupg perl-base=5.14.2-21+deb7u3 perl     libc-bin=2.13-38+deb7u10 libc6=2.13-38+deb7u10 libc6-dev build-essential     cdbs devscripts equivs automake autoconf libtool libaudit-dev selinux-basics     libdb5.1=5.1.29-5 libdb5.1-dev libssl1.0.0=1.0.1e-2+deb7u20 procps gawk libsigsegv2' returned a non-zero code: 100
root@ip-172-31-4-99:/home/ubuntu/wazuh-packages/debs# 

W: GPG error: http://archive.debian.org wheezy Release: The following signatures were invalid: KEYEXPIRED 1587841717 KEYEXPIRED 1668891673 KEYEXPIRED 1557241909

Executing the generation of the image step-by-step it is found that the error is in the apt-get update && apt-get install -y apt-utils && \ command (line 8 of Dockerfile).

https://github.com/wazuh/wazuh-packages/blob/f09df4929222c6d42611e4026be2424dccb29d04/debs/Debian/amd64/Dockerfile#L6-L8

Other options have been used, changing the branch of -b and --packages-branch and removing the --future option, but the error is not avoided.

Tests

I have tried some tests to solve this problem, but some of them did not work and other solutions may not be the best options.

Tasks

Validation

jctello commented 1 year ago

Thank you for reporting this @davidcr01 as well as providing a potential workarounds. I ran:

sed -i 's/deb http/deb [trusted=yes] http/g' wazuh-packages/debs/Debian/amd64/Dockerfile

to work around this issue, but the solution will of course be to base the container on a supported version of Debian.

verdx commented 1 year ago

If --force-yes is added to the Dockerfile when installing apt-utils, the same error appears the next time apt-get is called, in apt-get build-deps python3.2 -y.

verdx commented 1 year ago

The error is solved in PR https://github.com/wazuh/wazuh-packages/pull/2053 by adding --force-yes to apt-get install calls on the DEB SPECS files for architectures amd64 and i386.

davidcr01 commented 1 year ago

Tests

:heavy_check_mark: WPK

To test the WPK dockerfile (wpk/common/Dockerfile), I commented the docker run command of the package generator and used the following command.

./generate_wpk_package.sh -t windows -b v4.3.10 -d /tmp/wpk -k /tmp/keys -o WindowsAgent.wpk -pn /tmp/wazuh-agent-4.3.10-1.msi > wpk.log 2>&1

Show log ``` Sending build context to Docker daemon 14.34kB Step 1/8 : FROM debian:9 ---> 662c05203bab Step 2/8 : RUN apt-get update && apt-get -y install --allow-change-held-packages python git curl jq python3 python3-pip libffi-dev && pip3 install --upgrade cryptography==2.9.2 awscli ---> Running in 1b2fab25e8ae Ign:1 http://deb.debian.org/debian stretch InRelease Get:2 http://deb.debian.org/debian stretch-updates InRelease [93.6 kB] Get:3 http://security.debian.org/debian-security stretch/updates InRelease [59.1 kB] Get:4 http://deb.debian.org/debian stretch Release [118 kB] Get:5 http://deb.debian.org/debian stretch Release.gpg [3177 B] Get:6 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [782 kB] Get:7 http://deb.debian.org/debian stretch/main amd64 Packages [7080 kB] Fetched 8135 kB in 3s (2476 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: binutils build-essential bzip2 ca-certificates cpp cpp-6 dbus dh-python dirmngr dpkg-dev fakeroot file g++ g++-6 gcc gcc-6 gir1.2-glib-2.0 git-man gnupg gnupg-agent gnupg-l10n krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libapparmor1 libasan3 libassuan0 libatomic1 libbsd0 libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libcurl3 libcurl3-gnutls libdbus-1-3 libdbus-glib-1-2 libdpkg-perl libedit2 liberror-perl libexpat1 libexpat1-dev libfakeroot libffi6 libfile-fcntllock-perl libgcc-6-dev libgdbm3 libgirepository-1.0-1 libglib2.0-0 libglib2.0-data libgmp10 libgnutls30 libgomp1 libgpm2 libgssapi-krb5-2 libhogweed4 libicu57 libidn2-0 libisl15 libitm1 libjq1 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libksba8 libldap-2.4-2 libldap-common liblocale-gettext-perl liblsan0 libmagic-mgc libmagic1 libmpc3 libmpdec2 libmpfr4 libmpx2 libncurses5 libnghttp2-14 libnpth0 libonig4 libp11-kit0 libperl5.24 libpopt0 libpsl5 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libpython3-dev libpython3-stdlib libpython3.5 libpython3.5-dev libpython3.5-minimal libpython3.5-stdlib libquadmath0 libreadline7 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh2-1 libssl1.0.2 libssl1.1 libstdc++-6-dev libtasn1-6 libtsan0 libubsan0 libunistring0 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxml2 libxmuu1 linux-libc-dev make manpages manpages-dev mime-support netbase openssh-client openssl patch perl perl-modules-5.24 pinentry-curses publicsuffix python-minimal python-pip-whl python2.7 python2.7-minimal python3-cffi-backend python3-crypto python3-cryptography python3-dbus python3-dev python3-gi python3-idna python3-keyring python3-keyrings.alt python3-minimal python3-pkg-resources python3-pyasn1 python3-secretstorage python3-setuptools python3-six python3-wheel python3-xdg python3.5 python3.5-dev python3.5-minimal readline-common rename rsync sgml-base shared-mime-info xauth xdg-user-dirs xml-core xz-utils Suggested packages: binutils-doc bzip2-doc cpp-doc gcc-6-locales default-dbus-session-bus | dbus-session-bus dbus-user-session libpam-systemd pinentry-gnome3 tor debian-keyring g++-multilib g++-6-multilib gcc-6-doc libstdc++6-6-dbg gcc-multilib autoconf automake libtool flex bison gdb gcc-doc gcc-6-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan3-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email git-gui gitk gitweb git-arch git-cvs git-mediawiki git-svn parcimonie xloadimage scdaemon glibc-doc gnutls-bin gpm krb5-doc krb5-user libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql libstdc++-6-doc make-doc man-browser keychain libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl pinentry-doc python-doc python-tk python2.7-doc binfmt-support python3-doc python3-tk python3-venv python3-crypto-dbg python-crypto-doc python-cryptography-doc python3-cryptography-vectors python-dbus-doc python3-dbus-dbg gnome-keyring libkf5wallet-bin gir1.2-gnomekeyring-1.0 python3-pykde4 doc-base python-secretstorage-doc python-setuptools-doc python3.5-venv python3.5-doc readline-doc openssh-server sgml-base-doc debhelper The following NEW packages will be installed: binutils build-essential bzip2 ca-certificates cpp cpp-6 curl dbus dh-python dirmngr dpkg-dev fakeroot file g++ g++-6 gcc gcc-6 gir1.2-glib-2.0 git git-man gnupg gnupg-agent gnupg-l10n jq krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libapparmor1 libasan3 libassuan0 libatomic1 libbsd0 libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libcurl3 libcurl3-gnutls libdbus-1-3 libdbus-glib-1-2 libdpkg-perl libedit2 liberror-perl libexpat1 libexpat1-dev libfakeroot libffi-dev libffi6 libfile-fcntllock-perl libgcc-6-dev libgdbm3 libgirepository-1.0-1 libglib2.0-0 libglib2.0-data libgmp10 libgnutls30 libgomp1 libgpm2 libgssapi-krb5-2 libhogweed4 libicu57 libidn2-0 libisl15 libitm1 libjq1 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libksba8 libldap-2.4-2 libldap-common liblocale-gettext-perl liblsan0 libmagic-mgc libmagic1 libmpc3 libmpdec2 libmpfr4 libmpx2 libncurses5 libnghttp2-14 libnpth0 libonig4 libp11-kit0 libperl5.24 libpopt0 libpsl5 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libpython3-dev libpython3-stdlib libpython3.5 libpython3.5-dev libpython3.5-minimal libpython3.5-stdlib libquadmath0 libreadline7 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh2-1 libssl1.0.2 libssl1.1 libstdc++-6-dev libtasn1-6 libtsan0 libubsan0 libunistring0 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxml2 libxmuu1 linux-libc-dev make manpages manpages-dev mime-support netbase openssh-client openssl patch perl perl-modules-5.24 pinentry-curses publicsuffix python python-minimal python-pip-whl python2.7 python2.7-minimal python3 python3-cffi-backend python3-crypto python3-cryptography python3-dbus python3-dev python3-gi python3-idna python3-keyring python3-keyrings.alt python3-minimal python3-pip python3-pkg-resources python3-pyasn1 python3-secretstorage python3-setuptools python3-six python3-wheel python3-xdg python3.5 python3.5-dev python3.5-minimal readline-common rename rsync sgml-base shared-mime-info xauth xdg-user-dirs xml-core xz-utils 0 upgraded, 171 newly installed, 0 to remove and 2 not upgraded. Need to get 138 MB of archives. After this operation, 454 MB of additional disk space will be used. Get:1 http://deb.debian.org/debian stretch/main amd64 perl-modules-5.24 all 5.24.1-3+deb9u7 [2723 kB] Get:2 http://security.debian.org/debian-security stretch/updates/main amd64 libpython2.7-minimal amd64 2.7.13-2+deb9u6 [390 kB] Get:3 http://security.debian.org/debian-security stretch/updates/main amd64 python2.7-minimal amd64 2.7.13-2+deb9u6 [1382 kB] Get:4 http://security.debian.org/debian-security stretch/updates/main amd64 libexpat1 amd64 2.2.0-2+deb9u5 [84.7 kB] Get:5 http://security.debian.org/debian-security stretch/updates/main amd64 libsqlite3-0 amd64 3.16.2-5+deb9u3 [574 kB] Get:6 http://deb.debian.org/debian stretch/main amd64 libgdbm3 amd64 1.8.3-14 [30.0 kB] Get:7 http://deb.debian.org/debian stretch/main amd64 libperl5.24 amd64 5.24.1-3+deb9u7 [3527 kB] Get:8 http://security.debian.org/debian-security stretch/updates/main amd64 libssl1.1 amd64 1.1.0l-1~deb9u6 [1360 kB] Get:9 http://security.debian.org/debian-security stretch/updates/main amd64 libpython2.7-stdlib amd64 2.7.13-2+deb9u6 [1898 kB] Get:10 http://deb.debian.org/debian stretch/main amd64 perl amd64 5.24.1-3+deb9u7 [218 kB] Get:11 http://deb.debian.org/debian stretch/main amd64 python-minimal amd64 2.7.13-2 [40.5 kB] Get:12 http://deb.debian.org/debian stretch/main amd64 mime-support all 3.60 [36.7 kB] Get:13 http://deb.debian.org/debian stretch/main amd64 libffi6 amd64 3.2.1-6 [20.4 kB] Get:14 http://deb.debian.org/debian stretch/main amd64 readline-common all 7.0-3 [70.4 kB] Get:15 http://deb.debian.org/debian stretch/main amd64 libreadline7 amd64 7.0-3 [151 kB] Get:16 http://deb.debian.org/debian stretch/main amd64 libpython-stdlib amd64 2.7.13-2 [20.0 kB] Get:17 http://deb.debian.org/debian stretch/main amd64 python amd64 2.7.13-2 [154 kB] Get:18 http://deb.debian.org/debian stretch/main amd64 libtasn1-6 amd64 4.10-1.1+deb9u1 [50.6 kB] Get:19 http://deb.debian.org/debian stretch/main amd64 libkeyutils1 amd64 1.5.9-9 [12.4 kB] Get:20 http://deb.debian.org/debian stretch/main amd64 libunistring0 amd64 0.9.6+really0.9.3-0.1 [279 kB] Get:21 http://deb.debian.org/debian stretch/main amd64 libidn2-0 amd64 0.16-1+deb9u1 [60.7 kB] Get:22 http://deb.debian.org/debian stretch/main amd64 libpsl5 amd64 0.17.0-3 [41.8 kB] Get:23 http://deb.debian.org/debian stretch/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1+b1 [60.4 kB] Get:24 http://security.debian.org/debian-security stretch/updates/main amd64 python2.7 amd64 2.7.13-2+deb9u6 [286 kB] Get:25 http://deb.debian.org/debian stretch/main amd64 liberror-perl all 0.17024-1 [26.9 kB] Get:26 http://deb.debian.org/debian stretch/main amd64 git-man all 1:2.11.0-3+deb9u7 [1436 kB] Get:27 http://security.debian.org/debian-security stretch/updates/main amd64 libgmp10 amd64 2:6.1.2+dfsg-1+deb9u1 [253 kB] Get:28 http://security.debian.org/debian-security stretch/updates/main amd64 libhogweed4 amd64 3.3-1+deb9u1 [136 kB] Get:29 http://security.debian.org/debian-security stretch/updates/main amd64 libp11-kit0 amd64 0.23.3-2+deb9u1 [112 kB] Get:30 http://security.debian.org/debian-security stretch/updates/main amd64 libgnutls30 amd64 3.5.8-5+deb9u6 [897 kB] Get:31 http://deb.debian.org/debian stretch/main amd64 git amd64 1:2.11.0-3+deb9u7 [4170 kB] Get:32 http://security.debian.org/debian-security stretch/updates/main amd64 libkrb5support0 amd64 1.15-1+deb9u3 [62.3 kB] Get:33 http://security.debian.org/debian-security stretch/updates/main amd64 libk5crypto3 amd64 1.15-1+deb9u3 [120 kB] Get:34 http://security.debian.org/debian-security stretch/updates/main amd64 libkrb5-3 amd64 1.15-1+deb9u3 [312 kB] Get:35 http://security.debian.org/debian-security stretch/updates/main amd64 libgssapi-krb5-2 amd64 1.15-1+deb9u3 [155 kB] Get:36 http://security.debian.org/debian-security stretch/updates/main amd64 libsasl2-modules-db amd64 2.1.27~101-g0780600+dfsg-3+deb9u2 [68.5 kB] Get:37 http://security.debian.org/debian-security stretch/updates/main amd64 libsasl2-2 amd64 2.1.27~101-g0780600+dfsg-3+deb9u2 [105 kB] Get:38 http://security.debian.org/debian-security stretch/updates/main amd64 libldap-common all 2.4.44+dfsg-5+deb9u9 [86.3 kB] Get:39 http://security.debian.org/debian-security stretch/updates/main amd64 libldap-2.4-2 amd64 2.4.44+dfsg-5+deb9u9 [220 kB] Get:40 http://security.debian.org/debian-security stretch/updates/main amd64 libnghttp2-14 amd64 1.18.1-1+deb9u2 [79.4 kB] Get:41 http://security.debian.org/debian-security stretch/updates/main amd64 libssh2-1 amd64 1.7.0-1+deb9u2 [139 kB] Get:42 http://security.debian.org/debian-security stretch/updates/main amd64 libcurl3-gnutls amd64 7.52.1-5+deb9u16 [296 kB] Get:43 http://security.debian.org/debian-security stretch/updates/main amd64 libpython3.5-minimal amd64 3.5.3-1+deb9u5 [574 kB] Get:44 http://security.debian.org/debian-security stretch/updates/main amd64 python3.5-minimal amd64 3.5.3-1+deb9u5 [1692 kB] Get:45 http://deb.debian.org/debian stretch/main amd64 liblocale-gettext-perl amd64 1.07-3+b1 [18.7 kB] Get:46 http://deb.debian.org/debian stretch/main amd64 libxau6 amd64 1:1.0.8-1 [20.7 kB] Get:47 http://deb.debian.org/debian stretch/main amd64 python3-minimal amd64 3.5.3-1 [35.3 kB] Get:48 http://deb.debian.org/debian stretch/main amd64 libmpdec2 amd64 2.4.2-1 [85.2 kB] Get:49 http://deb.debian.org/debian stretch/main amd64 libpython3-stdlib amd64 3.5.3-1 [18.6 kB] Get:50 http://deb.debian.org/debian stretch/main amd64 dh-python all 2.20170125 [86.8 kB] Get:51 http://deb.debian.org/debian stretch/main amd64 python3 amd64 3.5.3-1 [21.6 kB] Get:52 http://deb.debian.org/debian stretch/main amd64 sgml-base all 1.29 [14.8 kB] Get:53 http://deb.debian.org/debian stretch/main amd64 libassuan0 amd64 2.4.3-2 [42.5 kB] Get:54 http://deb.debian.org/debian stretch/main amd64 pinentry-curses amd64 1.0.0-2 [50.5 kB] Get:55 http://deb.debian.org/debian stretch/main amd64 libnpth0 amd64 1.3-1 [14.6 kB] Get:56 http://deb.debian.org/debian stretch/main amd64 gnupg-agent amd64 2.1.18-8~deb9u4 [554 kB] Get:57 http://deb.debian.org/debian stretch/main amd64 libksba8 amd64 1.3.5-2 [99.7 kB] Get:58 http://deb.debian.org/debian stretch/main amd64 gnupg amd64 2.1.18-8~deb9u4 [1128 kB] Get:59 http://security.debian.org/debian-security stretch/updates/main amd64 libpython3.5-stdlib amd64 3.5.3-1+deb9u5 [2167 kB] Get:60 http://deb.debian.org/debian stretch/main amd64 libpopt0 amd64 1.16-10+b2 [49.4 kB] Get:61 http://deb.debian.org/debian stretch/main amd64 netbase all 5.4 [19.1 kB] Get:62 http://deb.debian.org/debian stretch/main amd64 bzip2 amd64 1.0.6-8.1 [47.5 kB] Get:63 http://deb.debian.org/debian stretch/main amd64 libapparmor1 amd64 2.11.0-3+deb9u2 [78.9 kB] Get:64 http://deb.debian.org/debian stretch/main amd64 libdbus-1-3 amd64 1.10.32-0+deb9u1 [196 kB] Get:65 http://deb.debian.org/debian stretch/main amd64 dbus amd64 1.10.32-0+deb9u1 [213 kB] Get:66 http://deb.debian.org/debian stretch/main amd64 libmagic-mgc amd64 1:5.30-1+deb9u3 [222 kB] Get:67 http://deb.debian.org/debian stretch/main amd64 libmagic1 amd64 1:5.30-1+deb9u3 [111 kB] Get:68 http://deb.debian.org/debian stretch/main amd64 file amd64 1:5.30-1+deb9u3 [64.2 kB] Get:69 http://deb.debian.org/debian stretch/main amd64 less amd64 481-2.1 [126 kB] Get:70 http://deb.debian.org/debian stretch/main amd64 libncurses5 amd64 6.0+20161126-1+deb9u2 [93.4 kB] Get:71 http://deb.debian.org/debian stretch/main amd64 libedit2 amd64 3.1-20160903-3 [84.8 kB] Get:72 http://deb.debian.org/debian stretch/main amd64 libgpm2 amd64 1.20.4-6.2+b1 [34.2 kB] Get:73 http://deb.debian.org/debian stretch/main amd64 manpages all 4.10-2 [1222 kB] Get:74 http://security.debian.org/debian-security stretch/updates/main amd64 python3.5 amd64 3.5.3-1+deb9u5 [231 kB] Get:75 http://security.debian.org/debian-security stretch/updates/main amd64 libssl1.0.2 amd64 1.0.2u-1~deb9u7 [1305 kB] Get:76 http://deb.debian.org/debian stretch/main amd64 openssh-client amd64 1:7.4p1-10+deb9u7 [780 kB] Get:77 http://deb.debian.org/debian stretch/main amd64 binutils amd64 2.28-5 [3770 kB] Get:78 http://security.debian.org/debian-security stretch/updates/main amd64 krb5-locales all 1.15-1+deb9u3 [94.1 kB] Get:79 http://security.debian.org/debian-security stretch/updates/main amd64 libbsd0 amd64 0.8.3-1+deb9u1 [82.9 kB] Get:80 http://security.debian.org/debian-security stretch/updates/main amd64 libicu57 amd64 57.1-6+deb9u5 [7700 kB] Get:81 http://deb.debian.org/debian stretch/main amd64 libc-dev-bin amd64 2.24-11+deb9u4 [259 kB] Get:82 http://deb.debian.org/debian stretch/main amd64 libc6-dev amd64 2.24-11+deb9u4 [2364 kB] Get:83 http://deb.debian.org/debian stretch/main amd64 libisl15 amd64 0.18-1 [564 kB] Get:84 http://deb.debian.org/debian stretch/main amd64 libmpfr4 amd64 3.1.5-1 [556 kB] Get:85 http://deb.debian.org/debian stretch/main amd64 libmpc3 amd64 1.0.3-1+b2 [39.9 kB] Get:86 http://deb.debian.org/debian stretch/main amd64 cpp-6 amd64 6.3.0-18+deb9u1 [6584 kB] Get:87 http://security.debian.org/debian-security stretch/updates/main amd64 libxml2 amd64 2.9.4+dfsg1-2.2+deb9u7 [920 kB] Get:88 http://security.debian.org/debian-security stretch/updates/main amd64 xz-utils amd64 5.2.2-1.2+deb9u1 [266 kB] Get:89 http://security.debian.org/debian-security stretch/updates/main amd64 linux-libc-dev amd64 4.9.320-2 [1633 kB] Get:90 http://deb.debian.org/debian stretch/main amd64 cpp amd64 4:6.3.0-4 [18.7 kB] Get:91 http://deb.debian.org/debian stretch/main amd64 libcc1-0 amd64 6.3.0-18+deb9u1 [30.6 kB] Get:92 http://deb.debian.org/debian stretch/main amd64 libgomp1 amd64 6.3.0-18+deb9u1 [73.3 kB] Get:93 http://deb.debian.org/debian stretch/main amd64 libitm1 amd64 6.3.0-18+deb9u1 [27.3 kB] Get:94 http://deb.debian.org/debian stretch/main amd64 libatomic1 amd64 6.3.0-18+deb9u1 [8966 B] Get:95 http://deb.debian.org/debian stretch/main amd64 libasan3 amd64 6.3.0-18+deb9u1 [311 kB] Get:96 http://deb.debian.org/debian stretch/main amd64 liblsan0 amd64 6.3.0-18+deb9u1 [115 kB] Get:97 http://deb.debian.org/debian stretch/main amd64 libtsan0 amd64 6.3.0-18+deb9u1 [257 kB] Get:98 http://deb.debian.org/debian stretch/main amd64 libubsan0 amd64 6.3.0-18+deb9u1 [107 kB] Get:99 http://deb.debian.org/debian stretch/main amd64 libcilkrts5 amd64 6.3.0-18+deb9u1 [40.5 kB] Get:100 http://deb.debian.org/debian stretch/main amd64 libmpx2 amd64 6.3.0-18+deb9u1 [11.2 kB] Get:101 http://deb.debian.org/debian stretch/main amd64 libquadmath0 amd64 6.3.0-18+deb9u1 [131 kB] Get:102 http://deb.debian.org/debian stretch/main amd64 libgcc-6-dev amd64 6.3.0-18+deb9u1 [2296 kB] Get:103 http://security.debian.org/debian-security stretch/updates/main amd64 libdpkg-perl all 1.18.26 [1290 kB] Get:104 http://deb.debian.org/debian stretch/main amd64 gcc-6 amd64 6.3.0-18+deb9u1 [6900 kB] Get:105 http://security.debian.org/debian-security stretch/updates/main amd64 dpkg-dev all 1.18.26 [1597 kB] Get:106 http://security.debian.org/debian-security stretch/updates/main amd64 openssl amd64 1.1.0l-1~deb9u6 [749 kB] Get:107 http://security.debian.org/debian-security stretch/updates/main amd64 ca-certificates all 20200601~deb9u2 [168 kB] Get:108 http://security.debian.org/debian-security stretch/updates/main amd64 libcurl3 amd64 7.52.1-5+deb9u16 [298 kB] Get:109 http://security.debian.org/debian-security stretch/updates/main amd64 curl amd64 7.52.1-5+deb9u16 [229 kB] Get:110 http://security.debian.org/debian-security stretch/updates/main amd64 libglib2.0-0 amd64 2.50.3-2+deb9u3 [2693 kB] Get:111 http://deb.debian.org/debian stretch/main amd64 gcc amd64 4:6.3.0-4 [5196 B] Get:112 http://deb.debian.org/debian stretch/main amd64 libstdc++-6-dev amd64 6.3.0-18+deb9u1 [1420 kB] Get:113 http://deb.debian.org/debian stretch/main amd64 g++-6 amd64 6.3.0-18+deb9u1 [7094 kB] Get:114 http://security.debian.org/debian-security stretch/updates/main amd64 libonig4 amd64 6.1.3-2+deb9u2 [147 kB] Get:115 http://security.debian.org/debian-security stretch/updates/main amd64 libexpat1-dev amd64 2.2.0-2+deb9u5 [136 kB] Get:116 http://security.debian.org/debian-security stretch/updates/main amd64 libglib2.0-data all 2.50.3-2+deb9u3 [2519 kB] Get:117 http://security.debian.org/debian-security stretch/updates/main amd64 libpython3.5 amd64 3.5.3-1+deb9u5 [1372 kB] Get:118 http://deb.debian.org/debian stretch/main amd64 g++ amd64 4:6.3.0-4 [1546 B] Get:119 http://deb.debian.org/debian stretch/main amd64 make amd64 4.1-9.1 [302 kB] Get:120 http://deb.debian.org/debian stretch/main amd64 patch amd64 2.7.5-1+deb9u2 [112 kB] Get:121 http://deb.debian.org/debian stretch/main amd64 build-essential amd64 12.3 [7346 B] Get:122 http://deb.debian.org/debian stretch/main amd64 dirmngr amd64 2.1.18-8~deb9u4 [597 kB] Get:123 http://deb.debian.org/debian stretch/main amd64 libfakeroot amd64 1.21-3.1 [45.7 kB] Get:124 http://deb.debian.org/debian stretch/main amd64 fakeroot amd64 1.21-3.1 [85.6 kB] Get:125 http://deb.debian.org/debian stretch/main amd64 libgirepository-1.0-1 amd64 1.50.0-1+b1 [89.0 kB] Get:126 http://deb.debian.org/debian stretch/main amd64 gir1.2-glib-2.0 amd64 1.50.0-1+b1 [139 kB] Get:127 http://deb.debian.org/debian stretch/main amd64 libjq1 amd64 1.5+dfsg-1.3 [123 kB] Get:128 http://deb.debian.org/debian stretch/main amd64 jq amd64 1.5+dfsg-1.3 [58.6 kB] Get:129 http://deb.debian.org/debian stretch/main amd64 libalgorithm-diff-perl all 1.19.03-1 [48.7 kB] Get:130 http://deb.debian.org/debian stretch/main amd64 libalgorithm-diff-xs-perl amd64 0.04-4+b2 [11.6 kB] Get:131 http://deb.debian.org/debian stretch/main amd64 libalgorithm-merge-perl all 0.08-3 [12.7 kB] Get:132 http://deb.debian.org/debian stretch/main amd64 libdbus-glib-1-2 amd64 0.108-2 [206 kB] Get:133 http://deb.debian.org/debian stretch/main amd64 libffi-dev amd64 3.2.1-6 [161 kB] Get:134 http://deb.debian.org/debian stretch/main amd64 libfile-fcntllock-perl amd64 0.22-3+b2 [35.3 kB] Get:135 http://deb.debian.org/debian stretch/main amd64 libpython3-dev amd64 3.5.3-1 [18.7 kB] Get:136 http://deb.debian.org/debian stretch/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] Get:137 http://deb.debian.org/debian stretch/main amd64 libxcb1 amd64 1.12-1 [133 kB] Get:138 http://security.debian.org/debian-security stretch/updates/main amd64 libpython3.5-dev amd64 3.5.3-1+deb9u5 [37.7 MB] Get:139 http://deb.debian.org/debian stretch/main amd64 libxext6 amd64 2:1.3.3-1+b2 [52.5 kB] Get:140 http://deb.debian.org/debian stretch/main amd64 libxmuu1 amd64 2:1.1.2-2 [23.5 kB] Get:141 http://deb.debian.org/debian stretch/main amd64 manpages-dev all 4.10-2 [2145 kB] Get:142 http://deb.debian.org/debian stretch/main amd64 python3-cffi-backend amd64 1.9.1-2 [70.1 kB] Get:143 http://deb.debian.org/debian stretch/main amd64 python3-crypto amd64 2.6.1-7 [259 kB] Get:144 http://deb.debian.org/debian stretch/main amd64 python3-idna all 2.2-1 [32.7 kB] Get:145 http://deb.debian.org/debian stretch/main amd64 python3-pyasn1 all 0.1.9-2 [34.5 kB] Get:146 http://deb.debian.org/debian stretch/main amd64 python3-pkg-resources all 33.1.1-1 [137 kB] Get:147 http://deb.debian.org/debian stretch/main amd64 python3-setuptools all 33.1.1-1 [215 kB] Get:148 http://deb.debian.org/debian stretch/main amd64 python3-six all 1.10.0-3 [14.4 kB] Get:149 http://deb.debian.org/debian stretch/main amd64 python3-cryptography amd64 1.7.1-3+deb9u2 [211 kB] Get:150 http://deb.debian.org/debian stretch/main amd64 python3-dbus amd64 1.2.4-1+b1 [184 kB] Get:151 http://deb.debian.org/debian stretch/main amd64 python3-dev amd64 3.5.3-1 [1154 B] Get:152 http://deb.debian.org/debian stretch/main amd64 python3-gi amd64 3.22.0-2 [473 kB] Get:153 http://deb.debian.org/debian stretch/main amd64 python3-secretstorage all 2.3.1-2 [14.2 kB] Get:154 http://deb.debian.org/debian stretch/main amd64 python3-keyring all 10.1-1 [36.8 kB] Get:155 http://deb.debian.org/debian stretch/main amd64 python3-keyrings.alt all 1.3-1 [16.2 kB] Get:156 http://deb.debian.org/debian stretch/main amd64 python3-wheel all 0.29.0-2 [51.8 kB] Get:157 http://deb.debian.org/debian stretch/main amd64 rename all 0.20-4 [12.5 kB] Get:158 http://deb.debian.org/debian stretch/main amd64 shared-mime-info amd64 1.8-1+deb9u1 [731 kB] Get:159 http://deb.debian.org/debian stretch/main amd64 xauth amd64 1:1.0.9-1+b2 [39.6 kB] Get:160 http://deb.debian.org/debian stretch/main amd64 xdg-user-dirs amd64 0.15-2+b1 [52.2 kB] Get:161 http://deb.debian.org/debian stretch/main amd64 xml-core all 0.17 [23.2 kB] Get:162 http://deb.debian.org/debian stretch/main amd64 gnupg-l10n all 2.1.18-8~deb9u4 [893 kB] Get:163 http://deb.debian.org/debian stretch/main amd64 publicsuffix all 20190415.1030-0+deb9u1 [108 kB] Get:164 http://security.debian.org/debian-security stretch/updates/main amd64 libsasl2-modules amd64 2.1.27~101-g0780600+dfsg-3+deb9u2 [102 kB] Get:165 http://security.debian.org/debian-security stretch/updates/main amd64 libx11-data all 2:1.6.4-3+deb9u4 [291 kB] Get:166 http://security.debian.org/debian-security stretch/updates/main amd64 libx11-6 amd64 2:1.6.4-3+deb9u4 [748 kB] Get:167 http://security.debian.org/debian-security stretch/updates/main amd64 python-pip-whl all 9.0.1-2+deb9u2 [1399 kB] Get:168 http://security.debian.org/debian-security stretch/updates/main amd64 python3.5-dev amd64 3.5.3-1+deb9u5 [413 kB] Get:169 http://security.debian.org/debian-security stretch/updates/main amd64 python3-pip all 9.0.1-2+deb9u2 [143 kB] Get:170 http://security.debian.org/debian-security stretch/updates/main amd64 python3-xdg all 0.25-4+deb9u1 [35.6 kB] Get:171 http://security.debian.org/debian-security stretch/updates/main amd64 rsync amd64 3.1.2-1+deb9u3 [393 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 138 MB in 29s (4701 kB/s) Selecting previously unselected package perl-modules-5.24. (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 ... 6502 files and directories currently installed.) Preparing to unpack .../00-perl-modules-5.24_5.24.1-3+deb9u7_all.deb ... Unpacking perl-modules-5.24 (5.24.1-3+deb9u7) ... Selecting previously unselected package libgdbm3:amd64. Preparing to unpack .../01-libgdbm3_1.8.3-14_amd64.deb ... Unpacking libgdbm3:amd64 (1.8.3-14) ... Selecting previously unselected package libperl5.24:amd64. Preparing to unpack .../02-libperl5.24_5.24.1-3+deb9u7_amd64.deb ... Unpacking libperl5.24:amd64 (5.24.1-3+deb9u7) ... Selecting previously unselected package perl. Preparing to unpack .../03-perl_5.24.1-3+deb9u7_amd64.deb ... Unpacking perl (5.24.1-3+deb9u7) ... Selecting previously unselected package libpython2.7-minimal:amd64. Preparing to unpack .../04-libpython2.7-minimal_2.7.13-2+deb9u6_amd64.deb ... Unpacking libpython2.7-minimal:amd64 (2.7.13-2+deb9u6) ... Selecting previously unselected package python2.7-minimal. Preparing to unpack .../05-python2.7-minimal_2.7.13-2+deb9u6_amd64.deb ... Unpacking python2.7-minimal (2.7.13-2+deb9u6) ... Selecting previously unselected package python-minimal. Preparing to unpack .../06-python-minimal_2.7.13-2_amd64.deb ... Unpacking python-minimal (2.7.13-2) ... Selecting previously unselected package mime-support. Preparing to unpack .../07-mime-support_3.60_all.deb ... Unpacking mime-support (3.60) ... Selecting previously unselected package libexpat1:amd64. Preparing to unpack .../08-libexpat1_2.2.0-2+deb9u5_amd64.deb ... Unpacking libexpat1:amd64 (2.2.0-2+deb9u5) ... Selecting previously unselected package libffi6:amd64. Preparing to unpack .../09-libffi6_3.2.1-6_amd64.deb ... Unpacking libffi6:amd64 (3.2.1-6) ... Selecting previously unselected package readline-common. Preparing to unpack .../10-readline-common_7.0-3_all.deb ... Unpacking readline-common (7.0-3) ... Selecting previously unselected package libreadline7:amd64. Preparing to unpack .../11-libreadline7_7.0-3_amd64.deb ... Unpacking libreadline7:amd64 (7.0-3) ... Selecting previously unselected package libsqlite3-0:amd64. Preparing to unpack .../12-libsqlite3-0_3.16.2-5+deb9u3_amd64.deb ... Unpacking libsqlite3-0:amd64 (3.16.2-5+deb9u3) ... Selecting previously unselected package libssl1.1:amd64. Preparing to unpack .../13-libssl1.1_1.1.0l-1~deb9u6_amd64.deb ... Unpacking libssl1.1:amd64 (1.1.0l-1~deb9u6) ... Selecting previously unselected package libpython2.7-stdlib:amd64. Preparing to unpack .../14-libpython2.7-stdlib_2.7.13-2+deb9u6_amd64.deb ... Unpacking libpython2.7-stdlib:amd64 (2.7.13-2+deb9u6) ... Selecting previously unselected package python2.7. Preparing to unpack .../15-python2.7_2.7.13-2+deb9u6_amd64.deb ... Unpacking python2.7 (2.7.13-2+deb9u6) ... Selecting previously unselected package libpython-stdlib:amd64. Preparing to unpack .../16-libpython-stdlib_2.7.13-2_amd64.deb ... Unpacking libpython-stdlib:amd64 (2.7.13-2) ... Setting up libpython2.7-minimal:amd64 (2.7.13-2+deb9u6) ... Setting up python2.7-minimal (2.7.13-2+deb9u6) ... Linking and byte-compiling packages for runtime python2.7... Setting up python-minimal (2.7.13-2) ... Selecting previously unselected package python. (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 ... 9153 files and directories currently installed.) Preparing to unpack .../00-python_2.7.13-2_amd64.deb ... Unpacking python (2.7.13-2) ... Selecting previously unselected package libgmp10:amd64. Preparing to unpack .../01-libgmp10_2%3a6.1.2+dfsg-1+deb9u1_amd64.deb ... Unpacking libgmp10:amd64 (2:6.1.2+dfsg-1+deb9u1) ... Selecting previously unselected package libhogweed4:amd64. Preparing to unpack .../02-libhogweed4_3.3-1+deb9u1_amd64.deb ... Unpacking libhogweed4:amd64 (3.3-1+deb9u1) ... Selecting previously unselected package libp11-kit0:amd64. Preparing to unpack .../03-libp11-kit0_0.23.3-2+deb9u1_amd64.deb ... Unpacking libp11-kit0:amd64 (0.23.3-2+deb9u1) ... Selecting previously unselected package libtasn1-6:amd64. Preparing to unpack .../04-libtasn1-6_4.10-1.1+deb9u1_amd64.deb ... Unpacking libtasn1-6:amd64 (4.10-1.1+deb9u1) ... Selecting previously unselected package libgnutls30:amd64. Preparing to unpack .../05-libgnutls30_3.5.8-5+deb9u6_amd64.deb ... Unpacking libgnutls30:amd64 (3.5.8-5+deb9u6) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../06-libkeyutils1_1.5.9-9_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-9) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../07-libkrb5support0_1.15-1+deb9u3_amd64.deb ... Unpacking libkrb5support0:amd64 (1.15-1+deb9u3) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../08-libk5crypto3_1.15-1+deb9u3_amd64.deb ... Unpacking libk5crypto3:amd64 (1.15-1+deb9u3) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../09-libkrb5-3_1.15-1+deb9u3_amd64.deb ... Unpacking libkrb5-3:amd64 (1.15-1+deb9u3) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../10-libgssapi-krb5-2_1.15-1+deb9u3_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.15-1+deb9u3) ... Selecting previously unselected package libunistring0:amd64. Preparing to unpack .../11-libunistring0_0.9.6+really0.9.3-0.1_amd64.deb ... Unpacking libunistring0:amd64 (0.9.6+really0.9.3-0.1) ... Selecting previously unselected package libidn2-0:amd64. Preparing to unpack .../12-libidn2-0_0.16-1+deb9u1_amd64.deb ... Unpacking libidn2-0:amd64 (0.16-1+deb9u1) ... Selecting previously unselected package libsasl2-modules-db:amd64. Preparing to unpack .../13-libsasl2-modules-db_2.1.27~101-g0780600+dfsg-3+deb9u2_amd64.deb ... Unpacking libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u2) ... Selecting previously unselected package libsasl2-2:amd64. Preparing to unpack .../14-libsasl2-2_2.1.27~101-g0780600+dfsg-3+deb9u2_amd64.deb ... Unpacking libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u2) ... Selecting previously unselected package libldap-common. Preparing to unpack .../15-libldap-common_2.4.44+dfsg-5+deb9u9_all.deb ... Unpacking libldap-common (2.4.44+dfsg-5+deb9u9) ... Selecting previously unselected package libldap-2.4-2:amd64. Preparing to unpack .../16-libldap-2.4-2_2.4.44+dfsg-5+deb9u9_amd64.deb ... Unpacking libldap-2.4-2:amd64 (2.4.44+dfsg-5+deb9u9) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../17-libnghttp2-14_1.18.1-1+deb9u2_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.18.1-1+deb9u2) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../18-libpsl5_0.17.0-3_amd64.deb ... Unpacking libpsl5:amd64 (0.17.0-3) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../19-librtmp1_2.4+20151223.gitfa8646d.1-1+b1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1+b1) ... Selecting previously unselected package libssh2-1:amd64. Preparing to unpack .../20-libssh2-1_1.7.0-1+deb9u2_amd64.deb ... Unpacking libssh2-1:amd64 (1.7.0-1+deb9u2) ... Selecting previously unselected package libcurl3-gnutls:amd64. Preparing to unpack .../21-libcurl3-gnutls_7.52.1-5+deb9u16_amd64.deb ... Unpacking libcurl3-gnutls:amd64 (7.52.1-5+deb9u16) ... Selecting previously unselected package liberror-perl. Preparing to unpack .../22-liberror-perl_0.17024-1_all.deb ... Unpacking liberror-perl (0.17024-1) ... Selecting previously unselected package git-man. Preparing to unpack .../23-git-man_1%3a2.11.0-3+deb9u7_all.deb ... Unpacking git-man (1:2.11.0-3+deb9u7) ... Selecting previously unselected package git. Preparing to unpack .../24-git_1%3a2.11.0-3+deb9u7_amd64.deb ... Unpacking git (1:2.11.0-3+deb9u7) ... Selecting previously unselected package liblocale-gettext-perl. Preparing to unpack .../25-liblocale-gettext-perl_1.07-3+b1_amd64.deb ... Unpacking liblocale-gettext-perl (1.07-3+b1) ... Selecting previously unselected package libxau6:amd64. Preparing to unpack .../26-libxau6_1%3a1.0.8-1_amd64.deb ... Unpacking libxau6:amd64 (1:1.0.8-1) ... Selecting previously unselected package libpython3.5-minimal:amd64. Preparing to unpack .../27-libpython3.5-minimal_3.5.3-1+deb9u5_amd64.deb ... Unpacking libpython3.5-minimal:amd64 (3.5.3-1+deb9u5) ... Selecting previously unselected package python3.5-minimal. Preparing to unpack .../28-python3.5-minimal_3.5.3-1+deb9u5_amd64.deb ... Unpacking python3.5-minimal (3.5.3-1+deb9u5) ... Selecting previously unselected package python3-minimal. Preparing to unpack .../29-python3-minimal_3.5.3-1_amd64.deb ... Unpacking python3-minimal (3.5.3-1) ... Selecting previously unselected package libmpdec2:amd64. Preparing to unpack .../30-libmpdec2_2.4.2-1_amd64.deb ... Unpacking libmpdec2:amd64 (2.4.2-1) ... Selecting previously unselected package libpython3.5-stdlib:amd64. Preparing to unpack .../31-libpython3.5-stdlib_3.5.3-1+deb9u5_amd64.deb ... Unpacking libpython3.5-stdlib:amd64 (3.5.3-1+deb9u5) ... Selecting previously unselected package python3.5. Preparing to unpack .../32-python3.5_3.5.3-1+deb9u5_amd64.deb ... Unpacking python3.5 (3.5.3-1+deb9u5) ... Selecting previously unselected package libpython3-stdlib:amd64. Preparing to unpack .../33-libpython3-stdlib_3.5.3-1_amd64.deb ... Unpacking libpython3-stdlib:amd64 (3.5.3-1) ... Selecting previously unselected package dh-python. Preparing to unpack .../34-dh-python_2.20170125_all.deb ... Unpacking dh-python (2.20170125) ... Setting up libssl1.1:amd64 (1.1.0l-1~deb9u6) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline Setting up libpython3.5-minimal:amd64 (3.5.3-1+deb9u5) ... Setting up libexpat1:amd64 (2.2.0-2+deb9u5) ... Setting up python3.5-minimal (3.5.3-1+deb9u5) ... Setting up python3-minimal (3.5.3-1) ... Selecting previously unselected package python3. (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 ... 11211 files and directories currently installed.) Preparing to unpack .../000-python3_3.5.3-1_amd64.deb ... Unpacking python3 (3.5.3-1) ... Selecting previously unselected package sgml-base. Preparing to unpack .../001-sgml-base_1.29_all.deb ... Unpacking sgml-base (1.29) ... Selecting previously unselected package libassuan0:amd64. Preparing to unpack .../002-libassuan0_2.4.3-2_amd64.deb ... Unpacking libassuan0:amd64 (2.4.3-2) ... Selecting previously unselected package pinentry-curses. Preparing to unpack .../003-pinentry-curses_1.0.0-2_amd64.deb ... Unpacking pinentry-curses (1.0.0-2) ... Selecting previously unselected package libnpth0:amd64. Preparing to unpack .../004-libnpth0_1.3-1_amd64.deb ... Unpacking libnpth0:amd64 (1.3-1) ... Selecting previously unselected package gnupg-agent. Preparing to unpack .../005-gnupg-agent_2.1.18-8~deb9u4_amd64.deb ... Unpacking gnupg-agent (2.1.18-8~deb9u4) ... Selecting previously unselected package libksba8:amd64. Preparing to unpack .../006-libksba8_1.3.5-2_amd64.deb ... Unpacking libksba8:amd64 (1.3.5-2) ... Selecting previously unselected package gnupg. Preparing to unpack .../007-gnupg_2.1.18-8~deb9u4_amd64.deb ... Unpacking gnupg (2.1.18-8~deb9u4) ... Selecting previously unselected package libpopt0:amd64. Preparing to unpack .../008-libpopt0_1.16-10+b2_amd64.deb ... Unpacking libpopt0:amd64 (1.16-10+b2) ... Selecting previously unselected package libssl1.0.2:amd64. Preparing to unpack .../009-libssl1.0.2_1.0.2u-1~deb9u7_amd64.deb ... Unpacking libssl1.0.2:amd64 (1.0.2u-1~deb9u7) ... Selecting previously unselected package netbase. Preparing to unpack .../010-netbase_5.4_all.deb ... Unpacking netbase (5.4) ... Selecting previously unselected package bzip2. Preparing to unpack .../011-bzip2_1.0.6-8.1_amd64.deb ... Unpacking bzip2 (1.0.6-8.1) ... Selecting previously unselected package libapparmor1:amd64. Preparing to unpack .../012-libapparmor1_2.11.0-3+deb9u2_amd64.deb ... Unpacking libapparmor1:amd64 (2.11.0-3+deb9u2) ... Selecting previously unselected package libdbus-1-3:amd64. Preparing to unpack .../013-libdbus-1-3_1.10.32-0+deb9u1_amd64.deb ... Unpacking libdbus-1-3:amd64 (1.10.32-0+deb9u1) ... Selecting previously unselected package dbus. Preparing to unpack .../014-dbus_1.10.32-0+deb9u1_amd64.deb ... Unpacking dbus (1.10.32-0+deb9u1) ... Selecting previously unselected package libmagic-mgc. Preparing to unpack .../015-libmagic-mgc_1%3a5.30-1+deb9u3_amd64.deb ... Unpacking libmagic-mgc (1:5.30-1+deb9u3) ... Selecting previously unselected package libmagic1:amd64. Preparing to unpack .../016-libmagic1_1%3a5.30-1+deb9u3_amd64.deb ... Unpacking libmagic1:amd64 (1:5.30-1+deb9u3) ... Selecting previously unselected package file. Preparing to unpack .../017-file_1%3a5.30-1+deb9u3_amd64.deb ... Unpacking file (1:5.30-1+deb9u3) ... Selecting previously unselected package krb5-locales. Preparing to unpack .../018-krb5-locales_1.15-1+deb9u3_all.deb ... Unpacking krb5-locales (1.15-1+deb9u3) ... Selecting previously unselected package less. Preparing to unpack .../019-less_481-2.1_amd64.deb ... Unpacking less (481-2.1) ... Selecting previously unselected package libbsd0:amd64. Preparing to unpack .../020-libbsd0_0.8.3-1+deb9u1_amd64.deb ... Unpacking libbsd0:amd64 (0.8.3-1+deb9u1) ... Selecting previously unselected package libncurses5:amd64. Preparing to unpack .../021-libncurses5_6.0+20161126-1+deb9u2_amd64.deb ... Unpacking libncurses5:amd64 (6.0+20161126-1+deb9u2) ... Selecting previously unselected package libedit2:amd64. Preparing to unpack .../022-libedit2_3.1-20160903-3_amd64.deb ... Unpacking libedit2:amd64 (3.1-20160903-3) ... Selecting previously unselected package libgpm2:amd64. Preparing to unpack .../023-libgpm2_1.20.4-6.2+b1_amd64.deb ... Unpacking libgpm2:amd64 (1.20.4-6.2+b1) ... Selecting previously unselected package libicu57:amd64. Preparing to unpack .../024-libicu57_57.1-6+deb9u5_amd64.deb ... Unpacking libicu57:amd64 (57.1-6+deb9u5) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../025-libxml2_2.9.4+dfsg1-2.2+deb9u7_amd64.deb ... Unpacking libxml2:amd64 (2.9.4+dfsg1-2.2+deb9u7) ... Selecting previously unselected package manpages. Preparing to unpack .../026-manpages_4.10-2_all.deb ... Unpacking manpages (4.10-2) ... Selecting previously unselected package openssh-client. Preparing to unpack .../027-openssh-client_1%3a7.4p1-10+deb9u7_amd64.deb ... Unpacking openssh-client (1:7.4p1-10+deb9u7) ... Selecting previously unselected package xz-utils. Preparing to unpack .../028-xz-utils_5.2.2-1.2+deb9u1_amd64.deb ... Unpacking xz-utils (5.2.2-1.2+deb9u1) ... Selecting previously unselected package binutils. Preparing to unpack .../029-binutils_2.28-5_amd64.deb ... Unpacking binutils (2.28-5) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../030-libc-dev-bin_2.24-11+deb9u4_amd64.deb ... Unpacking libc-dev-bin (2.24-11+deb9u4) ... Selecting previously unselected package linux-libc-dev:amd64. Preparing to unpack .../031-linux-libc-dev_4.9.320-2_amd64.deb ... Unpacking linux-libc-dev:amd64 (4.9.320-2) ... Selecting previously unselected package libc6-dev:amd64. Preparing to unpack .../032-libc6-dev_2.24-11+deb9u4_amd64.deb ... Unpacking libc6-dev:amd64 (2.24-11+deb9u4) ... Selecting previously unselected package libisl15:amd64. Preparing to unpack .../033-libisl15_0.18-1_amd64.deb ... Unpacking libisl15:amd64 (0.18-1) ... Selecting previously unselected package libmpfr4:amd64. Preparing to unpack .../034-libmpfr4_3.1.5-1_amd64.deb ... Unpacking libmpfr4:amd64 (3.1.5-1) ... Selecting previously unselected package libmpc3:amd64. Preparing to unpack .../035-libmpc3_1.0.3-1+b2_amd64.deb ... Unpacking libmpc3:amd64 (1.0.3-1+b2) ... Selecting previously unselected package cpp-6. Preparing to unpack .../036-cpp-6_6.3.0-18+deb9u1_amd64.deb ... Unpacking cpp-6 (6.3.0-18+deb9u1) ... Selecting previously unselected package cpp. Preparing to unpack .../037-cpp_4%3a6.3.0-4_amd64.deb ... Unpacking cpp (4:6.3.0-4) ... Selecting previously unselected package libcc1-0:amd64. Preparing to unpack .../038-libcc1-0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libcc1-0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libgomp1:amd64. Preparing to unpack .../039-libgomp1_6.3.0-18+deb9u1_amd64.deb ... Unpacking libgomp1:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libitm1:amd64. Preparing to unpack .../040-libitm1_6.3.0-18+deb9u1_amd64.deb ... Unpacking libitm1:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libatomic1:amd64. Preparing to unpack .../041-libatomic1_6.3.0-18+deb9u1_amd64.deb ... Unpacking libatomic1:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libasan3:amd64. Preparing to unpack .../042-libasan3_6.3.0-18+deb9u1_amd64.deb ... Unpacking libasan3:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package liblsan0:amd64. Preparing to unpack .../043-liblsan0_6.3.0-18+deb9u1_amd64.deb ... Unpacking liblsan0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libtsan0:amd64. Preparing to unpack .../044-libtsan0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libtsan0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libubsan0:amd64. Preparing to unpack .../045-libubsan0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libubsan0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libcilkrts5:amd64. Preparing to unpack .../046-libcilkrts5_6.3.0-18+deb9u1_amd64.deb ... Unpacking libcilkrts5:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libmpx2:amd64. Preparing to unpack .../047-libmpx2_6.3.0-18+deb9u1_amd64.deb ... Unpacking libmpx2:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libquadmath0:amd64. Preparing to unpack .../048-libquadmath0_6.3.0-18+deb9u1_amd64.deb ... Unpacking libquadmath0:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package libgcc-6-dev:amd64. Preparing to unpack .../049-libgcc-6-dev_6.3.0-18+deb9u1_amd64.deb ... Unpacking libgcc-6-dev:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package gcc-6. Preparing to unpack .../050-gcc-6_6.3.0-18+deb9u1_amd64.deb ... Unpacking gcc-6 (6.3.0-18+deb9u1) ... Selecting previously unselected package gcc. Preparing to unpack .../051-gcc_4%3a6.3.0-4_amd64.deb ... Unpacking gcc (4:6.3.0-4) ... Selecting previously unselected package libstdc++-6-dev:amd64. Preparing to unpack .../052-libstdc++-6-dev_6.3.0-18+deb9u1_amd64.deb ... Unpacking libstdc++-6-dev:amd64 (6.3.0-18+deb9u1) ... Selecting previously unselected package g++-6. Preparing to unpack .../053-g++-6_6.3.0-18+deb9u1_amd64.deb ... Unpacking g++-6 (6.3.0-18+deb9u1) ... Selecting previously unselected package g++. Preparing to unpack .../054-g++_4%3a6.3.0-4_amd64.deb ... Unpacking g++ (4:6.3.0-4) ... Selecting previously unselected package make. Preparing to unpack .../055-make_4.1-9.1_amd64.deb ... Unpacking make (4.1-9.1) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../056-libdpkg-perl_1.18.26_all.deb ... Unpacking libdpkg-perl (1.18.26) ... Selecting previously unselected package patch. Preparing to unpack .../057-patch_2.7.5-1+deb9u2_amd64.deb ... Unpacking patch (2.7.5-1+deb9u2) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../058-dpkg-dev_1.18.26_all.deb ... Unpacking dpkg-dev (1.18.26) ... Selecting previously unselected package build-essential. Preparing to unpack .../059-build-essential_12.3_amd64.deb ... Unpacking build-essential (12.3) ... Selecting previously unselected package openssl. Preparing to unpack .../060-openssl_1.1.0l-1~deb9u6_amd64.deb ... Unpacking openssl (1.1.0l-1~deb9u6) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../061-ca-certificates_20200601~deb9u2_all.deb ... Unpacking ca-certificates (20200601~deb9u2) ... Selecting previously unselected package libcurl3:amd64. Preparing to unpack .../062-libcurl3_7.52.1-5+deb9u16_amd64.deb ... Unpacking libcurl3:amd64 (7.52.1-5+deb9u16) ... Selecting previously unselected package curl. Preparing to unpack .../063-curl_7.52.1-5+deb9u16_amd64.deb ... Unpacking curl (7.52.1-5+deb9u16) ... Selecting previously unselected package dirmngr. Preparing to unpack .../064-dirmngr_2.1.18-8~deb9u4_amd64.deb ... Unpacking dirmngr (2.1.18-8~deb9u4) ... Selecting previously unselected package libfakeroot:amd64. Preparing to unpack .../065-libfakeroot_1.21-3.1_amd64.deb ... Unpacking libfakeroot:amd64 (1.21-3.1) ... Selecting previously unselected package fakeroot. Preparing to unpack .../066-fakeroot_1.21-3.1_amd64.deb ... Unpacking fakeroot (1.21-3.1) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../067-libglib2.0-0_2.50.3-2+deb9u3_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.50.3-2+deb9u3) ... Selecting previously unselected package libgirepository-1.0-1:amd64. Preparing to unpack .../068-libgirepository-1.0-1_1.50.0-1+b1_amd64.deb ... Unpacking libgirepository-1.0-1:amd64 (1.50.0-1+b1) ... Selecting previously unselected package gir1.2-glib-2.0:amd64. Preparing to unpack .../069-gir1.2-glib-2.0_1.50.0-1+b1_amd64.deb ... Unpacking gir1.2-glib-2.0:amd64 (1.50.0-1+b1) ... Selecting previously unselected package libonig4:amd64. Preparing to unpack .../070-libonig4_6.1.3-2+deb9u2_amd64.deb ... Unpacking libonig4:amd64 (6.1.3-2+deb9u2) ... Selecting previously unselected package libjq1:amd64. Preparing to unpack .../071-libjq1_1.5+dfsg-1.3_amd64.deb ... Unpacking libjq1:amd64 (1.5+dfsg-1.3) ... Selecting previously unselected package jq. Preparing to unpack .../072-jq_1.5+dfsg-1.3_amd64.deb ... Unpacking jq (1.5+dfsg-1.3) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../073-libalgorithm-diff-perl_1.19.03-1_all.deb ... Unpacking libalgorithm-diff-perl (1.19.03-1) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../074-libalgorithm-diff-xs-perl_0.04-4+b2_amd64.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-4+b2) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../075-libalgorithm-merge-perl_0.08-3_all.deb ... Unpacking libalgorithm-merge-perl (0.08-3) ... Selecting previously unselected package libdbus-glib-1-2:amd64. Preparing to unpack .../076-libdbus-glib-1-2_0.108-2_amd64.deb ... Unpacking libdbus-glib-1-2:amd64 (0.108-2) ... Selecting previously unselected package libexpat1-dev:amd64. Preparing to unpack .../077-libexpat1-dev_2.2.0-2+deb9u5_amd64.deb ... Unpacking libexpat1-dev:amd64 (2.2.0-2+deb9u5) ... Selecting previously unselected package libffi-dev:amd64. Preparing to unpack .../078-libffi-dev_3.2.1-6_amd64.deb ... Unpacking libffi-dev:amd64 (3.2.1-6) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../079-libfile-fcntllock-perl_0.22-3+b2_amd64.deb ... Unpacking libfile-fcntllock-perl (0.22-3+b2) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../080-libglib2.0-data_2.50.3-2+deb9u3_all.deb ... Unpacking libglib2.0-data (2.50.3-2+deb9u3) ... Selecting previously unselected package libpython3.5:amd64. Preparing to unpack .../081-libpython3.5_3.5.3-1+deb9u5_amd64.deb ... Unpacking libpython3.5:amd64 (3.5.3-1+deb9u5) ... Selecting previously unselected package libpython3.5-dev:amd64. Preparing to unpack .../082-libpython3.5-dev_3.5.3-1+deb9u5_amd64.deb ... Unpacking libpython3.5-dev:amd64 (3.5.3-1+deb9u5) ... Selecting previously unselected package libpython3-dev:amd64. Preparing to unpack .../083-libpython3-dev_3.5.3-1_amd64.deb ... Unpacking libpython3-dev:amd64 (3.5.3-1) ... Selecting previously unselected package libsasl2-modules:amd64. Preparing to unpack .../084-libsasl2-modules_2.1.27~101-g0780600+dfsg-3+deb9u2_amd64.deb ... Unpacking libsasl2-modules:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u2) ... Selecting previously unselected package libxdmcp6:amd64. Preparing to unpack .../085-libxdmcp6_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... Selecting previously unselected package libxcb1:amd64. Preparing to unpack .../086-libxcb1_1.12-1_amd64.deb ... Unpacking libxcb1:amd64 (1.12-1) ... Selecting previously unselected package libx11-data. Preparing to unpack .../087-libx11-data_2%3a1.6.4-3+deb9u4_all.deb ... Unpacking libx11-data (2:1.6.4-3+deb9u4) ... Selecting previously unselected package libx11-6:amd64. Preparing to unpack .../088-libx11-6_2%3a1.6.4-3+deb9u4_amd64.deb ... Unpacking libx11-6:amd64 (2:1.6.4-3+deb9u4) ... Selecting previously unselected package libxext6:amd64. Preparing to unpack .../089-libxext6_2%3a1.3.3-1+b2_amd64.deb ... Unpacking libxext6:amd64 (2:1.3.3-1+b2) ... Selecting previously unselected package libxmuu1:amd64. Preparing to unpack .../090-libxmuu1_2%3a1.1.2-2_amd64.deb ... Unpacking libxmuu1:amd64 (2:1.1.2-2) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../091-manpages-dev_4.10-2_all.deb ... Unpacking manpages-dev (4.10-2) ... Selecting previously unselected package python-pip-whl. Preparing to unpack .../092-python-pip-whl_9.0.1-2+deb9u2_all.deb ... Unpacking python-pip-whl (9.0.1-2+deb9u2) ... Selecting previously unselected package python3-cffi-backend. Preparing to unpack .../093-python3-cffi-backend_1.9.1-2_amd64.deb ... Unpacking python3-cffi-backend (1.9.1-2) ... Selecting previously unselected package python3-crypto. Preparing to unpack .../094-python3-crypto_2.6.1-7_amd64.deb ... Unpacking python3-crypto (2.6.1-7) ... Selecting previously unselected package python3-idna. Preparing to unpack .../095-python3-idna_2.2-1_all.deb ... Unpacking python3-idna (2.2-1) ... Selecting previously unselected package python3-pyasn1. Preparing to unpack .../096-python3-pyasn1_0.1.9-2_all.deb ... Unpacking python3-pyasn1 (0.1.9-2) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../097-python3-pkg-resources_33.1.1-1_all.deb ... Unpacking python3-pkg-resources (33.1.1-1) ... Selecting previously unselected package python3-setuptools. Preparing to unpack .../098-python3-setuptools_33.1.1-1_all.deb ... Unpacking python3-setuptools (33.1.1-1) ... Selecting previously unselected package python3-six. Preparing to unpack .../099-python3-six_1.10.0-3_all.deb ... Unpacking python3-six (1.10.0-3) ... Selecting previously unselected package python3-cryptography. Preparing to unpack .../100-python3-cryptography_1.7.1-3+deb9u2_amd64.deb ... Unpacking python3-cryptography (1.7.1-3+deb9u2) ... Selecting previously unselected package python3-dbus. Preparing to unpack .../101-python3-dbus_1.2.4-1+b1_amd64.deb ... Unpacking python3-dbus (1.2.4-1+b1) ... Selecting previously unselected package python3.5-dev. Preparing to unpack .../102-python3.5-dev_3.5.3-1+deb9u5_amd64.deb ... Unpacking python3.5-dev (3.5.3-1+deb9u5) ... Selecting previously unselected package python3-dev. Preparing to unpack .../103-python3-dev_3.5.3-1_amd64.deb ... Unpacking python3-dev (3.5.3-1) ... Selecting previously unselected package python3-gi. Preparing to unpack .../104-python3-gi_3.22.0-2_amd64.deb ... Unpacking python3-gi (3.22.0-2) ... Selecting previously unselected package python3-secretstorage. Preparing to unpack .../105-python3-secretstorage_2.3.1-2_all.deb ... Unpacking python3-secretstorage (2.3.1-2) ... Selecting previously unselected package python3-keyring. Preparing to unpack .../106-python3-keyring_10.1-1_all.deb ... Unpacking python3-keyring (10.1-1) ... Selecting previously unselected package python3-keyrings.alt. Preparing to unpack .../107-python3-keyrings.alt_1.3-1_all.deb ... Unpacking python3-keyrings.alt (1.3-1) ... Selecting previously unselected package python3-pip. Preparing to unpack .../108-python3-pip_9.0.1-2+deb9u2_all.deb ... Unpacking python3-pip (9.0.1-2+deb9u2) ... Selecting previously unselected package python3-wheel. Preparing to unpack .../109-python3-wheel_0.29.0-2_all.deb ... Unpacking python3-wheel (0.29.0-2) ... Selecting previously unselected package python3-xdg. Preparing to unpack .../110-python3-xdg_0.25-4+deb9u1_all.deb ... Unpacking python3-xdg (0.25-4+deb9u1) ... Selecting previously unselected package rename. Preparing to unpack .../111-rename_0.20-4_all.deb ... Unpacking rename (0.20-4) ... Selecting previously unselected package rsync. Preparing to unpack .../112-rsync_3.1.2-1+deb9u3_amd64.deb ... Unpacking rsync (3.1.2-1+deb9u3) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../113-shared-mime-info_1.8-1+deb9u1_amd64.deb ... Unpacking shared-mime-info (1.8-1+deb9u1) ... Selecting previously unselected package xauth. Preparing to unpack .../114-xauth_1%3a1.0.9-1+b2_amd64.deb ... Unpacking xauth (1:1.0.9-1+b2) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../115-xdg-user-dirs_0.15-2+b1_amd64.deb ... Unpacking xdg-user-dirs (0.15-2+b1) ... Selecting previously unselected package xml-core. Preparing to unpack .../116-xml-core_0.17_all.deb ... Unpacking xml-core (0.17) ... Selecting previously unselected package gnupg-l10n. Preparing to unpack .../117-gnupg-l10n_2.1.18-8~deb9u4_all.deb ... Unpacking gnupg-l10n (2.1.18-8~deb9u4) ... Selecting previously unselected package publicsuffix. Preparing to unpack .../118-publicsuffix_20190415.1030-0+deb9u1_all.deb ... Unpacking publicsuffix (20190415.1030-0+deb9u1) ... Setting up libquadmath0:amd64 (6.3.0-18+deb9u1) ... Setting up libnpth0:amd64 (1.3-1) ... Setting up libncurses5:amd64 (6.0+20161126-1+deb9u2) ... Setting up libgomp1:amd64 (6.3.0-18+deb9u1) ... Setting up libatomic1:amd64 (6.3.0-18+deb9u1) ... Setting up readline-common (7.0-3) ... Setting up perl-modules-5.24 (5.24.1-3+deb9u7) ... Setting up libgdbm3:amd64 (1.8.3-14) ... Setting up manpages (4.10-2) ... Setting up libperl5.24:amd64 (5.24.1-3+deb9u7) ... Setting up git-man (1:2.11.0-3+deb9u7) ... Setting up libpopt0:amd64 (1.16-10+b2) ... Setting up libcc1-0:amd64 (6.3.0-18+deb9u1) ... Setting up less (481-2.1) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline Setting up make (4.1-9.1) ... Setting up libasan3:amd64 (6.3.0-18+deb9u1) ... Setting up libnghttp2-14:amd64 (1.18.1-1+deb9u2) ... Setting up mime-support (3.60) ... Setting up libgpm2:amd64 (1.20.4-6.2+b1) ... Setting up libldap-common (2.4.44+dfsg-5+deb9u9) ... Setting up libcilkrts5:amd64 (6.3.0-18+deb9u1) ... Setting up libreadline7:amd64 (7.0-3) ... Setting up libubsan0:amd64 (6.3.0-18+deb9u1) ... Setting up libtsan0:amd64 (6.3.0-18+deb9u1) ... Setting up libonig4:amd64 (6.1.3-2+deb9u2) ... Setting up libsasl2-modules-db:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u2) ... Setting up linux-libc-dev:amd64 (4.9.320-2) ... Setting up libsasl2-2:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u2) ... Setting up libksba8:amd64 (1.3.5-2) ... Setting up sgml-base (1.29) ... Setting up libicu57:amd64 (57.1-6+deb9u5) ... Setting up libbsd0:amd64 (0.8.3-1+deb9u1) ... Setting up libxml2:amd64 (2.9.4+dfsg1-2.2+deb9u7) ... Setting up libtasn1-6:amd64 (4.10-1.1+deb9u1) ... Setting up libmagic-mgc (1:5.30-1+deb9u3) ... Setting up gnupg-l10n (2.1.18-8~deb9u4) ... Setting up bzip2 (1.0.6-8.1) ... Setting up libmagic1:amd64 (1:5.30-1+deb9u3) ... Setting up rsync (3.1.2-1+deb9u3) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of restart. Setting up liblsan0:amd64 (6.3.0-18+deb9u1) ... Setting up perl (5.24.1-3+deb9u7) ... update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode Setting up libfile-fcntllock-perl (0.22-3+b2) ... Setting up libjq1:amd64 (1.5+dfsg-1.3) ... Setting up libssl1.0.2:amd64 (1.0.2u-1~deb9u7) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline Setting up libmpx2:amd64 (6.3.0-18+deb9u1) ... Setting up libgmp10:amd64 (2:6.1.2+dfsg-1+deb9u1) ... Setting up libssh2-1:amd64 (1.7.0-1+deb9u2) ... Setting up patch (2.7.5-1+deb9u2) ... Setting up libglib2.0-data (2.50.3-2+deb9u3) ... Setting up krb5-locales (1.15-1+deb9u3) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Setting up publicsuffix (20190415.1030-0+deb9u1) ... Setting up libunistring0:amd64 (0.9.6+really0.9.3-0.1) ... Setting up libapparmor1:amd64 (2.11.0-3+deb9u2) ... Setting up xz-utils (5.2.2-1.2+deb9u1) ... update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode Setting up libfakeroot:amd64 (1.21-3.1) ... Setting up openssl (1.1.0l-1~deb9u6) ... Setting up libsqlite3-0:amd64 (3.16.2-5+deb9u3) ... Setting up libalgorithm-diff-perl (1.19.03-1) ... Setting up liblocale-gettext-perl (1.07-3+b1) ... Setting up libmpfr4:amd64 (3.1.5-1) ... Setting up libmpc3:amd64 (1.0.3-1+b2) ... Setting up binutils (2.28-5) ... Setting up libffi6:amd64 (3.2.1-6) ... Setting up libc-dev-bin (2.24-11+deb9u4) ... Setting up libxdmcp6:amd64 (1:1.1.2-3) ... Setting up xml-core (0.17) ... Setting up libkeyutils1:amd64 (1.5.9-9) ... Setting up libsasl2-modules:amd64 (2.1.27~101-g0780600+dfsg-3+deb9u2) ... Setting up ca-certificates (20200601~deb9u2) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline Updating certificates in /etc/ssl/certs... 137 added, 0 removed; done. Setting up manpages-dev (4.10-2) ... Setting up libc6-dev:amd64 (2.24-11+deb9u4) ... Setting up libassuan0:amd64 (2.4.3-2) ... Setting up xdg-user-dirs (0.15-2+b1) ... Setting up libitm1:amd64 (6.3.0-18+deb9u1) ... Setting up libx11-data (2:1.6.4-3+deb9u4) ... Setting up libpython2.7-stdlib:amd64 (2.7.13-2+deb9u6) ... Setting up libxau6:amd64 (1:1.0.8-1) ... Setting up libmpdec2:amd64 (2.4.2-1) ... Setting up libdbus-1-3:amd64 (1.10.32-0+deb9u1) ... Setting up netbase (5.4) ... Setting up libedit2:amd64 (3.1-20160903-3) ... Setting up python-pip-whl (9.0.1-2+deb9u2) ... Setting up jq (1.5+dfsg-1.3) ... Setting up libidn2-0:amd64 (0.16-1+deb9u1) ... Setting up libgcc-6-dev:amd64 (6.3.0-18+deb9u1) ... Setting up libstdc++-6-dev:amd64 (6.3.0-18+deb9u1) ... Setting up liberror-perl (0.17024-1) ... Setting up rename (0.20-4) ... update-alternatives: using /usr/bin/file-rename to provide /usr/bin/rename (rename) in auto mode Setting up libpsl5:amd64 (0.17.0-3) ... Setting up libglib2.0-0:amd64 (2.50.3-2+deb9u3) ... No schema files found: doing nothing. Setting up libpython3.5-stdlib:amd64 (3.5.3-1+deb9u5) ... Setting up libdpkg-perl (1.18.26) ... Setting up python2.7 (2.7.13-2+deb9u6) ... Setting up libffi-dev:amd64 (3.2.1-6) ... Setting up file (1:5.30-1+deb9u3) ... Setting up fakeroot (1.21-3.1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode Setting up libkrb5support0:amd64 (1.15-1+deb9u3) ... Setting up libgirepository-1.0-1:amd64 (1.50.0-1+b1) ... Setting up libhogweed4:amd64 (3.3-1+deb9u1) ... Setting up libpython-stdlib:amd64 (2.7.13-2) ... Setting up libalgorithm-merge-perl (0.08-3) ... Setting up libisl15:amd64 (0.18-1) ... Setting up dpkg-dev (1.18.26) ... Setting up gir1.2-glib-2.0:amd64 (1.50.0-1+b1) ... Setting up libalgorithm-diff-xs-perl (0.04-4+b2) ... Setting up libp11-kit0:amd64 (0.23.3-2+deb9u1) ... Setting up libexpat1-dev:amd64 (2.2.0-2+deb9u5) ... Setting up shared-mime-info (1.8-1+deb9u1) ... Setting up pinentry-curses (1.0.0-2) ... Setting up cpp-6 (6.3.0-18+deb9u1) ... Setting up dbus (1.10.32-0+deb9u1) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up gnupg-agent (2.1.18-8~deb9u4) ... Setting up libxcb1:amd64 (1.12-1) ... Setting up python (2.7.13-2) ... Setting up python3.5 (3.5.3-1+deb9u5) ... Setting up libpython3-stdlib:amd64 (3.5.3-1) ... Setting up cpp (4:6.3.0-4) ... Setting up libk5crypto3:amd64 (1.15-1+deb9u3) ... Setting up libdbus-glib-1-2:amd64 (0.108-2) ... Setting up libpython3.5:amd64 (3.5.3-1+deb9u5) ... Setting up gnupg (2.1.18-8~deb9u4) ... Setting up libgnutls30:amd64 (3.5.8-5+deb9u6) ... Setting up libx11-6:amd64 (2:1.6.4-3+deb9u4) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1+b1) ... Setting up libpython3.5-dev:amd64 (3.5.3-1+deb9u5) ... Setting up libxmuu1:amd64 (2:1.1.2-2) ... Setting up gcc-6 (6.3.0-18+deb9u1) ... Setting up g++-6 (6.3.0-18+deb9u1) ... Setting up libldap-2.4-2:amd64 (2.4.44+dfsg-5+deb9u9) ... Setting up libkrb5-3:amd64 (1.15-1+deb9u3) ... Setting up python3.5-dev (3.5.3-1+deb9u5) ... Setting up dirmngr (2.1.18-8~deb9u4) ... Setting up libpython3-dev:amd64 (3.5.3-1) ... Setting up libxext6:amd64 (2:1.3.3-1+b2) ... Setting up gcc (4:6.3.0-4) ... Setting up libgssapi-krb5-2:amd64 (1.15-1+deb9u3) ... Setting up xauth (1:1.0.9-1+b2) ... Setting up g++ (4:6.3.0-4) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode Setting up openssh-client (1:7.4p1-10+deb9u7) ... Setting up build-essential (12.3) ... Setting up libcurl3:amd64 (7.52.1-5+deb9u16) ... Setting up libcurl3-gnutls:amd64 (7.52.1-5+deb9u16) ... Setting up git (1:2.11.0-3+deb9u7) ... Setting up curl (7.52.1-5+deb9u16) ... Setting up python3 (3.5.3-1) ... running python rtupdate hooks for python3.5... running python post-rtupdate hooks for python3.5... Setting up python3-cffi-backend (1.9.1-2) ... Setting up python3-crypto (2.6.1-7) ... Setting up python3-idna (2.2-1) ... Setting up python3-xdg (0.25-4+deb9u1) ... Setting up python3-keyrings.alt (1.3-1) ... Setting up python3-six (1.10.0-3) ... Setting up python3-dev (3.5.3-1) ... Setting up python3-wheel (0.29.0-2) ... Setting up python3-pkg-resources (33.1.1-1) ... Setting up python3-gi (3.22.0-2) ... Setting up python3-pyasn1 (0.1.9-2) ... Setting up python3-pip (9.0.1-2+deb9u2) ... Setting up python3-setuptools (33.1.1-1) ... Setting up dh-python (2.20170125) ... Setting up python3-cryptography (1.7.1-3+deb9u2) ... Setting up python3-dbus (1.2.4-1+b1) ... Setting up python3-secretstorage (2.3.1-2) ... Setting up python3-keyring (10.1-1) ... Processing triggers for libc-bin (2.24-11+deb9u4) ... Processing triggers for sgml-base (1.29) ... Processing triggers for ca-certificates (20200601~deb9u2) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. Collecting cryptography==2.9.2 Downloading https://files.pythonhosted.org/packages/58/95/f1282ca55649b60afcf617e1e2ca384a2a3e7a5cf91f724cf83c8fbe76a1/cryptography-2.9.2-cp35-abi3-manylinux1_x86_64.whl (2.7MB) Collecting awscli Downloading https://files.pythonhosted.org/packages/61/6e/0536697825b514b3b9e69d3ae3beb0f4abcdd6d04a047c1f715f2a5e0bec/awscli-1.18.223-py2.py3-none-any.whl (3.5MB) Collecting six>=1.4.1 (from cryptography==2.9.2) Downloading https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl Collecting cffi!=1.11.3,>=1.8 (from cryptography==2.9.2) Downloading https://files.pythonhosted.org/packages/2b/a8/050ab4f0c3d4c1b8aaa805f70e26e84d0e27004907c5b8ecc1d31815f92a/cffi-1.15.1.tar.gz (508kB) Collecting docutils<0.16,>=0.10 (from awscli) Downloading https://files.pythonhosted.org/packages/22/cd/a6aa959dca619918ccb55023b4cb151949c64d4d5d55b3f4ffd7eee0c6e8/docutils-0.15.2-py3-none-any.whl (547kB) Collecting s3transfer<0.4.0,>=0.3.0 (from awscli) Downloading https://files.pythonhosted.org/packages/00/89/0cb4e92c239e6425b9b0035227b8cdf9d3d098a5c9e95632c3815df63a09/s3transfer-0.3.7-py2.py3-none-any.whl (73kB) Collecting botocore==1.19.63 (from awscli) Downloading https://files.pythonhosted.org/packages/2c/05/0a955f0c92bec7da076fbbc73926dfb13fab8e2b88de7f8eb17c443f28f0/botocore-1.19.63-py2.py3-none-any.whl (7.2MB) Collecting rsa<=4.5.0,>=3.1.2; python_version != "3.4" (from awscli) Downloading https://files.pythonhosted.org/packages/26/f8/8127fdda0294f044121d20aac7785feb810e159098447967a6103dedfb96/rsa-4.5-py2.py3-none-any.whl Collecting colorama<0.4.4,>=0.2.5; python_version != "3.4" (from awscli) Downloading https://files.pythonhosted.org/packages/c9/dc/45cdef1b4d119eb96316b3117e6d5708a08029992b2fee2c143c7a0a5cc5/colorama-0.4.3-py2.py3-none-any.whl Collecting PyYAML<5.4,>=3.10; python_version != "3.4" (from awscli) Downloading https://files.pythonhosted.org/packages/64/c2/b80047c7ac2478f9501676c988a5411ed5572f35d1beff9cae07d321512c/PyYAML-5.3.1.tar.gz (269kB) Collecting pycparser (from cffi!=1.11.3,>=1.8->cryptography==2.9.2) Downloading https://files.pythonhosted.org/packages/62/d5/5f610ebe421e85889f2e55e33b7f9a6795bd982198517d912eb1c76e1a53/pycparser-2.21-py2.py3-none-any.whl (118kB) Collecting urllib3<1.27,>=1.25.4; python_version != "3.4" (from botocore==1.19.63->awscli) Downloading https://files.pythonhosted.org/packages/ec/03/062e6444ce4baf1eac17a6a0ebfe36bb1ad05e1df0e20b110de59c278498/urllib3-1.26.9-py2.py3-none-any.whl (138kB) Collecting python-dateutil<3.0.0,>=2.1 (from botocore==1.19.63->awscli) Downloading https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl (247kB) Collecting jmespath<1.0.0,>=0.7.1 (from botocore==1.19.63->awscli) Downloading https://files.pythonhosted.org/packages/07/cb/5f001272b6faeb23c1c9e0acc04d48eaaf5c862c17709d20e3469c6e0139/jmespath-0.10.0-py2.py3-none-any.whl Collecting pyasn1>=0.1.3 (from rsa<=4.5.0,>=3.1.2; python_version != "3.4"->awscli) Downloading https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl (77kB) Building wheels for collected packages: cffi, PyYAML Running setup.py bdist_wheel for cffi: started Running setup.py bdist_wheel for cffi: finished with status 'done' Stored in directory: /root/.cache/pip/wheels/2a/63/34/2d00df575488c28abba6b0abd4013fa1fe54499814e7f7a6f1 Running setup.py bdist_wheel for PyYAML: started Running setup.py bdist_wheel for PyYAML: finished with status 'done' Stored in directory: /root/.cache/pip/wheels/a7/c1/ea/cf5bd31012e735dc1dfea3131a2d5eae7978b251083d6247bd Successfully built cffi PyYAML Installing collected packages: six, pycparser, cffi, cryptography, docutils, urllib3, python-dateutil, jmespath, botocore, s3transfer, pyasn1, rsa, colorama, PyYAML, awscli Found existing installation: six 1.10.0 Not uninstalling six at /usr/lib/python3/dist-packages, outside environment /usr Found existing installation: cryptography 1.7.1 Not uninstalling cryptography at /usr/lib/python3/dist-packages, outside environment /usr Found existing installation: pyasn1 0.1.9 Not uninstalling pyasn1 at /usr/lib/python3/dist-packages, outside environment /usr Successfully installed PyYAML-5.3.1 awscli-1.18.223 botocore-1.19.63 cffi-1.15.1 colorama-0.4.3 cryptography-2.9.2 docutils-0.15.2 jmespath-0.10.0 pyasn1-0.4.8 pycparser-2.21 python-dateutil-2.8.2 rsa-4.5 s3transfer-0.3.7 six-1.16.0 urllib3-1.26.9 Removing intermediate container 1b2fab25e8ae ---> f94d5ad89155 Step 3/8 : ADD wpkpack.py /usr/local/bin/wpkpack ---> 26db5514b2b4 Step 4/8 : ADD run.sh /usr/local/bin/run ---> b950df75e345 Step 5/8 : VOLUME /var/local/wazuh ---> Running in 2137dcf23b07 Removing intermediate container 2137dcf23b07 ---> 291922dff0c7 Step 6/8 : VOLUME /etc/wazuh ---> Running in 8b15ec9e619b Removing intermediate container 8b15ec9e619b ---> 980bfd678bf5 Step 7/8 : VOLUME /etc/wazuh/checksum ---> Running in 40c647945e49 Removing intermediate container 40c647945e49 ---> 90fd9117cf8e Step 8/8 : ENTRYPOINT ["/usr/local/bin/run"] ---> Running in eae2d34556e4 Removing intermediate container eae2d34556e4 ---> 0aec0b0b9329 Successfully built 0aec0b0b9329 Successfully tagged common_wpk_builder:latest ```
davidcr01 commented 1 year ago

:heavy_check_mark: Windows

To test the Windows dockerfile (windows/Dockerfile), I build the image with docker build -t compile_windows_agent ./.

Log file: windows.log

davidcr01 commented 1 year ago

:heavy_check_mark: Debian

To test the Debian dockerfiles (debs/<arch>/Dockerfile), I build the image with ./generate_debian_package.sh -b v4.3.10 --packages-branch v4.3.10 -s /tmp -t manager -a amd64 -r my_rev.

As this test is the same for arm64, i386, armhf, and ppc64le (only changes the used packages), we can assume that these Dockerfiles are correct, based on the test of amd64.

Log file: debian.log

davidcr01 commented 1 year ago

:heavy_check_mark: Wazuh dashboard

To test the Wazuh dashboard (Debian) dockerfile (stack/dashboard/deb/docker/amd64/Dockerfile), I build the image with ./build_package.sh -b no, to avoid creating the base.

Log file: dashboard.log

:heavy_check_mark: Wazuh indexer

To test the Wazuh indexer (Debian) dockerfile (stack/indexer/deb/docker/amd64/Dockerfile), I build the image with ./build_package.sh.

Log file: indexer.log