Facebook
From vj, 4 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 228
  1. cat /var/log/cloudron-setup.log
  2. Running cloudron-setup with args : --
  3. Hit:1 http://de.archive.ubuntu.com/ubuntu jammy InRelease
  4. Hit:2 http://de.archive.ubuntu.com/ubuntu jammy-updates InRelease
  5. Hit:3 http://de.archive.ubuntu.com/ubuntu jammy-backports InRelease
  6. Hit:4 http://de.archive.ubuntu.com/ubuntu jammy-security InRelease
  7. Reading package lists...
  8. Reading package lists...
  9. Building dependency tree...
  10. Reading state information...
  11. curl is already the newest version (7.81.0-1ubuntu1.15).
  12. curl set to manually installed.
  13. python3 is already the newest version (3.10.6-1~22.04).
  14. python3 set to manually installed.
  15. software-properties-common is already the newest version (0.99.22.8).
  16. software-properties-common set to manually installed.
  17. ubuntu-standard is already the newest version (1.481.1).
  18. 0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
  19.  
  20. readonly SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
  21.  
  22. readonly arg_infraversionpath="${SOURCE_DIR}/../src"
  23.  
  24. function die {
  25.     echo $1
  26.     exit 1
  27. }
  28.  
  29. export DEBIAN_FRONTEND=noninteractive
  30.  
  31. readonly ubuntu_codename=$(lsb_release -cs)
  32. readonly ubuntu_version=$(lsb_release -rs)
  33.  
  34. # hold grub since updating it breaks on some VPS providers. also, dist-upgrade will trigger it
  35. apt-mark hold grub* >/dev/null
  36. apt-get -o Dpkg::Options::="--force-confdef" update -y
  37. Hit:1 http://de.archive.ubuntu.com/ubuntu jammy InRelease
  38. Hit:2 http://de.archive.ubuntu.com/ubuntu jammy-updates InRelease
  39. Hit:3 http://de.archive.ubuntu.com/ubuntu jammy-backports InRelease
  40. Hit:4 http://de.archive.ubuntu.com/ubuntu jammy-security InRelease
  41. Reading package lists...
  42. apt-get -o Dpkg::Options::="--force-confdef" upgrade -y
  43. Reading package lists...
  44. Building dependency tree...
  45. Reading state information...
  46. Calculating upgrade...
  47. The following packages have been kept back:
  48.   python3-update-manager update-manager-core
  49. 0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
  50. apt-mark unhold grub* >/dev/null
  51.  
  52. echo "==> Installing required packages"
  53. ==> Installing required packages
  54.  
  55. debconf-set-selections <<< 'mysql-server mysql-server/root_password password password'
  56. debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password password'
  57.  
  58. # this enables automatic security upgrades (https://help.ubuntu.com/community/AutomaticSecurityUpdates)
  59. # resolvconf is needed for unbound to work property after disabling systemd-resolved in 18.04
  60. case "${ubuntu_version}" in
  61. 16.04)
  62.     gpg_package="gnupg"
  63.     mysql_package="mysql-server-5.7"
  64.     ntpd_package=""
  65.      pyth
  66.     nginx_package="" # we use custom package for TLS v1.3 support
  67.     ;;
  68. 18.04)
  69.     gpg_package="gpg"
  70.     mysql_package="mysql-server-5.7"
  71.     ntpd_package=""
  72.      pyth
  73.     nginx_package="" # we use custom package for TLS v1.3 support
  74.     ;;
  75. 20.04)
  76.     gpg_package="gpg"
  77.     mysql_package="mysql-server-8.0"
  78.     ntpd_package="systemd-timesyncd"
  79.      pyth
  80.     nginx_package="nginx-full"
  81.     ;;
  82. 22.04)
  83.     gpg_package="gpg"
  84.     mysql_package="mysql-server-8.0"
  85.     ntpd_package="systemd-timesyncd"
  86.      pyth
  87.     nginx_package="nginx-full"
  88.     ;;
  89. esac
  90.  
  91. apt-get -y install --no-install-recommends
  92.     acl
  93.     apparmor
  94.     build-essential
  95.     cifs-utils
  96.     cron
  97.     curl
  98.     debconf-utils
  99.     dmsetup
  100.     $gpg_package
  101.     ipset
  102.     iptables
  103.     lib${python_package}
  104.     linux-generic
  105.     logrotate
  106.     $mysql_package
  107.     nfs-common
  108.     $nginx_package
  109.     $ntpd_package
  110.     openssh-server
  111.     python3-magic
  112.     pwgen
  113.     resolvconf
  114.     sshfs
  115.     swaks
  116.     tzdata
  117.     unattended-upgrades
  118.     unbound
  119.     unzip
  120.     xfsprogs
  121. Reading package lists...
  122. Building dependency tree...
  123. Reading state information...
  124. cron is already the newest version (3.0pl1-137ubuntu3).
  125. cron set to manually installed.
  126. dmsetup is already the newest version (2:1.02.175-2.1ubuntu4).
  127. dmsetup set to manually installed.
  128. python3-magic is already the newest version (2:0.4.24-2).
  129. python3-magic set to manually installed.
  130. unattended-upgrades is already the newest version (2.8ubuntu1).
  131. unattended-upgrades set to manually installed.
  132. xfsprogs is already the newest version (5.13.0-1ubuntu2).
  133. xfsprogs set to manually installed.
  134. apparmor is already the newest version (3.0.4-2ubuntu2.3).
  135. apparmor set to manually installed.
  136. curl is already the newest version (7.81.0-1ubuntu1.15).
  137. gpg is already the newest version (2.2.27-3ubuntu2.1).
  138. gpg set to manually installed.
  139. iptables is already the newest version (1.8.7-1ubuntu5.1).
  140. iptables set to manually installed.
  141. libpython3.10 is already the newest version (3.10.12-1~22.04.3).
  142. libpython3.10 set to manually installed.
  143. linux-generic is already the newest version (5.15.0.91.88).
  144. logrotate is already the newest version (3.19.0-1ubuntu1.1).
  145. logrotate set to manually installed.
  146. openssh-server is already the newest version (1:8.9p1-3ubuntu0.5).
  147. systemd-timesyncd is already the newest version (249.11-0ubuntu3.11).
  148. systemd-timesyncd set to manually installed.
  149. tzdata is already the newest version (2023c-0ubuntu0.22.04.2).
  150. tzdata set to manually installed.
  151. The following additional packages will be installed:
  152.   bzip2 cpp cpp-11 dns-root-data dpkg-dev fontconfig-config fonts-dejavu-core
  153.   g++ g++-11 gcc gcc-11 gcc-11-base keyutils libasan6 libatomic1 libc-dev-bin
  154.   libc6-dev libcc1-0 libcrypt-dev libdeflate0 libdpkg-perl libevent-2.1-7
  155.   libevent-pthreads-2.1-7 libfontconfig1 libgcc-11-dev libgd3 libgomp1
  156.   libipset13 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 liblsan0
  157.   libmecab2 libmpc3 libnfsidmap1 libnginx-mod-http-auth-pam
  158.   libnginx-mod-http-dav-ext libnginx-mod-http-echo libnginx-mod-http-geoip2
  159.   libnginx-mod-http-image-filter libnginx-mod-http-subs-filter
  160.   libnginx-mod-http-upstream-fair libnginx-mod-http-xslt-filter
  161.   libnginx-mod-mail libnginx-mod-stream libnginx-mod-stream-geoip2 libnsl-dev
  162.   libprotobuf-c1 libprotobuf-lite23 libquadmath0 libstdc++-11-dev libtalloc2
  163.   libtevent0 libtiff5 libtirpc-dev libtsan0 libubsan1 libunbound8 libwbclient0
  164.   libwebp7 libxpm4 linux-libc-dev lto-disabled-list make mysql-client-8.0
  165.   mysql-client-core-8.0 mysql-common mysql-server-core-8.0 nginx-common
  166.   nginx-core rpcbind rpcsvc-proto unbound-anchor
  167. Suggested packages:
  168.   bzip2-doc smbclient winbind cpp-doc gcc-11-locales debian-keyring
  169.   g++-multilib g++-11-multilib gcc-11-doc gcc-multilib manpages-dev autoconf
  170.   automake libtool flex bison gdb gcc-doc gcc-11-multilib glibc-doc bzr
  171.   libgd-tools libstdc++-11-doc make-doc mailx tinyca watchdog fcgiwrap
  172.   nginx-doc ssl-cert libauthen-ntlm-perl libauthen-sasl-perl perl-doc zip
  173. Recommended packages:
  174.   fakeroot libalgorithm-merge-perl manpages-dev libc-devtools
  175.   libfile-fcntllock-perl libhtml-template-perl mecab-ipadic-utf8
  176.   libio-socket-inet6-perl libnet-dns-perl libnet-ssleay-perl
  177. The following NEW packages will be installed:
  178.   acl build-essential bzip2 cifs-utils cpp cpp-11 debconf-utils dns-root-data
  179.   dpkg-dev fontconfig-config fonts-dejavu-core g++ g++-11 gcc gcc-11
  180.   gcc-11-base ipset keyutils libasan6 libatomic1 libc-dev-bin libc6-dev
  181.   libcc1-0 libcrypt-dev libdeflate0 libdpkg-perl libevent-2.1-7
  182.   libevent-pthreads-2.1-7 libfontconfig1 libgcc-11-dev libgd3 libgomp1
  183.   libipset13 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 liblsan0
  184.   libmecab2 libmpc3 libnfsidmap1 libnginx-mod-http-auth-pam
  185.   libnginx-mod-http-dav-ext libnginx-mod-http-echo libnginx-mod-http-geoip2
  186.   libnginx-mod-http-image-filter libnginx-mod-http-subs-filter
  187.   libnginx-mod-http-upstream-fair libnginx-mod-http-xslt-filter
  188.   libnginx-mod-mail libnginx-mod-stream libnginx-mod-stream-geoip2 libnsl-dev
  189.   libprotobuf-c1 libprotobuf-lite23 libquadmath0 libstdc++-11-dev libtalloc2
  190.   libtevent0 libtiff5 libtirpc-dev libtsan0 libubsan1 libunbound8 libwbclient0
  191.   libwebp7 libxpm4 linux-libc-dev lto-disabled-list make mysql-client-8.0
  192.   mysql-client-core-8.0 mysql-common mysql-server-8.0 mysql-server-core-8.0
  193.   nfs-common nginx-common nginx-core nginx-full pwgen resolvconf rpcbind
  194.   rpcsvc-proto sshfs swaks unbound unbound-anchor unzip
  195. 0 upgraded, 89 newly installed, 0 to remove and 2 not upgraded.
  196. Need to get 87.0 MB of archives.
  197. After this operation, 401 MB of additional disk space will be used.
  198. Get:1 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libtalloc2 amd64 2.3.3-2build1 [25.6 kB]
  199. Get:2 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libtevent0 amd64 0.11.0-1build1 [39.2 kB]
  200. Get:3 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwbclient0 amd64 2:4.15.13+dfsg-0ubuntu1.5 [267 kB]
  201. Get:4 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 mysql-common all 5.8+1.0.8 [7,212 B]
  202. Get:5 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 mysql-client-core-8.0 amd64 8.0.35-0ubuntu0.22.04.1 [2,682 kB]
  203. Get:6 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 mysql-client-8.0 amd64 8.0.35-0ubuntu0.22.04.1 [22.7 kB]
  204. Get:7 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libevent-pthreads-2.1-7 amd64 2.1.12-stable-1build3 [7,642 B]
  205. Get:8 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libmecab2 amd64 0.996-14build9 [199 kB]
  206. Get:9 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libprotobuf-lite23 amd64 3.12.4-1ubuntu7.22.04.1 [209 kB]
  207. Get:10 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 mysql-server-core-8.0 amd64 8.0.35-0ubuntu0.22.04.1 [17.6 MB]
  208. Get:11 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 mysql-server-8.0 amd64 8.0.35-0ubuntu0.22.04.1 [1,438 kB]
  209. Get:12 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnfsidmap1 amd64 1:2.6.1-1ubuntu1.2 [42.9 kB]
  210. Get:13 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 rpcbind amd64 1.2.6-2build1 [46.6 kB]
  211. Get:14 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 keyutils amd64 1.6.1-2ubuntu3 [50.4 kB]
  212. Get:15 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 nfs-common amd64 1:2.6.1-1ubuntu1.2 [241 kB]
  213. Get:16 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 acl amd64 2.3.1-1 [38.5 kB]
  214. Get:17 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc-dev-bin amd64 2.35-0ubuntu3.5 [20.3 kB]
  215. Get:18 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-libc-dev amd64 5.15.0-91.101 [1,332 kB]
  216. Get:19 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libcrypt-dev amd64 1:4.4.27-1 [112 kB]
  217. Get:20 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 rpcsvc-proto amd64 1.4.2-0ubuntu6 [68.5 kB]
  218. Get:21 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtirpc-dev amd64 1.3.2-2ubuntu0.1 [192 kB]
  219. Get:22 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libnsl-dev amd64 1.3.0-2build2 [71.3 kB]
  220. Get:23 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc6-dev amd64 2.35-0ubuntu3.5 [2,098 kB]
  221. Get:24 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11-base amd64 11.4.0-1ubuntu1~22.04 [20.2 kB]
  222. Get:25 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libisl23 amd64 0.24-2build1 [727 kB]
  223. Get:26 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libmpc3 amd64 1.2.1-2build1 [46.9 kB]
  224. Get:27 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 cpp-11 amd64 11.4.0-1ubuntu1~22.04 [10.0 MB]
  225. Get:28 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 cpp amd64 4:11.2.0-1ubuntu1 [27.7 kB]
  226. Get:29 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcc1-0 amd64 12.3.0-1ubuntu1~22.04 [48.3 kB]
  227. Get:30 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgomp1 amd64 12.3.0-1ubuntu1~22.04 [126 kB]
  228. Get:31 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libitm1 amd64 12.3.0-1ubuntu1~22.04 [30.2 kB]
  229. Get:32 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libatomic1 amd64 12.3.0-1ubuntu1~22.04 [10.4 kB]
  230. Get:33 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libasan6 amd64 11.4.0-1ubuntu1~22.04 [2,282 kB]
  231. Get:34 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 liblsan0 amd64 12.3.0-1ubuntu1~22.04 [1,069 kB]
  232. Get:35 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtsan0 amd64 11.4.0-1ubuntu1~22.04 [2,260 kB]
  233. Get:36 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libubsan1 amd64 12.3.0-1ubuntu1~22.04 [976 kB]
  234. Get:37 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libquadmath0 amd64 12.3.0-1ubuntu1~22.04 [154 kB]
  235. Get:38 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-11-dev amd64 11.4.0-1ubuntu1~22.04 [2,517 kB]
  236. Get:39 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11 amd64 11.4.0-1ubuntu1~22.04 [20.1 MB]
  237. Get:40 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 gcc amd64 4:11.2.0-1ubuntu1 [5,112 B]
  238. Get:41 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++-11-dev amd64 11.4.0-1ubuntu1~22.04 [2,101 kB]
  239. Get:42 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 g++-11 amd64 11.4.0-1ubuntu1~22.04 [11.4 MB]
  240. Get:43 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 g++ amd64 4:11.2.0-1ubuntu1 [1,412 B]
  241. Get:44 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 make amd64 4.3-4.1build1 [180 kB]
  242. Get:45 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdpkg-perl all 1.21.1ubuntu2.2 [237 kB]
  243. Get:46 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 bzip2 amd64 1.0.8-5build1 [34.8 kB]
  244. Get:47 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 lto-disabled-list all 24 [12.5 kB]
  245. Get:48 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 dpkg-dev all 1.21.1ubuntu2.2 [922 kB]
  246. Get:49 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 build-essential amd64 12.9ubuntu3 [4,744 B]
  247. Get:50 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 cifs-utils amd64 2:6.14-1ubuntu0.1 [95.7 kB]
  248. Get:51 http://de.archive.ubuntu.com/ubuntu jammy/universe amd64 debconf-utils all 1.5.79ubuntu1 [57.0 kB]
  249. Get:52 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 dns-root-data all 2021011101 [5,256 B]
  250. Get:53 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 fonts-dejavu-core all 2.37-2build1 [1,041 kB]
  251. Get:54 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
  252. Get:55 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate0 amd64 1.10-2 [70.9 kB]
  253. Get:56 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1build3 [148 kB]
  254. Get:57 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu5 [131 kB]
  255. Get:58 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-turbo8 amd64 2.1.2-0ubuntu1 [134 kB]
  256. Get:59 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg8 amd64 8c-2ubuntu10 [2,264 B]
  257. Get:60 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjbig0 amd64 2.1-3.1ubuntu0.22.04.1 [29.2 kB]
  258. Get:61 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebp7 amd64 1.2.2-2ubuntu0.22.04.2 [206 kB]
  259. Get:62 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiff5 amd64 4.3.0-6ubuntu0.7 [185 kB]
  260. Get:63 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libxpm4 amd64 1:3.5.12-1ubuntu0.22.04.2 [36.7 kB]
  261. Get:64 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libgd3 amd64 2.3.0-2ubuntu2 [129 kB]
  262. Get:65 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 libipset13 amd64 7.15-1build1 [63.4 kB]
  263. Get:66 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 nginx-common all 1.18.0-6ubuntu14.4 [40.0 kB]
  264. Get:67 http://de.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-auth-pam amd64 1.18.0-6ubuntu14.4 [10.1 kB]
  265. Get:68 http://de.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-dav-ext amd64 1.18.0-6ubuntu14.4 [18.0 kB]
  266. Get:69 http://de.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-echo amd64 1.18.0-6ubuntu14.4 [22.7 kB]
  267. Get:70 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-http-geoip2 amd64 1.18.0-6ubuntu14.4 [11.9 kB]
  268. Get:71 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-http-image-filter amd64 1.18.0-6ubuntu14.4 [15.4 kB]
  269. Get:72 http://de.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-subs-filter amd64 1.18.0-6ubuntu14.4 [13.2 kB]
  270. Get:73 http://de.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-upstream-fair amd64 1.18.0-6ubuntu14.4 [13.4 kB]
  271. Get:74 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-http-xslt-filter amd64 1.18.0-6ubuntu14.4 [13.7 kB]
  272. Get:75 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-mail amd64 1.18.0-6ubuntu14.4 [45.7 kB]
  273. Get:76 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-stream amd64 1.18.0-6ubuntu14.4 [72.9 kB]
  274. Get:77 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-stream-geoip2 amd64 1.18.0-6ubuntu14.4 [10.1 kB]
  275. Get:78 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libprotobuf-c1 amd64 1.3.3-1ubuntu2.1 [20.3 kB]
  276. Get:79 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libunbound8 amd64 1.13.1-1ubuntu5.3 [395 kB]
  277. Get:80 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 nginx-core amd64 1.18.0-6ubuntu14.4 [484 kB]
  278. Get:81 http://de.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 nginx-full amd64 1.18.0-6ubuntu14.4 [4,342 B]
  279. Get:82 http://de.archive.ubuntu.com/ubuntu jammy/universe amd64 pwgen amd64 2.08-2build1 [17.4 kB]
  280. Get:83 http://de.archive.ubuntu.com/ubuntu jammy/universe amd64 sshfs amd64 3.7.1+repack-2 [45.1 kB]
  281. Get:84 http://de.archive.ubuntu.com/ubuntu jammy/universe amd64 swaks all 20201014.0-2 [85.9 kB]
  282. Get:85 http://de.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 unbound-anchor amd64 1.13.1-1ubuntu5.3 [27.7 kB]
  283. Get:86 http://de.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 unbound amd64 1.13.1-1ubuntu5.3 [861 kB]
  284. Get:87 http://de.archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.1 [174 kB]
  285. Get:88 http://de.archive.ubuntu.com/ubuntu jammy/main amd64 ipset amd64 7.15-1build1 [32.8 kB]
  286. Get:89 http://de.archive.ubuntu.com/ubuntu jammy/universe amd64 resolvconf all 1.84ubuntu1 [54.7 kB]
  287. Preconfiguring packages ...
  288. Fetched 87.0 MB in 2s (50.3 MB/s)
  289. Selecting previously unselected package libtalloc2:amd64.
  290. (Reading database ... 109927 files and directories currently installed.)
  291. Preparing to unpack .../0-libtalloc2_2.3.3-2build1_amd64.deb ...
  292. Unpacking libtalloc2:amd64 (2.3.3-2build1) ...
  293. Selecting previously unselected package libtevent0:amd64.
  294. Preparing to unpack .../1-libtevent0_0.11.0-1build1_amd64.deb ...
  295. Unpacking libtevent0:amd64 (0.11.0-1build1) ...
  296. Selecting previously unselected package libwbclient0:amd64.
  297. Preparing to unpack .../2-libwbclient0_2:4.15.13+dfsg-0ubuntu1.5_amd64.deb ...
  298. Unpacking libwbclient0:amd64 (2:4.15.13+dfsg-0ubuntu1.5) ...
  299. Selecting previously unselected package mysql-common.
  300. Preparing to unpack .../3-mysql-common_5.8+1.0.8_all.deb ...
  301. Unpacking mysql-common (5.8+1.0.8) ...
  302. Selecting previously unselected package mysql-client-core-8.0.
  303. Preparing to unpack .../4-mysql-client-core-8.0_8.0.35-0ubuntu0.22.04.1_amd64.deb ...
  304. Unpacking mysql-client-core-8.0 (8.0.35-0ubuntu0.22.04.1) ...
  305. Selecting previously unselected package mysql-client-8.0.
  306. Preparing to unpack .../5-mysql-client-8.0_8.0.35-0ubuntu0.22.04.1_amd64.deb ...
  307. Unpacking mysql-client-8.0 (8.0.35-0ubuntu0.22.04.1) ...
  308. Selecting previously unselected package libevent-pthreads-2.1-7:amd64.
  309. Preparing to unpack .../6-libevent-pthreads-2.1-7_2.1.12-stable-1build3_amd64.deb ...
  310. Unpacking libevent-pthreads-2.1-7:amd64 (2.1.12-stable-1build3) ...
  311. Selecting previously unselected package libmecab2:amd64.
  312. Preparing to unpack .../7-libmecab2_0.996-14build9_amd64.deb ...
  313. Unpacking libmecab2:amd64 (0.996-14build9) ...
  314. Selecting previously unselected package libprotobuf-lite23:amd64.
  315. Preparing to unpack .../8-libprotobuf-lite23_3.12.4-1ubuntu7.22.04.1_amd64.deb ...
  316. Unpacking libprotobuf-lite23:amd64 (3.12.4-1ubuntu7.22.04.1) ...
  317. Selecting previously unselected package mysql-server-core-8.0.
  318. Preparing to unpack .../9-mysql-server-core-8.0_8.0.35-0ubuntu0.22.04.1_amd64.deb ...
  319. Unpacking mysql-server-core-8.0 (8.0.35-0ubuntu0.22.04.1) ...
  320. Setting up mysql-common (5.8+1.0.8) ...
  321. update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
  322. Selecting previously unselected package mysql-server-8.0.
  323. (Reading database ... 110169 files and directories currently installed.)
  324. Preparing to unpack .../00-mysql-server-8.0_8.0.35-0ubuntu0.22.04.1_amd64.deb ...
  325. Unpacking mysql-server-8.0 (8.0.35-0ubuntu0.22.04.1) ...
  326. Selecting previously unselected package libnfsidmap1:amd64.
  327. Preparing to unpack .../01-libnfsidmap1_1:2.6.1-1ubuntu1.2_amd64.deb ...
  328. Unpacking libnfsidmap1:amd64 (1:2.6.1-1ubuntu1.2) ...
  329. Selecting previously unselected package rpcbind.
  330. Preparing to unpack .../02-rpcbind_1.2.6-2build1_amd64.deb ...
  331. Unpacking rpcbind (1.2.6-2build1) ...
  332. Selecting previously unselected package keyutils.
  333. Preparing to unpack .../03-keyutils_1.6.1-2ubuntu3_amd64.deb ...
  334. Unpacking keyutils (1.6.1-2ubuntu3) ...
  335. Selecting previously unselected package nfs-common.
  336. Preparing to unpack .../04-nfs-common_1:2.6.1-1ubuntu1.2_amd64.deb ...
  337. Unpacking nfs-common (1:2.6.1-1ubuntu1.2) ...
  338. Selecting previously unselected package acl.
  339. Preparing to unpack .../05-acl_2.3.1-1_amd64.deb ...
  340. Unpacking acl (2.3.1-1) ...
  341. Selecting previously unselected package libc-dev-bin.
  342. Preparing to unpack .../06-libc-dev-bin_2.35-0ubuntu3.5_amd64.deb ...
  343. Unpacking libc-dev-bin (2.35-0ubuntu3.5) ...
  344. Selecting previously unselected package linux-libc-dev:amd64.
  345. Preparing to unpack .../07-linux-libc-dev_5.15.0-91.101_amd64.deb ...
  346. Unpacking linux-libc-dev:amd64 (5.15.0-91.101) ...
  347. Selecting previously unselected package libcrypt-dev:amd64.
  348. Preparing to unpack .../08-libcrypt-dev_1:4.4.27-1_amd64.deb ...
  349. Unpacking libcrypt-dev:amd64 (1:4.4.27-1) ...
  350. Selecting previously unselected package rpcsvc-proto.
  351. Preparing to unpack .../09-rpcsvc-proto_1.4.2-0ubuntu6_amd64.deb ...
  352. Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
  353. Selecting previously unselected package libtirpc-dev:amd64.
  354. Preparing to unpack .../10-libtirpc-dev_1.3.2-2ubuntu0.1_amd64.deb ...
  355. Unpacking libtirpc-dev:amd64 (1.3.2-2ubuntu0.1) ...
  356. Selecting previously unselected package libnsl-dev:amd64.
  357. Preparing to unpack .../11-libnsl-dev_1.3.0-2build2_amd64.deb ...
  358. Unpacking libnsl-dev:amd64 (1.3.0-2build2) ...
  359. Selecting previously unselected package libc6-dev:amd64.
  360. Preparing to unpack .../12-libc6-dev_2.35-0ubuntu3.5_amd64.deb ...
  361. Unpacking libc6-dev:amd64 (2.35-0ubuntu3.5) ...
  362. Selecting previously unselected package gcc-11-base:amd64.
  363. Preparing to unpack .../13-gcc-11-base_11.4.0-1ubuntu1~22.04_amd64.deb ...
  364. Unpacking gcc-11-base:amd64 (11.4.0-1ubuntu1~22.04) ...
  365. Selecting previously unselected package libisl23:amd64.
  366. Preparing to unpack .../14-libisl23_0.24-2build1_amd64.deb ...
  367. Unpacking libisl23:amd64 (0.24-2build1) ...
  368. Selecting previously unselected package libmpc3:amd64.
  369. Preparing to unpack .../15-libmpc3_1.2.1-2build1_amd64.deb ...
  370. Unpacking libmpc3:amd64 (1.2.1-2build1) ...
  371. Selecting previously unselected package cpp-11.
  372. Preparing to unpack .../16-cpp-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
  373. Unpacking cpp-11 (11.4.0-1ubuntu1~22.04) ...
  374. Selecting previously unselected package cpp.
  375. Preparing to unpack .../17-cpp_4:11.2.0-1ubuntu1_amd64.deb ...
  376. Unpacking cpp (4:11.2.0-1ubuntu1) ...
  377. Selecting previously unselected package libcc1-0:amd64.
  378. Preparing to unpack .../18-libcc1-0_12.3.0-1ubuntu1~22.04_amd64.deb ...
  379. Unpacking libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ...
  380. Selecting previously unselected package libgomp1:amd64.
  381. Preparing to unpack .../19-libgomp1_12.3.0-1ubuntu1~22.04_amd64.deb ...
  382. Unpacking libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ...
  383. Selecting previously unselected package libitm1:amd64.
  384. Preparing to unpack .../20-libitm1_12.3.0-1ubuntu1~22.04_amd64.deb ...
  385. Unpacking libitm1:amd64 (12.3.0-1ubuntu1~22.04) ...
  386. Selecting previously unselected package libatomic1:amd64.
  387. Preparing to unpack .../21-libatomic1_12.3.0-1ubuntu1~22.04_amd64.deb ...
  388. Unpacking libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ...
  389. Selecting previously unselected package libasan6:amd64.
  390. Preparing to unpack .../22-libasan6_11.4.0-1ubuntu1~22.04_amd64.deb ...
  391. Unpacking libasan6:amd64 (11.4.0-1ubuntu1~22.04) ...
  392. Selecting previously unselected package liblsan0:amd64.
  393. Preparing to unpack .../23-liblsan0_12.3.0-1ubuntu1~22.04_amd64.deb ...
  394. Unpacking liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ...
  395. Selecting previously unselected package libtsan0:amd64.
  396. Preparing to unpack .../24-libtsan0_11.4.0-1ubuntu1~22.04_amd64.deb ...
  397. Unpacking libtsan0:amd64 (11.4.0-1ubuntu1~22.04) ...
  398. Selecting previously unselected package libubsan1:amd64.
  399. Preparing to unpack .../25-libubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ...
  400. Unpacking libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ...
  401. Selecting previously unselected package libquadmath0:amd64.
  402. Preparing to unpack .../26-libquadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ...
  403. Unpacking libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ...
  404. Selecting previously unselected package libgcc-11-dev:amd64.
  405. Preparing to unpack .../27-libgcc-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
  406. Unpacking libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
  407. Selecting previously unselected package gcc-11.
  408. Preparing to unpack .../28-gcc-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
  409. Unpacking gcc-11 (11.4.0-1ubuntu1~22.04) ...
  410. Selecting previously unselected package gcc.
  411. Preparing to unpack .../29-gcc_4:11.2.0-1ubuntu1_amd64.deb ...
  412. Unpacking gcc (4:11.2.0-1ubuntu1) ...
  413. Selecting previously unselected package libstdc++-11-dev:amd64.
  414. Preparing to unpack .../30-libstdc++-11-dev_11.4.0-1ubuntu1~22.04_amd64.deb ...
  415. Unpacking libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
  416. Selecting previously unselected package g++-11.
  417. Preparing to unpack .../31-g++-11_11.4.0-1ubuntu1~22.04_amd64.deb ...
  418. Unpacking g++-11 (11.4.0-1ubuntu1~22.04) ...
  419. Selecting previously unselected package g++.
  420. Preparing to unpack .../32-g++_4:11.2.0-1ubuntu1_amd64.deb ...
  421. Unpacking g++ (4:11.2.0-1ubuntu1) ...
  422. Selecting previously unselected package make.
  423. Preparing to unpack .../33-make_4.3-4.1build1_amd64.deb ...
  424. Unpacking make (4.3-4.1build1) ...
  425. Selecting previously unselected package libdpkg-perl.
  426. Preparing to unpack .../34-libdpkg-perl_1.21.1ubuntu2.2_all.deb ...
  427. Unpacking libdpkg-perl (1.21.1ubuntu2.2) ...
  428. Selecting previously unselected package bzip2.
  429. Preparing to unpack .../35-bzip2_1.0.8-5build1_amd64.deb ...
  430. Unpacking bzip2 (1.0.8-5build1) ...
  431. Selecting previously unselected package lto-disabled-list.
  432. Preparing to unpack .../36-lto-disabled-list_24_all.deb ...
  433. Unpacking lto-disabled-list (24) ...
  434. Selecting previously unselected package dpkg-dev.
  435. Preparing to unpack .../37-dpkg-dev_1.21.1ubuntu2.2_all.deb ...
  436. Unpacking dpkg-dev (1.21.1ubuntu2.2) ...
  437. Selecting previously unselected package build-essential.
  438. Preparing to unpack .../38-build-essential_12.9ubuntu3_amd64.deb ...
  439. Unpacking build-essential (12.9ubuntu3) ...
  440. Selecting previously unselected package cifs-utils.
  441. Preparing to unpack .../39-cifs-utils_2:6.14-1ubuntu0.1_amd64.deb ...
  442. Unpacking cifs-utils (2:6.14-1ubuntu0.1) ...
  443. Selecting previously unselected package debconf-utils.
  444. Preparing to unpack .../40-debconf-utils_1.5.79ubuntu1_all.deb ...
  445. Unpacking debconf-utils (1.5.79ubuntu1) ...
  446. Selecting previously unselected package dns-root-data.
  447. Preparing to unpack .../41-dns-root-data_2021011101_all.deb ...
  448. Unpacking dns-root-data (2021011101) ...
  449. Selecting previously unselected package fonts-dejavu-core.
  450. Preparing to unpack .../42-fonts-dejavu-core_2.37-2build1_all.deb ...
  451. Unpacking fonts-dejavu-core (2.37-2build1) ...
  452. Selecting previously unselected package fontconfig-config.
  453. Preparing to unpack .../43-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
  454. Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
  455. Selecting previously unselected package libdeflate0:amd64.
  456. Preparing to unpack .../44-libdeflate0_1.10-2_amd64.deb ...
  457. Unpacking libdeflate0:amd64 (1.10-2) ...
  458. Selecting previously unselected package libevent-2.1-7:amd64.
  459. Preparing to unpack .../45-libevent-2.1-7_2.1.12-stable-1build3_amd64.deb ...
  460. Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1build3) ...
  461. Selecting previously unselected package libfontconfig1:amd64.
  462. Preparing to unpack .../46-libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb ...
  463. Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
  464. Selecting previously unselected package libjpeg-turbo8:amd64.
  465. Preparing to unpack .../47-libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb ...
  466. Unpacking libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ...
  467. Selecting previously unselected package libjpeg8:amd64.
  468. Preparing to unpack .../48-libjpeg8_8c-2ubuntu10_amd64.deb ...
  469. Unpacking libjpeg8:amd64 (8c-2ubuntu10) ...
  470. Selecting previously unselected package libjbig0:amd64.
  471. Preparing to unpack .../49-libjbig0_2.1-3.1ubuntu0.22.04.1_amd64.deb ...
  472. Unpacking libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ...
  473. Selecting previously unselected package libwebp7:amd64.
  474. Preparing to unpack .../50-libwebp7_1.2.2-2ubuntu0.22.04.2_amd64.deb ...
  475. Unpacking libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ...
  476. Selecting previously unselected package libtiff5:amd64.
  477. Preparing to unpack .../51-libtiff5_4.3.0-6ubuntu0.7_amd64.deb ...
  478. Unpacking libtiff5:amd64 (4.3.0-6ubuntu0.7) ...
  479. Selecting previously unselected package libxpm4:amd64.
  480. Preparing to unpack .../52-libxpm4_1:3.5.12-1ubuntu0.22.04.2_amd64.deb ...
  481. Unpacking libxpm4:amd64 (1:3.5.12-1ubuntu0.22.04.2) ...
  482. Selecting previously unselected package libgd3:amd64.
  483. Preparing to unpack .../53-libgd3_2.3.0-2ubuntu2_amd64.deb ...
  484. Unpacking libgd3:amd64 (2.3.0-2ubuntu2) ...
  485. Selecting previously unselected package libipset13:amd64.
  486. Preparing to unpack .../54-libipset13_7.15-1build1_amd64.deb ...
  487. Unpacking libipset13:amd64 (7.15-1build1) ...
  488. Selecting previously unselected package nginx-common.
  489. Preparing to unpack .../55-nginx-common_1.18.0-6ubuntu14.4_all.deb ...
  490. Unpacking nginx-common (1.18.0-6ubuntu14.4) ...
  491. Selecting previously unselected package libnginx-mod-http-auth-pam.
  492. Preparing to unpack .../56-libnginx-mod-http-auth-pam_1.18.0-6ubuntu14.4_amd64.deb ...
  493. Unpacking libnginx-mod-http-auth-pam (1.18.0-6ubuntu14.4) ...
  494. Selecting previously unselected package libnginx-mod-http-dav-ext.
  495. Preparing to unpack .../57-libnginx-mod-http-dav-ext_1.18.0-6ubuntu14.4_amd64.deb ...
  496. Unpacking libnginx-mod-http-dav-ext (1.18.0-6ubuntu14.4) ...
  497. Selecting previously unselected package libnginx-mod-http-echo.
  498. Preparing to unpack .../58-libnginx-mod-http-echo_1.18.0-6ubuntu14.4_amd64.deb ...
  499. Unpacking libnginx-mod-http-echo (1.18.0-6ubuntu14.4) ...
  500. Selecting previously unselected package libnginx-mod-http-geoip2.
  501. Preparing to unpack .../59-libnginx-mod-http-geoip2_1.18.0-6ubuntu14.4_amd64.deb ...
  502. Unpacking libnginx-mod-http-geoip2 (1.18.0-6ubuntu14.4) ...
  503. Selecting previously unselected package libnginx-mod-http-image-filter.
  504. Preparing to unpack .../60-libnginx-mod-http-image-filter_1.18.0-6ubuntu14.4_amd64.deb ...
  505. Unpacking libnginx-mod-http-image-filter (1.18.0-6ubuntu14.4) ...
  506. Selecting previously unselected package libnginx-mod-http-subs-filter.
  507. Preparing to unpack .../61-libnginx-mod-http-subs-filter_1.18.0-6ubuntu14.4_amd64.deb ...
  508. Unpacking libnginx-mod-http-subs-filter (1.18.0-6ubuntu14.4) ...
  509. Selecting previously unselected package libnginx-mod-http-upstream-fair.
  510. Preparing to unpack .../62-libnginx-mod-http-upstream-fair_1.18.0-6ubuntu14.4_amd64.deb ...
  511. Unpacking libnginx-mod-http-upstream-fair (1.18.0-6ubuntu14.4) ...
  512. Selecting previously unselected package libnginx-mod-http-xslt-filter.
  513. Preparing to unpack .../63-libnginx-mod-http-xslt-filter_1.18.0-6ubuntu14.4_amd64.deb ...
  514. Unpacking libnginx-mod-http-xslt-filter (1.18.0-6ubuntu14.4) ...
  515. Selecting previously unselected package libnginx-mod-mail.
  516. Preparing to unpack .../64-libnginx-mod-mail_1.18.0-6ubuntu14.4_amd64.deb ...
  517. Unpacking libnginx-mod-mail (1.18.0-6ubuntu14.4) ...
  518. Selecting previously unselected package libnginx-mod-stream.
  519. Preparing to unpack .../65-libnginx-mod-stream_1.18.0-6ubuntu14.4_amd64.deb ...
  520. Unpacking libnginx-mod-stream (1.18.0-6ubuntu14.4) ...
  521. Selecting previously unselected package libnginx-mod-stream-geoip2.
  522. Preparing to unpack .../66-libnginx-mod-stream-geoip2_1.18.0-6ubuntu14.4_amd64.deb ...
  523. Unpacking libnginx-mod-stream-geoip2 (1.18.0-6ubuntu14.4) ...
  524. Selecting previously unselected package libprotobuf-c1:amd64.
  525. Preparing to unpack .../67-libprotobuf-c1_1.3.3-1ubuntu2.1_amd64.deb ...
  526. Unpacking libprotobuf-c1:amd64 (1.3.3-1ubuntu2.1) ...
  527. Selecting previously unselected package libunbound8:amd64.
  528. Preparing to unpack .../68-libunbound8_1.13.1-1ubuntu5.3_amd64.deb ...
  529. Unpacking libunbound8:amd64 (1.13.1-1ubuntu5.3) ...
  530. Selecting previously unselected package nginx-core.
  531. Preparing to unpack .../69-nginx-core_1.18.0-6ubuntu14.4_amd64.deb ...
  532. Unpacking nginx-core (1.18.0-6ubuntu14.4) ...
  533. Selecting previously unselected package nginx-full.
  534. Preparing to unpack .../70-nginx-full_1.18.0-6ubuntu14.4_amd64.deb ...
  535. Unpacking nginx-full (1.18.0-6ubuntu14.4) ...
  536. Selecting previously unselected package pwgen.
  537. Preparing to unpack .../71-pwgen_2.08-2build1_amd64.deb ...
  538. Unpacking pwgen (2.08-2build1) ...
  539. Selecting previously unselected package sshfs.
  540. Preparing to unpack .../72-sshfs_3.7.1+repack-2_amd64.deb ...
  541. Unpacking sshfs (3.7.1+repack-2) ...
  542. Selecting previously unselected package swaks.
  543. Preparing to unpack .../73-swaks_20201014.0-2_all.deb ...
  544. Unpacking swaks (20201014.0-2) ...
  545. Selecting previously unselected package unbound-anchor.
  546. Preparing to unpack .../74-unbound-anchor_1.13.1-1ubuntu5.3_amd64.deb ...
  547. Unpacking unbound-anchor (1.13.1-1ubuntu5.3) ...
  548. Selecting previously unselected package unbound.
  549. Preparing to unpack .../75-unbound_1.13.1-1ubuntu5.3_amd64.deb ...
  550. Unpacking unbound (1.13.1-1ubuntu5.3) ...
  551. Selecting previously unselected package unzip.
  552. Preparing to unpack .../76-unzip_6.0-26ubuntu3.1_amd64.deb ...
  553. Unpacking unzip (6.0-26ubuntu3.1) ...
  554. Selecting previously unselected package ipset.
  555. Preparing to unpack .../77-ipset_7.15-1build1_amd64.deb ...
  556. Unpacking ipset (7.15-1build1) ...
  557. Selecting previously unselected package resolvconf.
  558. Preparing to unpack .../78-resolvconf_1.84ubuntu1_all.deb ...
  559. Unpacking resolvconf (1.84ubuntu1) ...
  560. Setting up gcc-11-base:amd64 (11.4.0-1ubuntu1~22.04) ...
  561. Setting up libmecab2:amd64 (0.996-14build9) ...
  562. Setting up mysql-client-core-8.0 (8.0.35-0ubuntu0.22.04.1) ...
  563. Setting up lto-disabled-list (24) ...
  564. Setting up libnfsidmap1:amd64 (1:2.6.1-1ubuntu1.2) ...
  565. Setting up libxpm4:amd64 (1:3.5.12-1ubuntu0.22.04.2) ...
  566. Setting up unzip (6.0-26ubuntu3.1) ...
  567. Setting up sshfs (3.7.1+repack-2) ...
  568. Setting up libdeflate0:amd64 (1.10-2) ...
  569. Setting up linux-libc-dev:amd64 (5.15.0-91.101) ...
  570. Setting up nginx-common (1.18.0-6ubuntu14.4) ...
  571. Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service → /lib/systemd/system/nginx.service.
  572. Setting up rpcbind (1.2.6-2build1) ...
  573. Created symlink /etc/systemd/system/multi-user.target.wants/rpcbind.service → /lib/systemd/system/rpcbind.service.
  574. Created symlink /etc/systemd/system/sockets.target.wants/rpcbind.socket → /lib/systemd/system/rpcbind.socket.
  575. Setting up resolvconf (1.84ubuntu1) ...
  576. Created symlink /etc/systemd/system/sysinit.target.wants/resolvconf.service → /lib/systemd/system/resolvconf.service.
  577. Created symlink /etc/systemd/system/systemd-resolved.service.wants/resolvconf-pull-resolved.path → /lib/systemd/system/resolvconf-pull-resolved.path.
  578. Created symlink /etc/systemd/system/systemd-resolved.service.wants/resolvconf-pull-resolved.service → /lib/systemd/system/resolvconf-pull-resolved.service.
  579. resolvconf.postinst: Error: Cannot replace the current /etc/resolv.conf with a symbolic link because it is immutable; to correct this problem, gain root privileges in a terminal and run 'chattr -i /etc/resolv.conf' and then 'dpkg --configure resolvconf'; aborting
  580. dpkg: error processing package resolvconf (--configure):
  581.  installed resolvconf package post-installation script subprocess returned error exit status 1
  582. Setting up libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ...
  583. Setting up bzip2 (1.0.8-5build1) ...
  584. Setting up libprotobuf-c1:amd64 (1.3.3-1ubuntu2.1) ...
  585. Setting up libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ...
  586. Setting up libasan6:amd64 (11.4.0-1ubuntu1~22.04) ...
  587. Setting up acl (2.3.1-1) ...
  588. Setting up dns-root-data (2021011101) ...
  589. Setting up libtalloc2:amd64 (2.3.3-2build1) ...
  590. Setting up libnginx-mod-http-xslt-filter (1.18.0-6ubuntu14.4) ...
  591. Setting up libprotobuf-lite23:amd64 (3.12.4-1ubuntu7.22.04.1) ...
  592. Setting up libtirpc-dev:amd64 (1.3.2-2ubuntu0.1) ...
  593. Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
  594. Setting up libtevent0:amd64 (0.11.0-1build1) ...
  595. Setting up libnginx-mod-http-auth-pam (1.18.0-6ubuntu14.4) ...
  596. Setting up make (4.3-4.1build1) ...
  597. Setting up libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ...
  598. Setting up debconf-utils (1.5.79ubuntu1) ...
  599. Setting up libmpc3:amd64 (1.2.1-2build1) ...
  600. Setting up libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ...
  601. Setting up libevent-2.1-7:amd64 (2.1.12-stable-1build3) ...
  602. Setting up fonts-dejavu-core (2.37-2build1) ...
  603. Setting up libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ...
  604. Setting up libdpkg-perl (1.21.1ubuntu2.2) ...
  605. Setting up libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ...
  606. Setting up libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ...
  607. Setting up libnginx-mod-http-echo (1.18.0-6ubuntu14.4) ...
  608. Setting up swaks (20201014.0-2) ...
  609. Setting up libnginx-mod-http-subs-filter (1.18.0-6ubuntu14.4) ...
  610. Setting up keyutils (1.6.1-2ubuntu3) ...
  611. Setting up libipset13:amd64 (7.15-1build1) ...
  612. Setting up libnsl-dev:amd64 (1.3.0-2build2) ...
  613. Setting up libcrypt-dev:amd64 (1:4.4.27-1) ...
  614. Setting up mysql-client-8.0 (8.0.35-0ubuntu0.22.04.1) ...
  615. Setting up ipset (7.15-1build1) ...
  616. Setting up libisl23:amd64 (0.24-2build1) ...
  617. Setting up libnginx-mod-http-geoip2 (1.18.0-6ubuntu14.4) ...
  618. Setting up libc-dev-bin (2.35-0ubuntu3.5) ...
  619. Setting up pwgen (2.08-2build1) ...
  620. Setting up libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ...
  621. Setting up liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ...
  622. Setting up libitm1:amd64 (12.3.0-1ubuntu1~22.04) ...
  623. Setting up libevent-pthreads-2.1-7:amd64 (2.1.12-stable-1build3) ...
  624. Setting up libtsan0:amd64 (11.4.0-1ubuntu1~22.04) ...
  625. Setting up libjpeg8:amd64 (8c-2ubuntu10) ...
  626. Setting up libnginx-mod-http-dav-ext (1.18.0-6ubuntu14.4) ...
  627. Setting up cpp-11 (11.4.0-1ubuntu1~22.04) ...
  628. Setting up libnginx-mod-mail (1.18.0-6ubuntu14.4) ...
  629. Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
  630. Setting up libnginx-mod-stream (1.18.0-6ubuntu14.4) ...
  631. Setting up libnginx-mod-http-upstream-fair (1.18.0-6ubuntu14.4) ...
  632. Setting up libwbclient0:amd64 (2:4.15.13+dfsg-0ubuntu1.5) ...
  633. Setting up dpkg-dev (1.21.1ubuntu2.2) ...
  634. Setting up nfs-common (1:2.6.1-1ubuntu1.2) ...
  635.  
  636. Creating config file /etc/idmapd.conf with new version
  637.  
  638. Creating config file /etc/nfs.conf with new version
  639. Adding system user `statd' (UID 116) ...
  640. Adding new user `statd' (UID 116) with group `nogroup' ...
  641. Not creating home directory `/var/lib/nfs'.
  642. Created symlink /etc/systemd/system/multi-user.target.wants/nfs-client.target → /lib/systemd/system/nfs-client.target.
  643. Created symlink /etc/systemd/system/remote-fs.target.wants/nfs-client.target → /lib/systemd/system/nfs-client.target.
  644. auth-rpcgss-module.service is a disabled or a static unit, not starting it.
  645. nfs-idmapd.service is a disabled or a static unit, not starting it.
  646. nfs-utils.service is a disabled or a static unit, not starting it.
  647. proc-fs-nfsd.mount is a disabled or a static unit, not starting it.
  648. rpc-gssd.service is a disabled or a static unit, not starting it.
  649. rpc-statd-notify.service is a disabled or a static unit, not starting it.
  650. rpc-statd.service is a disabled or a static unit, not starting it.
  651. rpc-svcgssd.service is a disabled or a static unit, not starting it.
  652. rpc_pipefs.target is a disabled or a static unit, not starting it.
  653. var-lib-nfs-rpc_pipefs.mount is a disabled or a static unit, not starting it.
  654. Setting up libunbound8:amd64 (1.13.1-1ubuntu5.3) ...
  655. Setting up mysql-server-core-8.0 (8.0.35-0ubuntu0.22.04.1) ...
  656. Setting up libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
  657. Setting up gcc-11 (11.4.0-1ubuntu1~22.04) ...
  658. Setting up cpp (4:11.2.0-1ubuntu1) ...
  659. Setting up libc6-dev:amd64 (2.35-0ubuntu3.5) ...
  660. Setting up libtiff5:amd64 (4.3.0-6ubuntu0.7) ...
  661. Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
  662. Setting up unbound-anchor (1.13.1-1ubuntu5.3) ...
  663. Setting up libnginx-mod-stream-geoip2 (1.18.0-6ubuntu14.4) ...
  664. Setting up mysql-server-8.0 (8.0.35-0ubuntu0.22.04.1) ...
  665. update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
  666. Renaming removed key_buffer and myisam-recover options (if present)
  667. mysqld will log errors to /var/log/mysql/error.log
  668. mysqld is running as pid 3840
  669. Created symlink /etc/systemd/system/multi-user.target.wants/mysql.service → /lib/systemd/system/mysql.service.
  670. Setting up unbound (1.13.1-1ubuntu5.3) ...
  671. Created symlink /etc/systemd/system/multi-user.target.wants/unbound.service → /lib/systemd/system/unbound.service.
  672. Created symlink /etc/systemd/system/unbound.service.wants/unbound-resolvconf.service → /lib/systemd/system/unbound-resolvconf.service.
  673. Setting up cifs-utils (2:6.14-1ubuntu0.1) ...
  674. update-alternatives: using /usr/lib/x86_64-linux-gnu/cifs-utils/idmapwb.so to provide /etc/cifs-utils/idmap-plugin (idmap-plugin) in auto mode
  675. Setting up gcc (4:11.2.0-1ubuntu1) ...
  676. Setting up libgd3:amd64 (2.3.0-2ubuntu2) ...
  677. Setting up libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04) ...
  678. Setting up g++-11 (11.4.0-1ubuntu1~22.04) ...
  679. Setting up libnginx-mod-http-image-filter (1.18.0-6ubuntu14.4) ...
  680. Setting up g++ (4:11.2.0-1ubuntu1) ...
  681. update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
  682. Setting up build-essential (12.9ubuntu3) ...
  683. Setting up nginx-core (1.18.0-6ubuntu14.4) ...
  684.  * Upgrading binary nginx                                                [ OK ]
  685. Setting up nginx-full (1.18.0-6ubuntu14.4) ...
  686. Processing triggers for libc-bin (2.35-0ubuntu3.5) ...
  687. Processing triggers for ufw (0.36.1-4ubuntu0.1) ...
  688. Processing triggers for man-db (2.10.2-1) ...
  689. Errors were encountered while processing:
  690.  resolvconf
  691. needrestart is being skipped since dpkg has failed
  692. E: Sub-process /usr/bin/dpkg returned an error code (1)