Advertisement
Guest User

Untitled

a guest
Jul 1st, 2022
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 70.77 KB | None | 0 0
  1. ice@nobody-hq:~$ cat /var/log/cloudron-setup.log
  2. Running cloudron-setup with args : --
  3. Hit:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
  4. Get:2 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease [109 kB]
  5. Get:3 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease [99.8 kB]
  6. Get:4 http://us.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
  7. Fetched 320 kB in 2s (159 kB/s)
  8. Reading package lists...
  9. Reading package lists...
  10. Building dependency tree...
  11. Reading state information...
  12. python3 is already the newest version (3.10.4-0ubuntu2).
  13. python3 set to manually installed.
  14. ubuntu-standard is already the newest version (1.481).
  15. curl is already the newest version (7.81.0-1ubuntu1.3).
  16. software-properties-common is already the newest version (0.99.22.2).
  17. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  18.  
  19. readonly SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
  20.  
  21. readonly arg_infraversionpath="${SOURCE_DIR}/../src"
  22.  
  23. function die {
  24. echo $1
  25. exit 1
  26. }
  27.  
  28. export DEBIAN_FRONTEND=noninteractive
  29.  
  30. readonly ubuntu_codename=$(lsb_release -cs)
  31. readonly ubuntu_version=$(lsb_release -rs)
  32.  
  33. # hold grub since updating it breaks on some VPS providers. also, dist-upgrade will trigger it
  34. apt-mark hold grub* >/dev/null
  35. apt-get -o Dpkg::Options::="--force-confdef" update -y
  36. Hit:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
  37. Get:2 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease [109 kB]
  38. Get:3 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease [99.8 kB]
  39. Get:4 http://us.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
  40. Fetched 320 kB in 1s (312 kB/s)
  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. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  48. apt-mark unhold grub* >/dev/null
  49.  
  50. echo "==> Installing required packages"
  51. ==> Installing required packages
  52.  
  53. debconf-set-selections <<< 'mysql-server mysql-server/root_password password password'
  54. debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password password'
  55.  
  56. # this enables automatic security upgrades (https://help.ubuntu.com/community/AutomaticSecurityUpdates)
  57. # resolvconf is needed for unbound to work property after disabling systemd-resolved in 18.04
  58. case "${ubuntu_version}" in
  59. 16.04)
  60. gpg_package="gnupg"
  61. mysql_package="mysql-server-5.7"
  62. ntpd_package=""
  63. python_package="python2.7"
  64. nginx_package="" # we use custom package for TLS v1.3 support
  65. ;;
  66. 18.04)
  67. gpg_package="gpg"
  68. mysql_package="mysql-server-5.7"
  69. ntpd_package=""
  70. python_package="python2.7"
  71. nginx_package="" # we use custom package for TLS v1.3 support
  72. ;;
  73. 20.04)
  74. gpg_package="gpg"
  75. mysql_package="mysql-server-8.0"
  76. ntpd_package="systemd-timesyncd"
  77. python_package="python3.8"
  78. nginx_package="nginx-full"
  79. ;;
  80. 22.04)
  81. gpg_package="gpg"
  82. mysql_package="mysql-server-8.0"
  83. ntpd_package="systemd-timesyncd"
  84. python_package="python3.10"
  85. nginx_package="nginx-full"
  86. ;;
  87. esac
  88.  
  89. apt-get -y install --no-install-recommends \
  90. acl \
  91. apparmor \
  92. build-essential \
  93. cifs-utils \
  94. cron \
  95. curl \
  96. debconf-utils \
  97. dmsetup \
  98. $gpg_package \
  99. ipset \
  100. iptables \
  101. lib${python_package} \
  102. linux-generic \
  103. logrotate \
  104. $mysql_package \
  105. nfs-common \
  106. $nginx_package \
  107. $ntpd_package \
  108. openssh-server \
  109. pwgen \
  110. resolvconf \
  111. sshfs \
  112. swaks \
  113. tzdata \
  114. unattended-upgrades \
  115. unbound \
  116. unzip \
  117. xfsprogs
  118. Reading package lists...
  119. Building dependency tree...
  120. Reading state information...
  121. cron is already the newest version (3.0pl1-137ubuntu3).
  122. cron set to manually installed.
  123. dmsetup is already the newest version (2:1.02.175-2.1ubuntu4).
  124. dmsetup set to manually installed.
  125. gpg is already the newest version (2.2.27-3ubuntu2).
  126. gpg set to manually installed.
  127. iptables is already the newest version (1.8.7-1ubuntu5).
  128. iptables set to manually installed.
  129. libpython3.10 is already the newest version (3.10.4-3).
  130. libpython3.10 set to manually installed.
  131. openssh-server is already the newest version (1:8.9p1-3).
  132. tzdata is already the newest version (2022a-0ubuntu1).
  133. tzdata set to manually installed.
  134. unattended-upgrades is already the newest version (2.8ubuntu1).
  135. apparmor is already the newest version (3.0.4-2ubuntu2.1).
  136. curl is already the newest version (7.81.0-1ubuntu1.3).
  137. linux-generic is already the newest version (5.15.0.40.42).
  138. logrotate is already the newest version (3.19.0-1ubuntu1.1).
  139. logrotate set to manually installed.
  140. systemd-timesyncd is already the newest version (249.11-0ubuntu3.3).
  141. systemd-timesyncd set to manually installed.
  142. The following additional packages will be installed:
  143. bzip2 cpp cpp-11 dns-root-data dpkg-dev fontconfig-config fonts-dejavu-core
  144. g++ g++-11 gcc gcc-11 gcc-11-base keyutils libasan6 libatomic1 libc-dev-bin
  145. libc6-dev libcc1-0 libcrypt-dev libdeflate0 libdpkg-perl libevent-2.1-7
  146. libevent-pthreads-2.1-7 libfontconfig1 libgcc-11-dev libgd3 libgomp1
  147. libinih1 libipset13 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8
  148. liblsan0 libmecab2 libmpc3 libnfsidmap1 libnginx-mod-http-auth-pam
  149. libnginx-mod-http-dav-ext libnginx-mod-http-echo libnginx-mod-http-geoip2
  150. libnginx-mod-http-image-filter libnginx-mod-http-subs-filter
  151. libnginx-mod-http-upstream-fair libnginx-mod-http-xslt-filter
  152. libnginx-mod-mail libnginx-mod-stream libnginx-mod-stream-geoip2 libnsl-dev
  153. libprotobuf-c1 libprotobuf-lite23 libquadmath0 libstdc++-11-dev libtalloc2
  154. libtevent0 libtiff5 libtirpc-dev libtsan0 libubsan1 libunbound8 libwbclient0
  155. libwebp7 libxpm4 linux-libc-dev lto-disabled-list make mysql-client-8.0
  156. mysql-client-core-8.0 mysql-common mysql-server-core-8.0 nginx-common
  157. nginx-core rpcbind rpcsvc-proto unbound-anchor
  158. Suggested packages:
  159. bzip2-doc smbclient winbind cpp-doc gcc-11-locales debian-keyring
  160. g++-multilib g++-11-multilib gcc-11-doc gcc-multilib manpages-dev autoconf
  161. automake libtool flex bison gdb gcc-doc gcc-11-multilib glibc-doc bzr
  162. libgd-tools libstdc++-11-doc make-doc mailx tinyca watchdog fcgiwrap
  163. nginx-doc ssl-cert libauthen-ntlm-perl libauthen-sasl-perl perl-doc zip
  164. xfsdump attr quota
  165. Recommended packages:
  166. fakeroot libalgorithm-merge-perl manpages-dev libc-devtools
  167. libfile-fcntllock-perl libhtml-template-perl mecab-ipadic-utf8
  168. libio-socket-inet6-perl libnet-dns-perl libnet-ssleay-perl
  169. The following NEW packages will be installed:
  170. acl build-essential bzip2 cifs-utils cpp cpp-11 debconf-utils dns-root-data
  171. dpkg-dev fontconfig-config fonts-dejavu-core g++ g++-11 gcc gcc-11
  172. gcc-11-base ipset keyutils libasan6 libatomic1 libc-dev-bin libc6-dev
  173. libcc1-0 libcrypt-dev libdeflate0 libdpkg-perl libevent-2.1-7
  174. libevent-pthreads-2.1-7 libfontconfig1 libgcc-11-dev libgd3 libgomp1
  175. libinih1 libipset13 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8
  176. liblsan0 libmecab2 libmpc3 libnfsidmap1 libnginx-mod-http-auth-pam
  177. libnginx-mod-http-dav-ext libnginx-mod-http-echo libnginx-mod-http-geoip2
  178. libnginx-mod-http-image-filter libnginx-mod-http-subs-filter
  179. libnginx-mod-http-upstream-fair libnginx-mod-http-xslt-filter
  180. libnginx-mod-mail libnginx-mod-stream libnginx-mod-stream-geoip2 libnsl-dev
  181. libprotobuf-c1 libprotobuf-lite23 libquadmath0 libstdc++-11-dev libtalloc2
  182. libtevent0 libtiff5 libtirpc-dev libtsan0 libubsan1 libunbound8 libwbclient0
  183. libwebp7 libxpm4 linux-libc-dev lto-disabled-list make mysql-client-8.0
  184. mysql-client-core-8.0 mysql-common mysql-server-8.0 mysql-server-core-8.0
  185. nfs-common nginx-common nginx-core nginx-full pwgen resolvconf rpcbind
  186. rpcsvc-proto sshfs swaks unbound unbound-anchor unzip xfsprogs
  187. 0 upgraded, 91 newly installed, 0 to remove and 0 not upgraded.
  188. Need to get 86.7 MB of archives.
  189. After this operation, 400 MB of additional disk space will be used.
  190. Get:1 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libtalloc2 amd64 2.3.3-2build1 [25.6 kB]
  191. Get:2 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libtevent0 amd64 0.11.0-1build1 [39.2 kB]
  192. Get:3 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libwbclient0 amd64 2:4.15.5~dfsg-0ubuntu5 [266 kB]
  193. Get:4 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 mysql-common all 5.8+1.0.8 [7,212 B]
  194. Get:5 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 mysql-client-core-8.0 amd64 8.0.29-0ubuntu0.22.04.2 [2,483 kB]
  195. Get:6 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 mysql-client-8.0 amd64 8.0.29-0ubuntu0.22.04.2 [22.7 kB]
  196. Get:7 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libevent-pthreads-2.1-7 amd64 2.1.12-stable-1build3 [7,642 B]
  197. Get:8 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libmecab2 amd64 0.996-14build9 [199 kB]
  198. Get:9 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libprotobuf-lite23 amd64 3.12.4-1ubuntu7 [208 kB]
  199. Get:10 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 mysql-server-core-8.0 amd64 8.0.29-0ubuntu0.22.04.2 [16.9 MB]
  200. Get:11 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 mysql-server-8.0 amd64 8.0.29-0ubuntu0.22.04.2 [1,391 kB]
  201. Get:12 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libnfsidmap1 amd64 1:2.6.1-1ubuntu1 [43.5 kB]
  202. Get:13 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 rpcbind amd64 1.2.6-2build1 [46.6 kB]
  203. Get:14 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 keyutils amd64 1.6.1-2ubuntu3 [50.4 kB]
  204. Get:15 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 nfs-common amd64 1:2.6.1-1ubuntu1 [241 kB]
  205. Get:16 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 acl amd64 2.3.1-1 [38.5 kB]
  206. Get:17 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libc-dev-bin amd64 2.35-0ubuntu3 [20.3 kB]
  207. Get:18 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-libc-dev amd64 5.15.0-40.43 [1,286 kB]
  208. Get:19 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libcrypt-dev amd64 1:4.4.27-1 [112 kB]
  209. Get:20 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 rpcsvc-proto amd64 1.4.2-0ubuntu6 [68.5 kB]
  210. Get:21 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libtirpc-dev amd64 1.3.2-2build1 [192 kB]
  211. Get:22 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libnsl-dev amd64 1.3.0-2build2 [71.3 kB]
  212. Get:23 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libc6-dev amd64 2.35-0ubuntu3 [2,099 kB]
  213. Get:24 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 gcc-11-base amd64 11.2.0-19ubuntu1 [20.8 kB]
  214. Get:25 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libisl23 amd64 0.24-2build1 [727 kB]
  215. Get:26 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libmpc3 amd64 1.2.1-2build1 [46.9 kB]
  216. Get:27 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 cpp-11 amd64 11.2.0-19ubuntu1 [9,966 kB]
  217. Get:28 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 cpp amd64 4:11.2.0-1ubuntu1 [27.7 kB]
  218. Get:29 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libcc1-0 amd64 12-20220319-1ubuntu1 [47.2 kB]
  219. Get:30 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgomp1 amd64 12-20220319-1ubuntu1 [126 kB]
  220. Get:31 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libitm1 amd64 12-20220319-1ubuntu1 [30.2 kB]
  221. Get:32 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libatomic1 amd64 12-20220319-1ubuntu1 [10.4 kB]
  222. Get:33 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libasan6 amd64 11.2.0-19ubuntu1 [2,283 kB]
  223. Get:34 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 liblsan0 amd64 12-20220319-1ubuntu1 [1,069 kB]
  224. Get:35 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libtsan0 amd64 11.2.0-19ubuntu1 [2,261 kB]
  225. Get:36 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libubsan1 amd64 12-20220319-1ubuntu1 [976 kB]
  226. Get:37 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libquadmath0 amd64 12-20220319-1ubuntu1 [154 kB]
  227. Get:38 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgcc-11-dev amd64 11.2.0-19ubuntu1 [2,526 kB]
  228. Get:39 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 gcc-11 amd64 11.2.0-19ubuntu1 [20.1 MB]
  229. Get:40 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 gcc amd64 4:11.2.0-1ubuntu1 [5,112 B]
  230. Get:41 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libstdc++-11-dev amd64 11.2.0-19ubuntu1 [2,083 kB]
  231. Get:42 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 g++-11 amd64 11.2.0-19ubuntu1 [11.4 MB]
  232. Get:43 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 g++ amd64 4:11.2.0-1ubuntu1 [1,412 B]
  233. Get:44 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 make amd64 4.3-4.1build1 [180 kB]
  234. Get:45 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdpkg-perl all 1.21.1ubuntu2.1 [237 kB]
  235. Get:46 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 bzip2 amd64 1.0.8-5build1 [34.8 kB]
  236. Get:47 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 lto-disabled-list all 24 [12.5 kB]
  237. Get:48 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 dpkg-dev all 1.21.1ubuntu2.1 [922 kB]
  238. Get:49 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 build-essential amd64 12.9ubuntu3 [4,744 B]
  239. Get:50 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 cifs-utils amd64 2:6.14-1ubuntu0.1 [95.7 kB]
  240. Get:51 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 debconf-utils all 1.5.79ubuntu1 [57.0 kB]
  241. Get:52 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 dns-root-data all 2021011101 [5,256 B]
  242. Get:53 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 fonts-dejavu-core all 2.37-2build1 [1,041 kB]
  243. Get:54 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
  244. Get:55 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate0 amd64 1.10-2 [70.9 kB]
  245. Get:56 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1build3 [148 kB]
  246. Get:57 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu5 [131 kB]
  247. Get:58 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-turbo8 amd64 2.1.2-0ubuntu1 [134 kB]
  248. Get:59 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg8 amd64 8c-2ubuntu10 [2,264 B]
  249. Get:60 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libjbig0 amd64 2.1-3.1build3 [28.9 kB]
  250. Get:61 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libwebp7 amd64 1.2.2-2 [206 kB]
  251. Get:62 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libtiff5 amd64 4.3.0-6 [183 kB]
  252. Get:63 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxpm4 amd64 1:3.5.12-1build2 [36.2 kB]
  253. Get:64 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgd3 amd64 2.3.0-2ubuntu2 [129 kB]
  254. Get:65 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libinih1 amd64 53-1ubuntu3 [7,250 B]
  255. Get:66 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libipset13 amd64 7.15-1build1 [63.4 kB]
  256. Get:67 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 nginx-common all 1.18.0-6ubuntu14.1 [40.1 kB]
  257. Get:68 http://us.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-auth-pam amd64 1.18.0-6ubuntu14.1 [10.2 kB]
  258. Get:69 http://us.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-dav-ext amd64 1.18.0-6ubuntu14.1 [18.0 kB]
  259. Get:70 http://us.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-echo amd64 1.18.0-6ubuntu14.1 [22.7 kB]
  260. Get:71 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-http-geoip2 amd64 1.18.0-6ubuntu14.1 [11.9 kB]
  261. Get:72 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-http-image-filter amd64 1.18.0-6ubuntu14.1 [15.4 kB]
  262. Get:73 http://us.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-subs-filter amd64 1.18.0-6ubuntu14.1 [13.2 kB]
  263. Get:74 http://us.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libnginx-mod-http-upstream-fair amd64 1.18.0-6ubuntu14.1 [13.4 kB]
  264. Get:75 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-http-xslt-filter amd64 1.18.0-6ubuntu14.1 [13.8 kB]
  265. Get:76 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-mail amd64 1.18.0-6ubuntu14.1 [45.7 kB]
  266. Get:77 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-stream amd64 1.18.0-6ubuntu14.1 [72.9 kB]
  267. Get:78 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnginx-mod-stream-geoip2 amd64 1.18.0-6ubuntu14.1 [10.1 kB]
  268. Get:79 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 libprotobuf-c1 amd64 1.3.3-1ubuntu2 [20.0 kB]
  269. Get:80 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libunbound8 amd64 1.13.1-1ubuntu5 [394 kB]
  270. Get:81 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 nginx-core amd64 1.18.0-6ubuntu14.1 [482 kB]
  271. Get:82 http://us.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 nginx-full amd64 1.18.0-6ubuntu14.1 [4,354 B]
  272. Get:83 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 pwgen amd64 2.08-2build1 [17.4 kB]
  273. Get:84 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 sshfs amd64 3.7.1+repack-2 [45.1 kB]
  274. Get:85 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 swaks all 20201014.0-2 [85.9 kB]
  275. Get:86 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 unbound-anchor amd64 1.13.1-1ubuntu5 [27.7 kB]
  276. Get:87 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 unbound amd64 1.13.1-1ubuntu5 [859 kB]
  277. Get:88 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 unzip amd64 6.0-26ubuntu3 [174 kB]
  278. Get:89 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 xfsprogs amd64 5.13.0-1ubuntu2 [870 kB]
  279. Get:90 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 ipset amd64 7.15-1build1 [32.8 kB]
  280. Get:91 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 resolvconf all 1.84ubuntu1 [54.7 kB]
  281. Preconfiguring packages ...
  282. Fetched 86.7 MB in 5s (16.6 MB/s)
  283. Selecting previously unselected package libtalloc2:amd64.
  284. (Reading database ... 107333 files and directories currently installed.)
  285. Preparing to unpack .../0-libtalloc2_2.3.3-2build1_amd64.deb ...
  286. Unpacking libtalloc2:amd64 (2.3.3-2build1) ...
  287. Selecting previously unselected package libtevent0:amd64.
  288. Preparing to unpack .../1-libtevent0_0.11.0-1build1_amd64.deb ...
  289. Unpacking libtevent0:amd64 (0.11.0-1build1) ...
  290. Selecting previously unselected package libwbclient0:amd64.
  291. Preparing to unpack .../2-libwbclient0_2%3a4.15.5~dfsg-0ubuntu5_amd64.deb ...
  292. Unpacking libwbclient0:amd64 (2:4.15.5~dfsg-0ubuntu5) ...
  293. Selecting previously unselected package mysql-common.
  294. Preparing to unpack .../3-mysql-common_5.8+1.0.8_all.deb ...
  295. Unpacking mysql-common (5.8+1.0.8) ...
  296. Selecting previously unselected package mysql-client-core-8.0.
  297. Preparing to unpack .../4-mysql-client-core-8.0_8.0.29-0ubuntu0.22.04.2_amd64.deb ...
  298. Unpacking mysql-client-core-8.0 (8.0.29-0ubuntu0.22.04.2) ...
  299. Selecting previously unselected package mysql-client-8.0.
  300. Preparing to unpack .../5-mysql-client-8.0_8.0.29-0ubuntu0.22.04.2_amd64.deb ...
  301. Unpacking mysql-client-8.0 (8.0.29-0ubuntu0.22.04.2) ...
  302. Selecting previously unselected package libevent-pthreads-2.1-7:amd64.
  303. Preparing to unpack .../6-libevent-pthreads-2.1-7_2.1.12-stable-1build3_amd64.deb ...
  304. Unpacking libevent-pthreads-2.1-7:amd64 (2.1.12-stable-1build3) ...
  305. Selecting previously unselected package libmecab2:amd64.
  306. Preparing to unpack .../7-libmecab2_0.996-14build9_amd64.deb ...
  307. Unpacking libmecab2:amd64 (0.996-14build9) ...
  308. Selecting previously unselected package libprotobuf-lite23:amd64.
  309. Preparing to unpack .../8-libprotobuf-lite23_3.12.4-1ubuntu7_amd64.deb ...
  310. Unpacking libprotobuf-lite23:amd64 (3.12.4-1ubuntu7) ...
  311. Selecting previously unselected package mysql-server-core-8.0.
  312. Preparing to unpack .../9-mysql-server-core-8.0_8.0.29-0ubuntu0.22.04.2_amd64.deb ...
  313. Unpacking mysql-server-core-8.0 (8.0.29-0ubuntu0.22.04.2) ...
  314. Setting up mysql-common (5.8+1.0.8) ...
  315. update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
  316. Selecting previously unselected package mysql-server-8.0.
  317. (Reading database ... 107581 files and directories currently installed.)
  318. Preparing to unpack .../00-mysql-server-8.0_8.0.29-0ubuntu0.22.04.2_amd64.deb ...
  319. Unpacking mysql-server-8.0 (8.0.29-0ubuntu0.22.04.2) ...
  320. Selecting previously unselected package libnfsidmap1:amd64.
  321. Preparing to unpack .../01-libnfsidmap1_1%3a2.6.1-1ubuntu1_amd64.deb ...
  322. Unpacking libnfsidmap1:amd64 (1:2.6.1-1ubuntu1) ...
  323. Selecting previously unselected package rpcbind.
  324. Preparing to unpack .../02-rpcbind_1.2.6-2build1_amd64.deb ...
  325. Unpacking rpcbind (1.2.6-2build1) ...
  326. Selecting previously unselected package keyutils.
  327. Preparing to unpack .../03-keyutils_1.6.1-2ubuntu3_amd64.deb ...
  328. Unpacking keyutils (1.6.1-2ubuntu3) ...
  329. Selecting previously unselected package nfs-common.
  330. Preparing to unpack .../04-nfs-common_1%3a2.6.1-1ubuntu1_amd64.deb ...
  331. Unpacking nfs-common (1:2.6.1-1ubuntu1) ...
  332. Selecting previously unselected package acl.
  333. Preparing to unpack .../05-acl_2.3.1-1_amd64.deb ...
  334. Unpacking acl (2.3.1-1) ...
  335. Selecting previously unselected package libc-dev-bin.
  336. Preparing to unpack .../06-libc-dev-bin_2.35-0ubuntu3_amd64.deb ...
  337. Unpacking libc-dev-bin (2.35-0ubuntu3) ...
  338. Selecting previously unselected package linux-libc-dev:amd64.
  339. Preparing to unpack .../07-linux-libc-dev_5.15.0-40.43_amd64.deb ...
  340. Unpacking linux-libc-dev:amd64 (5.15.0-40.43) ...
  341. Selecting previously unselected package libcrypt-dev:amd64.
  342. Preparing to unpack .../08-libcrypt-dev_1%3a4.4.27-1_amd64.deb ...
  343. Unpacking libcrypt-dev:amd64 (1:4.4.27-1) ...
  344. Selecting previously unselected package rpcsvc-proto.
  345. Preparing to unpack .../09-rpcsvc-proto_1.4.2-0ubuntu6_amd64.deb ...
  346. Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
  347. Selecting previously unselected package libtirpc-dev:amd64.
  348. Preparing to unpack .../10-libtirpc-dev_1.3.2-2build1_amd64.deb ...
  349. Unpacking libtirpc-dev:amd64 (1.3.2-2build1) ...
  350. Selecting previously unselected package libnsl-dev:amd64.
  351. Preparing to unpack .../11-libnsl-dev_1.3.0-2build2_amd64.deb ...
  352. Unpacking libnsl-dev:amd64 (1.3.0-2build2) ...
  353. Selecting previously unselected package libc6-dev:amd64.
  354. Preparing to unpack .../12-libc6-dev_2.35-0ubuntu3_amd64.deb ...
  355. Unpacking libc6-dev:amd64 (2.35-0ubuntu3) ...
  356. Selecting previously unselected package gcc-11-base:amd64.
  357. Preparing to unpack .../13-gcc-11-base_11.2.0-19ubuntu1_amd64.deb ...
  358. Unpacking gcc-11-base:amd64 (11.2.0-19ubuntu1) ...
  359. Selecting previously unselected package libisl23:amd64.
  360. Preparing to unpack .../14-libisl23_0.24-2build1_amd64.deb ...
  361. Unpacking libisl23:amd64 (0.24-2build1) ...
  362. Selecting previously unselected package libmpc3:amd64.
  363. Preparing to unpack .../15-libmpc3_1.2.1-2build1_amd64.deb ...
  364. Unpacking libmpc3:amd64 (1.2.1-2build1) ...
  365. Selecting previously unselected package cpp-11.
  366. Preparing to unpack .../16-cpp-11_11.2.0-19ubuntu1_amd64.deb ...
  367. Unpacking cpp-11 (11.2.0-19ubuntu1) ...
  368. Selecting previously unselected package cpp.
  369. Preparing to unpack .../17-cpp_4%3a11.2.0-1ubuntu1_amd64.deb ...
  370. Unpacking cpp (4:11.2.0-1ubuntu1) ...
  371. Selecting previously unselected package libcc1-0:amd64.
  372. Preparing to unpack .../18-libcc1-0_12-20220319-1ubuntu1_amd64.deb ...
  373. Unpacking libcc1-0:amd64 (12-20220319-1ubuntu1) ...
  374. Selecting previously unselected package libgomp1:amd64.
  375. Preparing to unpack .../19-libgomp1_12-20220319-1ubuntu1_amd64.deb ...
  376. Unpacking libgomp1:amd64 (12-20220319-1ubuntu1) ...
  377. Selecting previously unselected package libitm1:amd64.
  378. Preparing to unpack .../20-libitm1_12-20220319-1ubuntu1_amd64.deb ...
  379. Unpacking libitm1:amd64 (12-20220319-1ubuntu1) ...
  380. Selecting previously unselected package libatomic1:amd64.
  381. Preparing to unpack .../21-libatomic1_12-20220319-1ubuntu1_amd64.deb ...
  382. Unpacking libatomic1:amd64 (12-20220319-1ubuntu1) ...
  383. Selecting previously unselected package libasan6:amd64.
  384. Preparing to unpack .../22-libasan6_11.2.0-19ubuntu1_amd64.deb ...
  385. Unpacking libasan6:amd64 (11.2.0-19ubuntu1) ...
  386. Selecting previously unselected package liblsan0:amd64.
  387. Preparing to unpack .../23-liblsan0_12-20220319-1ubuntu1_amd64.deb ...
  388. Unpacking liblsan0:amd64 (12-20220319-1ubuntu1) ...
  389. Selecting previously unselected package libtsan0:amd64.
  390. Preparing to unpack .../24-libtsan0_11.2.0-19ubuntu1_amd64.deb ...
  391. Unpacking libtsan0:amd64 (11.2.0-19ubuntu1) ...
  392. Selecting previously unselected package libubsan1:amd64.
  393. Preparing to unpack .../25-libubsan1_12-20220319-1ubuntu1_amd64.deb ...
  394. Unpacking libubsan1:amd64 (12-20220319-1ubuntu1) ...
  395. Selecting previously unselected package libquadmath0:amd64.
  396. Preparing to unpack .../26-libquadmath0_12-20220319-1ubuntu1_amd64.deb ...
  397. Unpacking libquadmath0:amd64 (12-20220319-1ubuntu1) ...
  398. Selecting previously unselected package libgcc-11-dev:amd64.
  399. Preparing to unpack .../27-libgcc-11-dev_11.2.0-19ubuntu1_amd64.deb ...
  400. Unpacking libgcc-11-dev:amd64 (11.2.0-19ubuntu1) ...
  401. Selecting previously unselected package gcc-11.
  402. Preparing to unpack .../28-gcc-11_11.2.0-19ubuntu1_amd64.deb ...
  403. Unpacking gcc-11 (11.2.0-19ubuntu1) ...
  404. Selecting previously unselected package gcc.
  405. Preparing to unpack .../29-gcc_4%3a11.2.0-1ubuntu1_amd64.deb ...
  406. Unpacking gcc (4:11.2.0-1ubuntu1) ...
  407. Selecting previously unselected package libstdc++-11-dev:amd64.
  408. Preparing to unpack .../30-libstdc++-11-dev_11.2.0-19ubuntu1_amd64.deb ...
  409. Unpacking libstdc++-11-dev:amd64 (11.2.0-19ubuntu1) ...
  410. Selecting previously unselected package g++-11.
  411. Preparing to unpack .../31-g++-11_11.2.0-19ubuntu1_amd64.deb ...
  412. Unpacking g++-11 (11.2.0-19ubuntu1) ...
  413. Selecting previously unselected package g++.
  414. Preparing to unpack .../32-g++_4%3a11.2.0-1ubuntu1_amd64.deb ...
  415. Unpacking g++ (4:11.2.0-1ubuntu1) ...
  416. Selecting previously unselected package make.
  417. Preparing to unpack .../33-make_4.3-4.1build1_amd64.deb ...
  418. Unpacking make (4.3-4.1build1) ...
  419. Selecting previously unselected package libdpkg-perl.
  420. Preparing to unpack .../34-libdpkg-perl_1.21.1ubuntu2.1_all.deb ...
  421. Unpacking libdpkg-perl (1.21.1ubuntu2.1) ...
  422. Selecting previously unselected package bzip2.
  423. Preparing to unpack .../35-bzip2_1.0.8-5build1_amd64.deb ...
  424. Unpacking bzip2 (1.0.8-5build1) ...
  425. Selecting previously unselected package lto-disabled-list.
  426. Preparing to unpack .../36-lto-disabled-list_24_all.deb ...
  427. Unpacking lto-disabled-list (24) ...
  428. Selecting previously unselected package dpkg-dev.
  429. Preparing to unpack .../37-dpkg-dev_1.21.1ubuntu2.1_all.deb ...
  430. Unpacking dpkg-dev (1.21.1ubuntu2.1) ...
  431. Selecting previously unselected package build-essential.
  432. Preparing to unpack .../38-build-essential_12.9ubuntu3_amd64.deb ...
  433. Unpacking build-essential (12.9ubuntu3) ...
  434. Selecting previously unselected package cifs-utils.
  435. Preparing to unpack .../39-cifs-utils_2%3a6.14-1ubuntu0.1_amd64.deb ...
  436. Unpacking cifs-utils (2:6.14-1ubuntu0.1) ...
  437. Selecting previously unselected package debconf-utils.
  438. Preparing to unpack .../40-debconf-utils_1.5.79ubuntu1_all.deb ...
  439. Unpacking debconf-utils (1.5.79ubuntu1) ...
  440. Selecting previously unselected package dns-root-data.
  441. Preparing to unpack .../41-dns-root-data_2021011101_all.deb ...
  442. Unpacking dns-root-data (2021011101) ...
  443. Selecting previously unselected package fonts-dejavu-core.
  444. Preparing to unpack .../42-fonts-dejavu-core_2.37-2build1_all.deb ...
  445. Unpacking fonts-dejavu-core (2.37-2build1) ...
  446. Selecting previously unselected package fontconfig-config.
  447. Preparing to unpack .../43-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
  448. Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
  449. Selecting previously unselected package libdeflate0:amd64.
  450. Preparing to unpack .../44-libdeflate0_1.10-2_amd64.deb ...
  451. Unpacking libdeflate0:amd64 (1.10-2) ...
  452. Selecting previously unselected package libevent-2.1-7:amd64.
  453. Preparing to unpack .../45-libevent-2.1-7_2.1.12-stable-1build3_amd64.deb ...
  454. Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1build3) ...
  455. Selecting previously unselected package libfontconfig1:amd64.
  456. Preparing to unpack .../46-libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb ...
  457. Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
  458. Selecting previously unselected package libjpeg-turbo8:amd64.
  459. Preparing to unpack .../47-libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb ...
  460. Unpacking libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ...
  461. Selecting previously unselected package libjpeg8:amd64.
  462. Preparing to unpack .../48-libjpeg8_8c-2ubuntu10_amd64.deb ...
  463. Unpacking libjpeg8:amd64 (8c-2ubuntu10) ...
  464. Selecting previously unselected package libjbig0:amd64.
  465. Preparing to unpack .../49-libjbig0_2.1-3.1build3_amd64.deb ...
  466. Unpacking libjbig0:amd64 (2.1-3.1build3) ...
  467. Selecting previously unselected package libwebp7:amd64.
  468. Preparing to unpack .../50-libwebp7_1.2.2-2_amd64.deb ...
  469. Unpacking libwebp7:amd64 (1.2.2-2) ...
  470. Selecting previously unselected package libtiff5:amd64.
  471. Preparing to unpack .../51-libtiff5_4.3.0-6_amd64.deb ...
  472. Unpacking libtiff5:amd64 (4.3.0-6) ...
  473. Selecting previously unselected package libxpm4:amd64.
  474. Preparing to unpack .../52-libxpm4_1%3a3.5.12-1build2_amd64.deb ...
  475. Unpacking libxpm4:amd64 (1:3.5.12-1build2) ...
  476. Selecting previously unselected package libgd3:amd64.
  477. Preparing to unpack .../53-libgd3_2.3.0-2ubuntu2_amd64.deb ...
  478. Unpacking libgd3:amd64 (2.3.0-2ubuntu2) ...
  479. Selecting previously unselected package libinih1:amd64.
  480. Preparing to unpack .../54-libinih1_53-1ubuntu3_amd64.deb ...
  481. Unpacking libinih1:amd64 (53-1ubuntu3) ...
  482. Selecting previously unselected package libipset13:amd64.
  483. Preparing to unpack .../55-libipset13_7.15-1build1_amd64.deb ...
  484. Unpacking libipset13:amd64 (7.15-1build1) ...
  485. Selecting previously unselected package nginx-common.
  486. Preparing to unpack .../56-nginx-common_1.18.0-6ubuntu14.1_all.deb ...
  487. Unpacking nginx-common (1.18.0-6ubuntu14.1) ...
  488. Selecting previously unselected package libnginx-mod-http-auth-pam.
  489. Preparing to unpack .../57-libnginx-mod-http-auth-pam_1.18.0-6ubuntu14.1_amd64.deb ...
  490. Unpacking libnginx-mod-http-auth-pam (1.18.0-6ubuntu14.1) ...
  491. Selecting previously unselected package libnginx-mod-http-dav-ext.
  492. Preparing to unpack .../58-libnginx-mod-http-dav-ext_1.18.0-6ubuntu14.1_amd64.deb ...
  493. Unpacking libnginx-mod-http-dav-ext (1.18.0-6ubuntu14.1) ...
  494. Selecting previously unselected package libnginx-mod-http-echo.
  495. Preparing to unpack .../59-libnginx-mod-http-echo_1.18.0-6ubuntu14.1_amd64.deb ...
  496. Unpacking libnginx-mod-http-echo (1.18.0-6ubuntu14.1) ...
  497. Selecting previously unselected package libnginx-mod-http-geoip2.
  498. Preparing to unpack .../60-libnginx-mod-http-geoip2_1.18.0-6ubuntu14.1_amd64.deb ...
  499. Unpacking libnginx-mod-http-geoip2 (1.18.0-6ubuntu14.1) ...
  500. Selecting previously unselected package libnginx-mod-http-image-filter.
  501. Preparing to unpack .../61-libnginx-mod-http-image-filter_1.18.0-6ubuntu14.1_amd64.deb ...
  502. Unpacking libnginx-mod-http-image-filter (1.18.0-6ubuntu14.1) ...
  503. Selecting previously unselected package libnginx-mod-http-subs-filter.
  504. Preparing to unpack .../62-libnginx-mod-http-subs-filter_1.18.0-6ubuntu14.1_amd64.deb ...
  505. Unpacking libnginx-mod-http-subs-filter (1.18.0-6ubuntu14.1) ...
  506. Selecting previously unselected package libnginx-mod-http-upstream-fair.
  507. Preparing to unpack .../63-libnginx-mod-http-upstream-fair_1.18.0-6ubuntu14.1_amd64.deb ...
  508. Unpacking libnginx-mod-http-upstream-fair (1.18.0-6ubuntu14.1) ...
  509. Selecting previously unselected package libnginx-mod-http-xslt-filter.
  510. Preparing to unpack .../64-libnginx-mod-http-xslt-filter_1.18.0-6ubuntu14.1_amd64.deb ...
  511. Unpacking libnginx-mod-http-xslt-filter (1.18.0-6ubuntu14.1) ...
  512. Selecting previously unselected package libnginx-mod-mail.
  513. Preparing to unpack .../65-libnginx-mod-mail_1.18.0-6ubuntu14.1_amd64.deb ...
  514. Unpacking libnginx-mod-mail (1.18.0-6ubuntu14.1) ...
  515. Selecting previously unselected package libnginx-mod-stream.
  516. Preparing to unpack .../66-libnginx-mod-stream_1.18.0-6ubuntu14.1_amd64.deb ...
  517. Unpacking libnginx-mod-stream (1.18.0-6ubuntu14.1) ...
  518. Selecting previously unselected package libnginx-mod-stream-geoip2.
  519. Preparing to unpack .../67-libnginx-mod-stream-geoip2_1.18.0-6ubuntu14.1_amd64.deb ...
  520. Unpacking libnginx-mod-stream-geoip2 (1.18.0-6ubuntu14.1) ...
  521. Selecting previously unselected package libprotobuf-c1:amd64.
  522. Preparing to unpack .../68-libprotobuf-c1_1.3.3-1ubuntu2_amd64.deb ...
  523. Unpacking libprotobuf-c1:amd64 (1.3.3-1ubuntu2) ...
  524. Selecting previously unselected package libunbound8:amd64.
  525. Preparing to unpack .../69-libunbound8_1.13.1-1ubuntu5_amd64.deb ...
  526. Unpacking libunbound8:amd64 (1.13.1-1ubuntu5) ...
  527. Selecting previously unselected package nginx-core.
  528. Preparing to unpack .../70-nginx-core_1.18.0-6ubuntu14.1_amd64.deb ...
  529. Unpacking nginx-core (1.18.0-6ubuntu14.1) ...
  530. Selecting previously unselected package nginx-full.
  531. Preparing to unpack .../71-nginx-full_1.18.0-6ubuntu14.1_amd64.deb ...
  532. Unpacking nginx-full (1.18.0-6ubuntu14.1) ...
  533. Selecting previously unselected package pwgen.
  534. Preparing to unpack .../72-pwgen_2.08-2build1_amd64.deb ...
  535. Unpacking pwgen (2.08-2build1) ...
  536. Selecting previously unselected package sshfs.
  537. Preparing to unpack .../73-sshfs_3.7.1+repack-2_amd64.deb ...
  538. Unpacking sshfs (3.7.1+repack-2) ...
  539. Selecting previously unselected package swaks.
  540. Preparing to unpack .../74-swaks_20201014.0-2_all.deb ...
  541. Unpacking swaks (20201014.0-2) ...
  542. Selecting previously unselected package unbound-anchor.
  543. Preparing to unpack .../75-unbound-anchor_1.13.1-1ubuntu5_amd64.deb ...
  544. Unpacking unbound-anchor (1.13.1-1ubuntu5) ...
  545. Selecting previously unselected package unbound.
  546. Preparing to unpack .../76-unbound_1.13.1-1ubuntu5_amd64.deb ...
  547. Unpacking unbound (1.13.1-1ubuntu5) ...
  548. Selecting previously unselected package unzip.
  549. Preparing to unpack .../77-unzip_6.0-26ubuntu3_amd64.deb ...
  550. Unpacking unzip (6.0-26ubuntu3) ...
  551. Selecting previously unselected package xfsprogs.
  552. Preparing to unpack .../78-xfsprogs_5.13.0-1ubuntu2_amd64.deb ...
  553. Unpacking xfsprogs (5.13.0-1ubuntu2) ...
  554. Selecting previously unselected package ipset.
  555. Preparing to unpack .../79-ipset_7.15-1build1_amd64.deb ...
  556. Unpacking ipset (7.15-1build1) ...
  557. Selecting previously unselected package resolvconf.
  558. Preparing to unpack .../80-resolvconf_1.84ubuntu1_all.deb ...
  559. Unpacking resolvconf (1.84ubuntu1) ...
  560. Setting up gcc-11-base:amd64 (11.2.0-19ubuntu1) ...
  561. Setting up libmecab2:amd64 (0.996-14build9) ...
  562. Setting up mysql-client-core-8.0 (8.0.29-0ubuntu0.22.04.2) ...
  563. Setting up lto-disabled-list (24) ...
  564. Setting up libnfsidmap1:amd64 (1:2.6.1-1ubuntu1) ...
  565. Setting up libxpm4:amd64 (1:3.5.12-1build2) ...
  566. Setting up libinih1:amd64 (53-1ubuntu3) ...
  567. Setting up unzip (6.0-26ubuntu3) ...
  568. Setting up sshfs (3.7.1+repack-2) ...
  569. Setting up libdeflate0:amd64 (1.10-2) ...
  570. Setting up linux-libc-dev:amd64 (5.15.0-40.43) ...
  571. Setting up nginx-common (1.18.0-6ubuntu14.1) ...
  572. Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service → /lib/systemd/system/nginx.service.
  573. Setting up rpcbind (1.2.6-2build1) ...
  574. Created symlink /etc/systemd/system/multi-user.target.wants/rpcbind.service → /lib/systemd/system/rpcbind.service.
  575. Created symlink /etc/systemd/system/sockets.target.wants/rpcbind.socket → /lib/systemd/system/rpcbind.socket.
  576. Setting up resolvconf (1.84ubuntu1) ...
  577. Created symlink /etc/systemd/system/sysinit.target.wants/resolvconf.service → /lib/systemd/system/resolvconf.service.
  578. Created symlink /etc/systemd/system/systemd-resolved.service.wants/resolvconf-pull-resolved.path → /lib/systemd/system/resolvconf-pull-resolved.path.
  579. Created symlink /etc/systemd/system/systemd-resolved.service.wants/resolvconf-pull-resolved.service → /lib/systemd/system/resolvconf-pull-resolved.service.
  580. Setting up libgomp1:amd64 (12-20220319-1ubuntu1) ...
  581. Setting up bzip2 (1.0.8-5build1) ...
  582. Setting up libprotobuf-c1:amd64 (1.3.3-1ubuntu2) ...
  583. Setting up libjbig0:amd64 (2.1-3.1build3) ...
  584. Setting up libasan6:amd64 (11.2.0-19ubuntu1) ...
  585. Setting up acl (2.3.1-1) ...
  586. Setting up dns-root-data (2021011101) ...
  587. Setting up libtalloc2:amd64 (2.3.3-2build1) ...
  588. Setting up libnginx-mod-http-xslt-filter (1.18.0-6ubuntu14.1) ...
  589. Setting up libprotobuf-lite23:amd64 (3.12.4-1ubuntu7) ...
  590. Setting up libtirpc-dev:amd64 (1.3.2-2build1) ...
  591. Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
  592. Setting up libtevent0:amd64 (0.11.0-1build1) ...
  593. Setting up libnginx-mod-http-auth-pam (1.18.0-6ubuntu14.1) ...
  594. Setting up make (4.3-4.1build1) ...
  595. Setting up libquadmath0:amd64 (12-20220319-1ubuntu1) ...
  596. Setting up debconf-utils (1.5.79ubuntu1) ...
  597. Setting up libmpc3:amd64 (1.2.1-2build1) ...
  598. Setting up libatomic1:amd64 (12-20220319-1ubuntu1) ...
  599. Setting up libevent-2.1-7:amd64 (2.1.12-stable-1build3) ...
  600. Setting up xfsprogs (5.13.0-1ubuntu2) ...
  601. update-initramfs: deferring update (trigger activated)
  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.1) ...
  605. Setting up libwebp7:amd64 (1.2.2-2) ...
  606. Setting up libubsan1:amd64 (12-20220319-1ubuntu1) ...
  607. Setting up libnginx-mod-http-echo (1.18.0-6ubuntu14.1) ...
  608. Setting up swaks (20201014.0-2) ...
  609. Setting up libnginx-mod-http-subs-filter (1.18.0-6ubuntu14.1) ...
  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.29-0ubuntu0.22.04.2) ...
  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.1) ...
  618. Setting up libc-dev-bin (2.35-0ubuntu3) ...
  619. Setting up pwgen (2.08-2build1) ...
  620. Setting up libcc1-0:amd64 (12-20220319-1ubuntu1) ...
  621. Setting up liblsan0:amd64 (12-20220319-1ubuntu1) ...
  622. Setting up libitm1:amd64 (12-20220319-1ubuntu1) ...
  623. Setting up libevent-pthreads-2.1-7:amd64 (2.1.12-stable-1build3) ...
  624. Setting up libtsan0:amd64 (11.2.0-19ubuntu1) ...
  625. Setting up libjpeg8:amd64 (8c-2ubuntu10) ...
  626. Setting up libnginx-mod-http-dav-ext (1.18.0-6ubuntu14.1) ...
  627. Setting up cpp-11 (11.2.0-19ubuntu1) ...
  628. Setting up libnginx-mod-mail (1.18.0-6ubuntu14.1) ...
  629. Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
  630. Setting up libnginx-mod-stream (1.18.0-6ubuntu14.1) ...
  631. Setting up libnginx-mod-http-upstream-fair (1.18.0-6ubuntu14.1) ...
  632. Setting up libwbclient0:amd64 (2:4.15.5~dfsg-0ubuntu5) ...
  633. Setting up dpkg-dev (1.21.1ubuntu2.1) ...
  634. Setting up nfs-common (1:2.6.1-1ubuntu1) ...
  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 115) ...
  640. Adding new user `statd' (UID 115) 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) ...
  655. Setting up mysql-server-core-8.0 (8.0.29-0ubuntu0.22.04.2) ...
  656. Setting up libgcc-11-dev:amd64 (11.2.0-19ubuntu1) ...
  657. Setting up gcc-11 (11.2.0-19ubuntu1) ...
  658. Setting up cpp (4:11.2.0-1ubuntu1) ...
  659. Setting up libc6-dev:amd64 (2.35-0ubuntu3) ...
  660. Setting up libtiff5:amd64 (4.3.0-6) ...
  661. Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
  662. Setting up unbound-anchor (1.13.1-1ubuntu5) ...
  663. Setting up libnginx-mod-stream-geoip2 (1.18.0-6ubuntu14.1) ...
  664. Setting up mysql-server-8.0 (8.0.29-0ubuntu0.22.04.2) ...
  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 39774
  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) ...
  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.2.0-19ubuntu1) ...
  678. Setting up g++-11 (11.2.0-19ubuntu1) ...
  679. Setting up libnginx-mod-http-image-filter (1.18.0-6ubuntu14.1) ...
  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.1) ...
  684. * Upgrading binary nginx [ OK ]
  685. Setting up nginx-full (1.18.0-6ubuntu14.1) ...
  686. Processing triggers for libc-bin (2.35-0ubuntu3) ...
  687. Processing triggers for ufw (0.36.1-4build1) ...
  688. Processing triggers for man-db (2.10.2-1) ...
  689. Processing triggers for resolvconf (1.84ubuntu1) ...
  690. Processing triggers for initramfs-tools (0.140ubuntu13) ...
  691. update-initramfs: Generating /boot/initrd.img-5.15.0-40-generic
  692. NEEDRESTART-VER: 3.5
  693. NEEDRESTART-KCUR: 5.15.0-27-generic
  694. NEEDRESTART-KEXP: 5.15.0-40-generic
  695. NEEDRESTART-KSTA: 3
  696. NEEDRESTART-SVC: dbus.service
  697. NEEDRESTART-SVC: networkd-dispatcher.service
  698. NEEDRESTART-SVC: systemd-logind.service
  699. NEEDRESTART-SVC: unattended-upgrades.service
  700. NEEDRESTART-SVC: user@0.service
  701. NEEDRESTART-SVC: user@1000.service
  702.  
  703. # on some providers like scaleway the sudo file is changed and we want to keep the old one
  704. apt-get -o Dpkg::Options::="--force-confold" install -y --no-install-recommends sudo
  705. Reading package lists...
  706. Building dependency tree...
  707. Reading state information...
  708. sudo is already the newest version (1.9.9-1ubuntu2).
  709. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  710.  
  711. # this ensures that unattended upgades are enabled, if it was disabled during ubuntu install time (see #346)
  712. # debconf-set-selection of unattended-upgrades/enable_auto_updates + dpkg-reconfigure does not work
  713. cp /usr/share/unattended-upgrades/20auto-upgrades /etc/apt/apt.conf.d/20auto-upgrades
  714.  
  715. apt-get install -y --no-install-recommends $python_package # Install python which is required for npm rebuild
  716. Reading package lists...
  717. Building dependency tree...
  718. Reading state information...
  719. python3.10 is already the newest version (3.10.4-3).
  720. python3.10 set to manually installed.
  721. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  722.  
  723. # do not upgrade grub because it might prompt user and break this script
  724. echo "==> Enable memory accounting"
  725. ==> Enable memory accounting
  726. apt-get -y --no-upgrade --no-install-recommends install grub2-common
  727. Reading package lists...
  728. Building dependency tree...
  729. Reading state information...
  730. Skipping grub2-common, it is already installed and upgrade is not set.
  731. grub2-common set to manually installed.
  732. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  733. sed -e 's/^GRUB_CMDLINE_LINUX="\(.*\)"$/GRUB_CMDLINE_LINUX="\1 cgroup_enable=memory swapaccount=1 panic_on_oops=1 panic=5"/' -i /etc/default/grub
  734. update-grub
  735. Sourcing file `/etc/default/grub'
  736. Sourcing file `/etc/default/grub.d/init-select.cfg'
  737. Generating grub configuration file ...
  738. Found linux image: /boot/vmlinuz-5.15.0-40-generic
  739. Found initrd image: /boot/initrd.img-5.15.0-40-generic
  740. Found linux image: /boot/vmlinuz-5.15.0-27-generic
  741. Found initrd image: /boot/initrd.img-5.15.0-27-generic
  742. Warning: os-prober will not be executed to detect other bootable partitions.
  743. Systems on them will not be added to the GRUB boot configuration.
  744. Check GRUB_DISABLE_OS_PROBER documentation entry.
  745. done
  746.  
  747. echo "==> Install collectd"
  748. ==> Install collectd
  749. # without this, libnotify4 will install gnome-shell
  750. apt-get install -y libnotify4 libcurl3-gnutls --no-install-recommends
  751. Reading package lists...
  752. Building dependency tree...
  753. Reading state information...
  754. libcurl3-gnutls is already the newest version (7.81.0-1ubuntu1.3).
  755. libcurl3-gnutls set to manually installed.
  756. The following additional packages will be installed:
  757. libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common
  758. Suggested packages:
  759. gnome-shell | notification-daemon
  760. Recommended packages:
  761. libgdk-pixbuf2.0-bin
  762. The following NEW packages will be installed:
  763. libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libnotify4
  764. 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
  765. Need to get 174 kB of archives.
  766. After this operation, 649 kB of additional disk space will be used.
  767. Get:1 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgdk-pixbuf2.0-common all 2.42.8+dfsg-1 [5,880 B]
  768. Get:2 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.8+dfsg-1 [148 kB]
  769. Get:3 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libnotify4 amd64 0.7.9-3ubuntu5 [19.4 kB]
  770. Fetched 174 kB in 1s (244 kB/s)
  771. Selecting previously unselected package libgdk-pixbuf2.0-common.
  772. (Reading database ... 111665 files and directories currently installed.)
  773. Preparing to unpack .../libgdk-pixbuf2.0-common_2.42.8+dfsg-1_all.deb ...
  774. Unpacking libgdk-pixbuf2.0-common (2.42.8+dfsg-1) ...
  775. Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
  776. Preparing to unpack .../libgdk-pixbuf-2.0-0_2.42.8+dfsg-1_amd64.deb ...
  777. Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1) ...
  778. Selecting previously unselected package libnotify4:amd64.
  779. Preparing to unpack .../libnotify4_0.7.9-3ubuntu5_amd64.deb ...
  780. Unpacking libnotify4:amd64 (0.7.9-3ubuntu5) ...
  781. Setting up libgdk-pixbuf2.0-common (2.42.8+dfsg-1) ...
  782. Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1) ...
  783. Setting up libnotify4:amd64 (0.7.9-3ubuntu5) ...
  784. Processing triggers for libc-bin (2.35-0ubuntu3) ...
  785. NEEDRESTART-VER: 3.5
  786. NEEDRESTART-KCUR: 5.15.0-27-generic
  787. NEEDRESTART-KEXP: 5.15.0-40-generic
  788. NEEDRESTART-KSTA: 3
  789. NEEDRESTART-SVC: dbus.service
  790. NEEDRESTART-SVC: networkd-dispatcher.service
  791. NEEDRESTART-SVC: systemd-logind.service
  792. NEEDRESTART-SVC: unattended-upgrades.service
  793. NEEDRESTART-SVC: user@0.service
  794. NEEDRESTART-SVC: user@1000.service
  795. # https://bugs.launchpad.net/ubuntu/+source/collectd/+bug/1872281
  796. if [[ "${ubuntu_version}" == "22.04" ]]; then
  797. readonly launchpad="https://launchpad.net/ubuntu/+source/collectd/5.12.0-9/+build/23189375/+files"
  798. cd /tmp && wget -q "${launchpad}/collectd_5.12.0-9_amd64.deb" "${launchpad}/collectd-utils_5.12.0-9_amd64.deb" "${launchpad}/collectd-core_5.12.0-9_amd64.deb" "${launchpad}/libcollectdclient1_5.12.0-9_amd64.deb"
  799. cd /tmp && apt install -y --no-install-recommends ./libcollectdclient1_5.12.0-9_amd64.deb ./collectd-core_5.12.0-9_amd64.deb ./collectd_5.12.0-9_amd64.deb ./collectd-utils_5.12.0-9_amd64.deb && rm -f /tmp/collectd_*.deb
  800. echo -e "\nLD_PRELOAD=/usr/lib/python3.10/config-3.10-x86_64-linux-gnu/libpython3.10.so" >> /etc/default/collectd
  801. else
  802. if ! apt-get install -y --no-install-recommends collectd collectd-utils; then
  803. # FQDNLookup is true in default debian config. The box code has a custom collectd.conf that fixes this
  804. echo "Failed to install collectd, continuing anyway. Presumably because of http://mailman.verplant.org/pipermail/collectd/2015-March/006491.html"
  805. sed -e 's/^FQDNLookup true/FQDNLookup false/' -i /etc/collectd/collectd.conf
  806. fi
  807.  
  808. if [[ "${ubuntu_version}" == "20.04" ]]; then
  809. echo -e "\nLD_PRELOAD=/usr/lib/python3.8/config-3.8-x86_64-linux-gnu/libpython3.8.so" >> /etc/default/collectd
  810. fi
  811. fi
  812.  
  813. WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
  814.  
  815. Reading package lists...
  816. Building dependency tree...
  817. Reading state information...
  818. The following additional packages will be installed:
  819. fontconfig libcairo2 libdatrie1 libdbi1 libgraphite2-3 libharfbuzz0b
  820. libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpixman-1-0 librrd8
  821. libthai-data libthai0 libxcb-render0 libxcb-shm0 libxrender1
  822. Suggested packages:
  823. collectd-dev librrds-perl liburi-perl libhtml-parser-perl
  824. libregexp-common-perl libconfig-general-perl apache2 apcupsd bind9 ceph
  825. chrony default-mysql-server gpsd ipvsadm lm-sensors mbmon memcached
  826. notification-daemon nut openvpn olsrd pdns-server postgresql redis-server
  827. slapd varnish zookeeper intel-cmt-cat libbson-1.0-0 libesmtp6 libgps28
  828. libgrpc++1 libhiredis0.14 libi2c0 liblua5.3-0 libmemcached11 libmicrohttpd12
  829. libmodbus5 libmongoc-1.0-0 libmosquitto1 libmysqlclient21 libopenipmi0
  830. liboping0 libpq5 libprotobuf23 libqpid-proton11 librabbitmq4 librdkafka1
  831. libriemann-client0 librte-eal22 librte-ethdev22 libsensors5 libsnmp40
  832. libupsclient4 libvarnishapi2 libvirt0 libxenmisc4.16 libyajl2
  833. default-jre-headless
  834. Recommended packages:
  835. intel-cmt-cat libbson-1.0-0 libesmtp6 libgps28 libgrpc++1 libhiredis0.14
  836. libi2c0 liblua5.3-0 libmemcached11 libmicrohttpd12 libmodbus5
  837. libmongoc-1.0-0 libmosquitto1 libmysqlclient21 libopenipmi0 liboping0 libpq5
  838. libprotobuf23 libqpid-proton11 librabbitmq4 librdkafka1 libriemann-client0
  839. librte-eal22 librte-ethdev22 libsensors5 libsnmp40 libupsclient4
  840. libvarnishapi2 libvirt0 libxenmisc4.16 libyajl2 default-jre-headless rrdtool
  841. The following NEW packages will be installed:
  842. collectd collectd-core collectd-utils fontconfig libcairo2
  843. libcollectdclient1 libdatrie1 libdbi1 libgraphite2-3 libharfbuzz0b
  844. libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpixman-1-0 librrd8
  845. libthai-data libthai0 libxcb-render0 libxcb-shm0 libxrender1
  846. 0 upgraded, 20 newly installed, 0 to remove and 0 not upgraded.
  847. Need to get 2,256 kB/3,664 kB of archives.
  848. After this operation, 12.6 MB of additional disk space will be used.
  849. Get:1 /tmp/collectd-core_5.12.0-9_amd64.deb collectd-core amd64 5.12.0-9 [1,298 kB]
  850. Get:2 /tmp/collectd_5.12.0-9_amd64.deb collectd amd64 5.12.0-9 [21.6 kB]
  851. Get:3 /tmp/libcollectdclient1_5.12.0-9_amd64.deb libcollectdclient1 amd64 5.12.0-9 [52.9 kB]
  852. Get:4 /tmp/collectd-utils_5.12.0-9_amd64.deb collectd-utils amd64 5.12.0-9 [34.8 kB]
  853. Get:5 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libpixman-1-0 amd64 0.40.0-1build4 [264 kB]
  854. Get:6 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-render0 amd64 1.14-3ubuntu3 [16.4 kB]
  855. Get:7 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shm0 amd64 1.14-3ubuntu3 [5,780 B]
  856. Get:8 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxrender1 amd64 1:0.9.10-1build4 [19.7 kB]
  857. Get:9 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libcairo2 amd64 1.16.0-5ubuntu2 [628 kB]
  858. Get:10 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libdbi1 amd64 0.9.0-6build2 [26.6 kB]
  859. Get:11 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig amd64 2.13.1-4.2ubuntu5 [177 kB]
  860. Get:12 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgraphite2-3 amd64 1.3.14-1build2 [71.3 kB]
  861. Get:13 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libharfbuzz0b amd64 2.7.4-1ubuntu3 [352 kB]
  862. Get:14 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libthai-data all 0.1.29-1build1 [162 kB]
  863. Get:15 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libdatrie1 amd64 0.2.13-2 [19.9 kB]
  864. Get:16 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libthai0 amd64 0.1.29-1build1 [19.2 kB]
  865. Get:17 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libpango-1.0-0 amd64 1.50.6+ds-2 [230 kB]
  866. Get:18 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libpangoft2-1.0-0 amd64 1.50.6+ds-2 [53.9 kB]
  867. Get:19 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libpangocairo-1.0-0 amd64 1.50.6+ds-2 [39.8 kB]
  868. Get:20 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 librrd8 amd64 1.7.2-3ubuntu6 [171 kB]
  869. Preconfiguring packages ...
  870. Fetched 2,256 kB in 1s (2,355 kB/s)
  871. Selecting previously unselected package collectd-core.
  872. (Reading database ... 111698 files and directories currently installed.)
  873. Preparing to unpack .../00-collectd-core_5.12.0-9_amd64.deb ...
  874. Unpacking collectd-core (5.12.0-9) ...
  875. Selecting previously unselected package libpixman-1-0:amd64.
  876. Preparing to unpack .../01-libpixman-1-0_0.40.0-1build4_amd64.deb ...
  877. Unpacking libpixman-1-0:amd64 (0.40.0-1build4) ...
  878. Selecting previously unselected package libxcb-render0:amd64.
  879. Preparing to unpack .../02-libxcb-render0_1.14-3ubuntu3_amd64.deb ...
  880. Unpacking libxcb-render0:amd64 (1.14-3ubuntu3) ...
  881. Selecting previously unselected package libxcb-shm0:amd64.
  882. Preparing to unpack .../03-libxcb-shm0_1.14-3ubuntu3_amd64.deb ...
  883. Unpacking libxcb-shm0:amd64 (1.14-3ubuntu3) ...
  884. Selecting previously unselected package libxrender1:amd64.
  885. Preparing to unpack .../04-libxrender1_1%3a0.9.10-1build4_amd64.deb ...
  886. Unpacking libxrender1:amd64 (1:0.9.10-1build4) ...
  887. Selecting previously unselected package libcairo2:amd64.
  888. Preparing to unpack .../05-libcairo2_1.16.0-5ubuntu2_amd64.deb ...
  889. Unpacking libcairo2:amd64 (1.16.0-5ubuntu2) ...
  890. Selecting previously unselected package libdbi1:amd64.
  891. Preparing to unpack .../06-libdbi1_0.9.0-6build2_amd64.deb ...
  892. Unpacking libdbi1:amd64 (0.9.0-6build2) ...
  893. Selecting previously unselected package fontconfig.
  894. Preparing to unpack .../07-fontconfig_2.13.1-4.2ubuntu5_amd64.deb ...
  895. Unpacking fontconfig (2.13.1-4.2ubuntu5) ...
  896. Selecting previously unselected package libgraphite2-3:amd64.
  897. Preparing to unpack .../08-libgraphite2-3_1.3.14-1build2_amd64.deb ...
  898. Unpacking libgraphite2-3:amd64 (1.3.14-1build2) ...
  899. Selecting previously unselected package libharfbuzz0b:amd64.
  900. Preparing to unpack .../09-libharfbuzz0b_2.7.4-1ubuntu3_amd64.deb ...
  901. Unpacking libharfbuzz0b:amd64 (2.7.4-1ubuntu3) ...
  902. Selecting previously unselected package libthai-data.
  903. Preparing to unpack .../10-libthai-data_0.1.29-1build1_all.deb ...
  904. Unpacking libthai-data (0.1.29-1build1) ...
  905. Selecting previously unselected package libdatrie1:amd64.
  906. Preparing to unpack .../11-libdatrie1_0.2.13-2_amd64.deb ...
  907. Unpacking libdatrie1:amd64 (0.2.13-2) ...
  908. Selecting previously unselected package libthai0:amd64.
  909. Preparing to unpack .../12-libthai0_0.1.29-1build1_amd64.deb ...
  910. Unpacking libthai0:amd64 (0.1.29-1build1) ...
  911. Selecting previously unselected package libpango-1.0-0:amd64.
  912. Preparing to unpack .../13-libpango-1.0-0_1.50.6+ds-2_amd64.deb ...
  913. Unpacking libpango-1.0-0:amd64 (1.50.6+ds-2) ...
  914. Selecting previously unselected package libpangoft2-1.0-0:amd64.
  915. Preparing to unpack .../14-libpangoft2-1.0-0_1.50.6+ds-2_amd64.deb ...
  916. Unpacking libpangoft2-1.0-0:amd64 (1.50.6+ds-2) ...
  917. Selecting previously unselected package libpangocairo-1.0-0:amd64.
  918. Preparing to unpack .../15-libpangocairo-1.0-0_1.50.6+ds-2_amd64.deb ...
  919. Unpacking libpangocairo-1.0-0:amd64 (1.50.6+ds-2) ...
  920. Selecting previously unselected package librrd8:amd64.
  921. Preparing to unpack .../16-librrd8_1.7.2-3ubuntu6_amd64.deb ...
  922. Unpacking librrd8:amd64 (1.7.2-3ubuntu6) ...
  923. Selecting previously unselected package collectd.
  924. Preparing to unpack .../17-collectd_5.12.0-9_amd64.deb ...
  925. Unpacking collectd (5.12.0-9) ...
  926. Selecting previously unselected package libcollectdclient1.
  927. Preparing to unpack .../18-libcollectdclient1_5.12.0-9_amd64.deb ...
  928. Unpacking libcollectdclient1 (5.12.0-9) ...
  929. Selecting previously unselected package collectd-utils.
  930. Preparing to unpack .../19-collectd-utils_5.12.0-9_amd64.deb ...
  931. Unpacking collectd-utils (5.12.0-9) ...
  932. Setting up libgraphite2-3:amd64 (1.3.14-1build2) ...
  933. Setting up libpixman-1-0:amd64 (0.40.0-1build4) ...
  934. Setting up fontconfig (2.13.1-4.2ubuntu5) ...
  935. Regenerating fonts cache... done.
  936. Setting up libdbi1:amd64 (0.9.0-6build2) ...
  937. Setting up collectd-core (5.12.0-9) ...
  938. Created symlink /etc/systemd/system/multi-user.target.wants/collectd.service → /lib/systemd/system/collectd.service.
  939. Setting up libxrender1:amd64 (1:0.9.10-1build4) ...
  940. Setting up libdatrie1:amd64 (0.2.13-2) ...
  941. Setting up libxcb-render0:amd64 (1.14-3ubuntu3) ...
  942. Setting up libxcb-shm0:amd64 (1.14-3ubuntu3) ...
  943. Setting up libcollectdclient1 (5.12.0-9) ...
  944. Setting up libcairo2:amd64 (1.16.0-5ubuntu2) ...
  945. Setting up libharfbuzz0b:amd64 (2.7.4-1ubuntu3) ...
  946. Setting up libthai-data (0.1.29-1build1) ...
  947. Setting up collectd-utils (5.12.0-9) ...
  948. Setting up libthai0:amd64 (0.1.29-1build1) ...
  949. Setting up libpango-1.0-0:amd64 (1.50.6+ds-2) ...
  950. Setting up libpangoft2-1.0-0:amd64 (1.50.6+ds-2) ...
  951. Setting up libpangocairo-1.0-0:amd64 (1.50.6+ds-2) ...
  952. Setting up librrd8:amd64 (1.7.2-3ubuntu6) ...
  953. Setting up collectd (5.12.0-9) ...
  954. Job for collectd.service failed because the control process exited with error code.
  955. See "systemctl status collectd.service" and "journalctl -xeu collectd.service" for details.
  956. invoke-rc.d: initscript collectd, action "restart" failed.
  957. ● collectd.service - Statistics collection and monitoring daemon
  958. Loaded: loaded (/lib/systemd/system/collectd.service; enabled; vendor preset: enabled)
  959. Active: activating (auto-restart) (Result: exit-code) since Fri 2022-07-01 15:37:55 UTC; 10ms ago
  960. Docs: man:collectd(1)
  961. man:collectd.conf(5)
  962. https://collectd.org
  963. Process: 52165 ExecStartPre=/usr/sbin/collectd -t (code=exited, status=0/SUCCESS)
  964. Process: 52166 ExecStart=/usr/sbin/collectd (code=exited, status=1/FAILURE)
  965. Main PID: 52166 (code=exited, status=1/FAILURE)
  966. CPU: 30ms
  967.  
  968. Jul 01 15:37:55 nobody-hq systemd[1]: Failed to start Statistics collection and monitoring daemon.
  969. dpkg: error processing package collectd (--configure):
  970. installed collectd package post-installation script subprocess returned error exit status 1
  971. Processing triggers for man-db (2.10.2-1) ...
  972. Processing triggers for libc-bin (2.35-0ubuntu3) ...
  973. Errors were encountered while processing:
  974. collectd
  975. needrestart is being skipped since dpkg has failed
  976. E: Sub-process /usr/bin/dpkg returned an error code (1)
  977.  
  978. # some hosts like atlantic install ntp which conflicts with timedatectl. https://serverfault.com/questions/1024770/ubuntu-20-04-time-sync-problems-and-possibly-incorrect-status-information
  979. echo "==> Configuring host"
  980. ==> Configuring host
  981. sed -e 's/^#NTP=/NTP=0.ubuntu.pool.ntp.org 1.ubuntu.pool.ntp.org 2.ubuntu.pool.ntp.org 3.ubuntu.pool.ntp.org/' -i /etc/systemd/timesyncd.conf
  982. if systemctl is-active ntp; then
  983. systemctl stop ntp
  984. apt purge -y ntp
  985. fi
  986. inactive
  987. timedatectl set-ntp 1
  988. # mysql follows the system timezone
  989. timedatectl set-timezone UTC
  990.  
  991. echo "==> Adding sshd configuration warning"
  992. ==> Adding sshd configuration warning
  993. sed -e '/Port 22/ i # NOTE: Cloudron only supports moving SSH to port 202. See https://docs.cloudron.io/security/#securing-ssh-access' -i /etc/ssh/sshd_config
  994.  
  995. # https://bugs.launchpad.net/ubuntu/+source/base-files/+bug/1701068
  996. echo "==> Disabling motd news"
  997. ==> Disabling motd news
  998. if [[ -f "/etc/default/motd-news" ]]; then
  999. sed -i 's/^ENABLED=.*/ENABLED=0/' /etc/default/motd-news
  1000. fi
  1001.  
  1002. # If privacy extensions are not disabled on server, this breaks IPv6 detection
  1003. # https://bugs.launchpad.net/ubuntu/+source/procps/+bug/1068756
  1004. if [[ ! -f /etc/sysctl.d/99-cloudimg-ipv6.conf ]]; then
  1005. echo "==> Disable temporary address (IPv6)"
  1006. echo -e "# See https://bugs.launchpad.net/ubuntu/+source/procps/+bug/1068756\nnet.ipv6.conf.all.use_tempaddr = 0\nnet.ipv6.conf.default.use_tempaddr = 0\n\n" > /etc/sysctl.d/99-cloudimg-ipv6.conf
  1007. fi
  1008. ==> Disable temporary address (IPv6)
  1009.  
  1010. # Disable exim4 (1blu.de)
  1011. systemctl stop exim4 || true
  1012. Failed to stop exim4.service: Unit exim4.service not loaded.
  1013. systemctl disable exim4 || true
  1014. Failed to disable unit: Unit file exim4.service does not exist.
  1015.  
  1016. # Disable bind for good measure (on online.net, kimsufi servers these are pre-installed)
  1017. systemctl stop bind9 || true
  1018. Failed to stop bind9.service: Unit bind9.service not loaded.
  1019. systemctl disable bind9 || true
  1020. Failed to disable unit: Unit file bind9.service does not exist.
  1021.  
  1022. # on ovh images dnsmasq seems to run by default
  1023. systemctl stop dnsmasq || true
  1024. Failed to stop dnsmasq.service: Unit dnsmasq.service not loaded.
  1025. systemctl disable dnsmasq || true
  1026. Failed to disable unit: Unit file dnsmasq.service does not exist.
  1027.  
  1028. # on ssdnodes postfix seems to run by default
  1029. systemctl stop postfix || true
  1030. Failed to stop postfix.service: Unit postfix.service not loaded.
  1031. systemctl disable postfix || true
  1032. Failed to disable unit: Unit file postfix.service does not exist.
  1033.  
  1034. # on ubuntu 18.04 and 20.04, this is the default. this requires resolvconf for DNS to work further after the disable
  1035. systemctl stop systemd-resolved || true
  1036. systemctl disable systemd-resolved || true
  1037. Removed /etc/systemd/system/dbus-org.freedesktop.resolve1.service.
  1038. Removed /etc/systemd/system/multi-user.target.wants/systemd-resolved.service.
  1039.  
  1040. # on vultr, ufw is enabled by default. we have our own firewall
  1041. ufw disable || true
  1042. Firewall stopped and disabled on system startup
  1043.  
  1044. # we need unbound to work as this is required for installer.sh to do any DNS requests
  1045. echo -e "server:\n\tinterface: 127.0.0.1\n\tdo-ip6: no" > /etc/unbound/unbound.conf.d/cloudron-network.conf
  1046. systemctl restart unbound
  1047.  
  1048. # Ubuntu 22 has private home directories by default (https://discourse.ubuntu.com/t/private-home-directories-for-ubuntu-21-04-onwards/)
  1049. sed -e 's/^HOME_MODE\([[:space:]]\+\).*$/HOME_MODE\10755/' -i /etc/login.defs
  1050.  
  1051. # create the yellowtent user. system user has different numeric range, no age and won't show in login/gdm UI
  1052. # the nologin will also disable su/login
  1053. if ! id yellowtent 2>/dev/null; then
  1054. useradd --system --comment "Cloudron Box" --create-home --shell /usr/sbin/nologin yellowtent
  1055. fi
  1056.  
  1057. # add support user (no password, sudo)
  1058. if ! id cloudron-support 2>/dev/null; then
  1059. useradd --system --comment "Cloudron Support (support@cloudron.io)" --create-home --no-user-group --shell /bin/bash cloudron-support
  1060. fi
  1061.  
  1062. cat: /home/yellowtent/box/VERSION: No such file or directory
  1063. 2022-07-01T15:37:59 ==> installer: Updating from to 7.2.5
  1064. 2022-07-01T15:37:59 ==> installer: installing/updating docker
  1065. 2022-07-01T15:38:01 ==> installer: installing docker
  1066. 2022-07-01T15:38:01 ==> installer: Making sure apt is in a good state
  1067. 2022-07-01T15:38:01 ==> installer: Waiting for all dpkg tasks to finish...
  1068. Setting up collectd (5.12.0-9) ...
  1069. Job for collectd.service failed because the control process exited with error code.
  1070. See "systemctl status collectd.service" and "journalctl -xeu collectd.service" for details.
  1071. invoke-rc.d: initscript collectd, action "restart" failed.
  1072. ● collectd.service - Statistics collection and monitoring daemon
  1073. Loaded: loaded (/lib/systemd/system/collectd.service; enabled; vendor preset: enabled)
  1074. Active: activating (auto-restart) (Result: exit-code) since Fri 2022-07-01 15:38:02 UTC; 38ms ago
  1075. Docs: man:collectd(1)
  1076. man:collectd.conf(5)
  1077. https://collectd.org
  1078. Process: 52562 ExecStartPre=/usr/sbin/collectd -t (code=exited, status=0/SUCCESS)
  1079. Process: 52563 ExecStart=/usr/sbin/collectd (code=exited, status=1/FAILURE)
  1080. Main PID: 52563 (code=exited, status=1/FAILURE)
  1081. CPU: 64ms
  1082.  
  1083. Jul 01 15:38:02 nobody-hq systemd[1]: Failed to start Statistics collection and monitoring daemon.
  1084. dpkg: error processing package collectd (--configure):
  1085. installed collectd package post-installation script subprocess returned error exit status 1
  1086. Errors were encountered while processing:
  1087. collectd
  1088. 2022-07-01T15:38:02 ==> installer: dpkg reconfigure failed (try 1)
  1089.  
  1090. WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
  1091.  
  1092. Hit:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
  1093. Get:2 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease [109 kB]
  1094. Get:3 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease [99.8 kB]
  1095. Get:4 http://us.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
  1096. Fetched 320 kB in 1s (241 kB/s)
  1097. Reading package lists...
  1098. Building dependency tree...
  1099. Reading state information...
  1100. All packages are up to date.
  1101. Setting up collectd (5.12.0-9) ...
  1102. Job for collectd.service failed because the control process exited with error code.
  1103. See "systemctl status collectd.service" and "journalctl -xeu collectd.service" for details.
  1104. invoke-rc.d: initscript collectd, action "restart" failed.
  1105. ● collectd.service - Statistics collection and monitoring daemon
  1106. Loaded: loaded (/lib/systemd/system/collectd.service; enabled; vendor preset: enabled)
  1107. Active: activating (auto-restart) (Result: exit-code) since Fri 2022-07-01 15:38:09 UTC; 38ms ago
  1108. Docs: man:collectd(1)
  1109. man:collectd.conf(5)
  1110. https://collectd.org
  1111. Process: 52846 ExecStartPre=/usr/sbin/collectd -t (code=exited, status=0/SUCCESS)
  1112. Process: 52847 ExecStart=/usr/sbin/collectd (code=exited, status=1/FAILURE)
  1113. Main PID: 52847 (code=exited, status=1/FAILURE)
  1114. CPU: 26ms
  1115. dpkg: error processing package collectd (--configure):
  1116. installed collectd package post-installation script subprocess returned error exit status 1
  1117. Errors were encountered while processing:
  1118. collectd
  1119. 2022-07-01T15:38:10 ==> installer: dpkg reconfigure failed (try 2)
  1120.  
  1121. WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
  1122.  
  1123. Hit:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
  1124. Get:2 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease [109 kB]
  1125. Get:3 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease [99.8 kB]
  1126. Get:4 http://us.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
  1127. Fetched 320 kB in 1s (291 kB/s)
  1128. Reading package lists...
  1129. Building dependency tree...
  1130. Reading state information...
  1131. All packages are up to date.
  1132. Setting up collectd (5.12.0-9) ...
  1133. Job for collectd.service failed because the control process exited with error code.
  1134. See "systemctl status collectd.service" and "journalctl -xeu collectd.service" for details.
  1135. invoke-rc.d: initscript collectd, action "restart" failed.
  1136. ● collectd.service - Statistics collection and monitoring daemon
  1137. Loaded: loaded (/lib/systemd/system/collectd.service; enabled; vendor preset: enabled)
  1138. Active: activating (auto-restart) (Result: exit-code) since Fri 2022-07-01 15:38:17 UTC; 10ms ago
  1139. Docs: man:collectd(1)
  1140. man:collectd.conf(5)
  1141. https://collectd.org
  1142. Process: 53124 ExecStartPre=/usr/sbin/collectd -t (code=exited, status=0/SUCCESS)
  1143. Process: 53125 ExecStart=/usr/sbin/collectd (code=exited, status=1/FAILURE)
  1144. Main PID: 53125 (code=exited, status=1/FAILURE)
  1145. CPU: 26ms
  1146. dpkg: error processing package collectd (--configure):
  1147. installed collectd package post-installation script subprocess returned error exit status 1
  1148. Errors were encountered while processing:
  1149. collectd
  1150. 2022-07-01T15:38:17 ==> installer: dpkg reconfigure failed (try 3)
  1151.  
  1152. WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
  1153.  
  1154. Hit:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
  1155. Get:2 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease [109 kB]
  1156. Get:3 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease [99.8 kB]
  1157. Get:4 http://us.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
  1158. Fetched 320 kB in 1s (312 kB/s)
  1159. Reading package lists...
  1160. Building dependency tree...
  1161. Reading state information...
  1162. All packages are up to date.
  1163. 2022-07-01T15:38:24 ==> installer: apt is not ready but proceeding anyway
  1164.  
  1165. WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
  1166.  
  1167. Reading package lists...
  1168. Building dependency tree...
  1169. Reading state information...
  1170. The following additional packages will be installed:
  1171. libltdl7 pigz
  1172. Suggested packages:
  1173. aufs-tools cgroupfs-mount | cgroup-lite
  1174. Recommended packages:
  1175. docker-ce-rootless-extras docker-scan-plugin
  1176. The following NEW packages will be installed:
  1177. containerd.io docker-ce docker-ce-cli libltdl7 pigz
  1178. 0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
  1179. 1 not fully installed or removed.
  1180. Need to get 103 kB/84.9 MB of archives.
  1181. After this operation, 371 MB of additional disk space will be used.
  1182. Get:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 pigz amd64 2.6-1 [63.6 kB]
  1183. Get:2 /tmp/containerd.deb containerd.io amd64 1.5.11-1 [22.9 MB]
  1184. Get:3 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libltdl7 amd64 2.4.6-15build2 [39.6 kB]
  1185. Get:4 /tmp/docker-ce-cli.deb docker-ce-cli amd64 5:20.10.14~3-0~ubuntu-jammy [40.9 MB]
  1186. Get:5 /tmp/docker.deb docker-ce amd64 5:20.10.14~3-0~ubuntu-jammy [21.0 MB]
  1187. Fetched 103 kB in 1s (86.6 kB/s)
  1188. Selecting previously unselected package pigz.
  1189. (Reading database ... 112120 files and directories currently installed.)
  1190. Preparing to unpack .../archives/pigz_2.6-1_amd64.deb ...
  1191. Unpacking pigz (2.6-1) ...
  1192. Selecting previously unselected package containerd.io.
  1193. Preparing to unpack /tmp/containerd.deb ...
  1194. Unpacking containerd.io (1.5.11-1) ...
  1195. Selecting previously unselected package docker-ce-cli.
  1196. Preparing to unpack /tmp/docker-ce-cli.deb ...
  1197. Unpacking docker-ce-cli (5:20.10.14~3-0~ubuntu-jammy) ...
  1198. Selecting previously unselected package docker-ce.
  1199. Preparing to unpack /tmp/docker.deb ...
  1200. Unpacking docker-ce (5:20.10.14~3-0~ubuntu-jammy) ...
  1201. Selecting previously unselected package libltdl7:amd64.
  1202. Preparing to unpack .../libltdl7_2.4.6-15build2_amd64.deb ...
  1203. Unpacking libltdl7:amd64 (2.4.6-15build2) ...
  1204. Setting up collectd (5.12.0-9) ...
  1205. Job for collectd.service failed because the control process exited with error code.
  1206. See "systemctl status collectd.service" and "journalctl -xeu collectd.service" for details.
  1207. invoke-rc.d: initscript collectd, action "restart" failed.
  1208. ● collectd.service - Statistics collection and monitoring daemon
  1209. Loaded: loaded (/lib/systemd/system/collectd.service; enabled; vendor preset: enabled)
  1210. Active: activating (auto-restart) (Result: exit-code) since Fri 2022-07-01 15:38:41 UTC; 11ms ago
  1211. Docs: man:collectd(1)
  1212. man:collectd.conf(5)
  1213. https://collectd.org
  1214. Process: 53537 ExecStartPre=/usr/sbin/collectd -t (code=exited, status=0/SUCCESS)
  1215. Process: 53538 ExecStart=/usr/sbin/collectd (code=exited, status=1/FAILURE)
  1216. Main PID: 53538 (code=exited, status=1/FAILURE)
  1217. CPU: 25ms
  1218. dpkg: error processing package collectd (--configure):
  1219. installed collectd package post-installation script subprocess returned error exit status 1
  1220. Setting up containerd.io (1.5.11-1) ...
  1221. Created symlink /etc/systemd/system/multi-user.target.wants/containerd.service → /lib/systemd/system/containerd.service.
  1222. Setting up libltdl7:amd64 (2.4.6-15build2) ...
  1223. Setting up docker-ce-cli (5:20.10.14~3-0~ubuntu-jammy) ...
  1224. Setting up pigz (2.6-1) ...
  1225. Setting up docker-ce (5:20.10.14~3-0~ubuntu-jammy) ...
  1226. Created symlink /etc/systemd/system/multi-user.target.wants/docker.service → /lib/systemd/system/docker.service.
  1227. Created symlink /etc/systemd/system/sockets.target.wants/docker.socket → /lib/systemd/system/docker.socket.
  1228. Processing triggers for man-db (2.10.2-1) ...
  1229. Processing triggers for libc-bin (2.35-0ubuntu3) ...
  1230. Errors were encountered while processing:
  1231. collectd
  1232. needrestart is being skipped since dpkg has failed
  1233. E: Sub-process /usr/bin/dpkg returned an error code (1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement