From 91da27e9d54a011492e2d257bb9c00a84a472f40 Mon Sep 17 00:00:00 2001
From: Gulsum Atici <gulsum.atici@canonical.com>
Date: Wed, 7 Jun 2023 12:38:20 +0300
Subject: [PATCH] Changing scripts to use hackfest15main project for OSM
 instances installation

Signed-off-by: Gulsum Atici <gulsum.atici@canonical.com>
---
 .../OSM-15/setup_scripts/common-vars          |    2 +-
 .../setup_scripts/create-openstack-vm.sh      |   13 +-
 .../setup_scripts/delete-openstack-vm.sh      |   25 +-
 .../create-openstack-user-and-project-5.log   |  143 ++
 .../setup_scripts/logs/vm-initial-setup-5.log | 1286 +++++++++++++++++
 .../setup_scripts/logs/vm-install-osm-5.log   |  549 +++++++
 ...ack_credentials.rc => main_credentials.rc} |    9 +-
 .../setup_scripts/run-delete-openstack-vm.sh  |    5 +-
 .../OSM-15/setup_scripts/run-full-setup.sh    |    6 +-
 .../OSM-15/setup_scripts/run-install-osm.sh   |    4 +-
 .../setup_scripts/run-microk8s-setup.sh       |    6 +-
 .../run-osm-vim-k8scluster-add.sh             |    6 +-
 .../setup_scripts/run-vm-initial-setup.sh     |    9 +-
 .../setup_scripts/ubuntu@172.21.248.100       |   53 -
 14 files changed, 2010 insertions(+), 106 deletions(-)
 create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/logs/create-openstack-user-and-project-5.log
 create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/logs/vm-initial-setup-5.log
 create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/logs/vm-install-osm-5.log
 rename Hackfest_Demos/OSM-15/setup_scripts/{openstack_credentials.rc => main_credentials.rc} (52%)
 delete mode 100755 Hackfest_Demos/OSM-15/setup_scripts/ubuntu@172.21.248.100

diff --git a/Hackfest_Demos/OSM-15/setup_scripts/common-vars b/Hackfest_Demos/OSM-15/setup_scripts/common-vars
index 384bf866..96a7474d 100644
--- a/Hackfest_Demos/OSM-15/setup_scripts/common-vars
+++ b/Hackfest_Demos/OSM-15/setup_scripts/common-vars
@@ -16,7 +16,7 @@ if [ ! -z ${DEBUG} ]; then
 fi
 
 START=5
-MAX=10
+MAX=5
 
 if [ ! -z $2 ] ; then
     START=$1
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh b/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh
index 66079a4d..0775f460 100755
--- a/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh
+++ b/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh
@@ -3,23 +3,14 @@ echo $0 started at $(date)
 
 PARTICIPANT=${1}
 . ./common-vars
-. ./openstack_credentials.rc $PARTICIPANT
+. ./main_credentials.rc
 
 VM_NAME=`expr charmedosm-${PARTICIPANT}`
 echo "Creating public port"
 # This port gets created as the admin
-openstack port create --security-group default --network $NETWORK $VM_NAME
+openstack port create --disable-port-security --enable --network $NETWORK $VM_NAME
 wait
 
-
-
-NOT_READY=1
-while [ $NOT_READY -eq 1 ] ; do
-    openstack server list
-    NOT_READY=$?
-done
-
-
 echo "Creating Keypair"
 openstack keypair create --public-key ./hackfest_rsa.pub ${KEY_NAME} &
 wait
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/delete-openstack-vm.sh b/Hackfest_Demos/OSM-15/setup_scripts/delete-openstack-vm.sh
index 87f66f45..64547240 100755
--- a/Hackfest_Demos/OSM-15/setup_scripts/delete-openstack-vm.sh
+++ b/Hackfest_Demos/OSM-15/setup_scripts/delete-openstack-vm.sh
@@ -1,35 +1,28 @@
 #!/bin/bash
 echo $0 started at $(date)
 
-PARTICIPANT=${1}
 . ./common-vars
-. ./openstack_credentials.rc PARTICIPANT
+. ./main_credentials.rc
 
-OPENSTACK_USER=hackfest15group${PARTICIPANT}
-PROJECT=hackfest15group${PARTICIPANT}
-PASSWORD=hackfest15group-${PARTICIPANT}!
-echo Cleaning up ${OPENSTACK_USER}
 
 PROJECT_ID=`openstack project list | grep "${PROJECT} " | awk '{print $2}'`
 if [ "${PROJECT_ID}" != "" ]; then
-
-    unset OS_PROJECT_NAME
     echo "Removing Router Ports"
-    for ROUTER in $(openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID router list -f value -c ID); do
-        openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID router unset --external-gateway ${ROUTER}
-        PORT=$(openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID router show ${ROUTER} -f json -c interfaces_info | jq .interfaces_info[0].port_id -r)
+    for ROUTER in $(openstack router list -f value -c ID); do
+        openstack router unset --external-gateway ${ROUTER}
+        PORT=$(openstack router show ${ROUTER} -f json -c interfaces_info | jq .interfaces_info[0].port_id -r)
         while [ "${PORT}" != "null" -a "${PORT}" != "" ] ; do
-            openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID router remove port ${ROUTER} ${PORT}
-            PORT=$(openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID router show ${ROUTER} -f json -c interfaces_info | jq .interfaces_info[0].port_id -r)
+            openstack router remove port ${ROUTER} ${PORT}
+            PORT=$(openstack router show ${ROUTER} -f json -c interfaces_info | jq .interfaces_info[0].port_id -r)
         done
     done
 
     echo "Removing VMs"
-    openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID server list -f value -c ID | xargs openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID server delete
+    openstack server list -f value -c ID | xargs openstack server delete
     echo "Removing Routers"
-    openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID router list -f value -c ID | xargs openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID router delete
+    openstack router list -f value -c ID | xargs openstack router delete
     echo "Removing Ports"
-    openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID port list -f value -c ID   | xargs openstack --os-username=$OPENSTACK_USER --os-password=$PASSWORD --os-project-id=$PROJECT_ID port delete
+    openstack port list -f value -c ID   | xargs openstack port delete
 fi
 
 
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/logs/create-openstack-user-and-project-5.log b/Hackfest_Demos/OSM-15/setup_scripts/logs/create-openstack-user-and-project-5.log
new file mode 100644
index 00000000..a649cd14
--- /dev/null
+++ b/Hackfest_Demos/OSM-15/setup_scripts/logs/create-openstack-user-and-project-5.log
@@ -0,0 +1,143 @@
+./create-openstack-vm.sh started at Çrş 07 Haz 2023 11:35:59 +03
+Creating public port
+The option [tenant_id] has been deprecated. Please avoid using it.
++-------------------------+------------------------------------------------------------------------------+
+| Field                   | Value                                                                        |
++-------------------------+------------------------------------------------------------------------------+
+| admin_state_up          | UP                                                                           |
+| allowed_address_pairs   |                                                                              |
+| binding_host_id         |                                                                              |
+| binding_profile         |                                                                              |
+| binding_vif_details     |                                                                              |
+| binding_vif_type        | unbound                                                                      |
+| binding_vnic_type       | normal                                                                       |
+| created_at              | 2023-06-07T08:36:02Z                                                         |
+| data_plane_status       | None                                                                         |
+| description             |                                                                              |
+| device_id               |                                                                              |
+| device_owner            |                                                                              |
+| device_profile          | None                                                                         |
+| dns_assignment          | None                                                                         |
+| dns_domain              | None                                                                         |
+| dns_name                | None                                                                         |
+| extra_dhcp_opts         |                                                                              |
+| fixed_ips               | ip_address='172.21.248.95', subnet_id='d14f68b7-8287-41fe-b533-dafb2240680a' |
+| id                      | 3015e793-2ec3-4427-b070-07a3d52d7196                                         |
+| ip_allocation           | None                                                                         |
+| mac_address             | fa:16:3e:ea:1e:8e                                                            |
+| name                    | charmedosm-5                                                                 |
+| network_id              | 21ea5d92-24f1-40ab-8d28-83230e277a49                                         |
+| numa_affinity_policy    | None                                                                         |
+| port_security_enabled   | False                                                                        |
+| project_id              | f3ba6235ec7b4e9fbe6002992d60a207                                             |
+| propagate_uplink_status | None                                                                         |
+| qos_network_policy_id   | None                                                                         |
+| qos_policy_id           | None                                                                         |
+| resource_request        | None                                                                         |
+| revision_number         | 1                                                                            |
+| security_group_ids      |                                                                              |
+| status                  | DOWN                                                                         |
+| tags                    |                                                                              |
+| tenant_id               | f3ba6235ec7b4e9fbe6002992d60a207                                             |
+| trunk_details           | None                                                                         |
+| updated_at              | 2023-06-07T08:36:02Z                                                         |
++-------------------------+------------------------------------------------------------------------------+
+Creating Keypair
++-------------+-------------------------------------------------+
+| Field       | Value                                           |
++-------------+-------------------------------------------------+
+| created_at  | None                                            |
+| fingerprint | fe:af:ae:27:b9:9d:73:6e:a2:00:c8:10:03:21:89:fe |
+| id          | hackfest                                        |
+| is_deleted  | None                                            |
+| name        | hackfest                                        |
+| type        | ssh                                             |
+| user_id     | 5fcfab909583499e8af7ed632709dc2e                |
++-------------+-------------------------------------------------+
+Launching OSM VM
+The option [tenant_id] has been deprecated. Please avoid using it.
+More than one Port exists with the name 'charmedosm-5'.
+Waiting for OSM VM to be ready
+./create-openstack-vm.sh started at Çrş 07 Haz 2023 11:40:01 +03
+Creating public port
+The option [tenant_id] has been deprecated. Please avoid using it.
++-------------------------+-------------------------------------------------------------------------------+
+| Field                   | Value                                                                         |
++-------------------------+-------------------------------------------------------------------------------+
+| admin_state_up          | UP                                                                            |
+| allowed_address_pairs   |                                                                               |
+| binding_host_id         |                                                                               |
+| binding_profile         |                                                                               |
+| binding_vif_details     |                                                                               |
+| binding_vif_type        | unbound                                                                       |
+| binding_vnic_type       | normal                                                                        |
+| created_at              | 2023-06-07T08:40:04Z                                                          |
+| data_plane_status       | None                                                                          |
+| description             |                                                                               |
+| device_id               |                                                                               |
+| device_owner            |                                                                               |
+| device_profile          | None                                                                          |
+| dns_assignment          | None                                                                          |
+| dns_domain              | None                                                                          |
+| dns_name                | None                                                                          |
+| extra_dhcp_opts         |                                                                               |
+| fixed_ips               | ip_address='172.21.249.248', subnet_id='d14f68b7-8287-41fe-b533-dafb2240680a' |
+| id                      | dea3d03e-5876-43b3-b27c-340d05706508                                          |
+| ip_allocation           | None                                                                          |
+| mac_address             | fa:16:3e:ef:31:40                                                             |
+| name                    | charmedosm-5                                                                  |
+| network_id              | 21ea5d92-24f1-40ab-8d28-83230e277a49                                          |
+| numa_affinity_policy    | None                                                                          |
+| port_security_enabled   | False                                                                         |
+| project_id              | f3ba6235ec7b4e9fbe6002992d60a207                                              |
+| propagate_uplink_status | None                                                                          |
+| qos_network_policy_id   | None                                                                          |
+| qos_policy_id           | None                                                                          |
+| resource_request        | None                                                                          |
+| revision_number         | 1                                                                             |
+| security_group_ids      |                                                                               |
+| status                  | DOWN                                                                          |
+| tags                    |                                                                               |
+| tenant_id               | f3ba6235ec7b4e9fbe6002992d60a207                                              |
+| trunk_details           | None                                                                          |
+| updated_at              | 2023-06-07T08:40:04Z                                                          |
++-------------------------+-------------------------------------------------------------------------------+
+Creating Keypair
+ConflictException: 409: Client Error for url: http://172.21.247.1:8774/v2.1/os-keypairs, Key pair 'hackfest' already exists.
+Launching OSM VM
+The option [tenant_id] has been deprecated. Please avoid using it.
++-------------------------------------+----------------------------------------------------+
+| Field                               | Value                                              |
++-------------------------------------+----------------------------------------------------+
+| OS-DCF:diskConfig                   | MANUAL                                             |
+| OS-EXT-AZ:availability_zone         |                                                    |
+| OS-EXT-SRV-ATTR:host                | None                                               |
+| OS-EXT-SRV-ATTR:hypervisor_hostname | None                                               |
+| OS-EXT-SRV-ATTR:instance_name       |                                                    |
+| OS-EXT-STS:power_state              | NOSTATE                                            |
+| OS-EXT-STS:task_state               | scheduling                                         |
+| OS-EXT-STS:vm_state                 | building                                           |
+| OS-SRV-USG:launched_at              | None                                               |
+| OS-SRV-USG:terminated_at            | None                                               |
+| accessIPv4                          |                                                    |
+| accessIPv6                          |                                                    |
+| addresses                           |                                                    |
+| adminPass                           | 955KMZsruLpb                                       |
+| config_drive                        |                                                    |
+| created                             | 2023-06-07T08:40:12Z                               |
+| flavor                              | osm.sanity (7d3c99d5-b597-4228-88e0-f67a81be6a64)  |
+| hostId                              |                                                    |
+| id                                  | 0992ad21-03e7-4401-b19d-25932d81e4a4               |
+| image                               | ubuntu20.04 (d3cd2290-5813-4f77-90f8-7a1e8c21d9c6) |
+| key_name                            | hackfest                                           |
+| name                                | charmedosm-5                                       |
+| progress                            | 0                                                  |
+| project_id                          | f3ba6235ec7b4e9fbe6002992d60a207                   |
+| properties                          |                                                    |
+| security_groups                     | name='default'                                     |
+| status                              | BUILD                                              |
+| updated                             | 2023-06-07T08:40:12Z                               |
+| user_id                             | 5fcfab909583499e8af7ed632709dc2e                   |
+| volumes_attached                    |                                                    |
++-------------------------------------+----------------------------------------------------+
+Waiting for OSM VM to be ready
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/logs/vm-initial-setup-5.log b/Hackfest_Demos/OSM-15/setup_scripts/logs/vm-initial-setup-5.log
new file mode 100644
index 00000000..0d0d0277
--- /dev/null
+++ b/Hackfest_Demos/OSM-15/setup_scripts/logs/vm-initial-setup-5.log
@@ -0,0 +1,1286 @@
+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @
+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+Permissions 0664 for 'hackfest_rsa' are too open.
+It is required that your private key files are NOT accessible by others.
+This private key will be ignored.
+Load key "hackfest_rsa": bad permissions
+/usr/bin/xauth:  file /home/ubuntu/.Xauthority does not exist
+bash: ./vm-initial-setup.sh: No such file or directory
+bash: vm-initial-setup.sh: command not found
+bash: vm-initial-setup.sh: command not found
+./vm-initial-setup.sh started at Wed Jun 7 08:59:14 UTC 2023
+Acquire::http::Proxy "http://172.21.1.1:3142";
+Acquire::https::Proxy "http://172.21.1.1:3142";
+
+WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
+
+Get:1 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB]
+Hit:2 http://nova.clouds.archive.ubuntu.com/ubuntu focal InRelease
+Get:3 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
+Get:4 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB]
+Get:5 http://nova.clouds.archive.ubuntu.com/ubuntu focal/universe amd64 Packages [8628 kB]
+Get:6 http://nova.clouds.archive.ubuntu.com/ubuntu focal/universe Translation-en [5124 kB]
+Get:7 http://nova.clouds.archive.ubuntu.com/ubuntu focal/universe amd64 c-n-f Metadata [265 kB]
+Get:8 http://nova.clouds.archive.ubuntu.com/ubuntu focal/multiverse amd64 Packages [144 kB]
+Get:9 http://nova.clouds.archive.ubuntu.com/ubuntu focal/multiverse Translation-en [104 kB]
+Get:10 http://nova.clouds.archive.ubuntu.com/ubuntu focal/multiverse amd64 c-n-f Metadata [9136 B]
+Get:11 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [2612 kB]
+Get:12 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [440 kB]
+Get:13 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [16.8 kB]
+Get:14 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1937 kB]
+Get:15 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [273 kB]
+Get:16 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [636 B]
+Get:17 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1068 kB]
+Get:18 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [254 kB]
+Get:19 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [24.9 kB]
+Get:20 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2230 kB]
+Get:21 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [25.2 kB]
+Get:22 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7408 B]
+Get:23 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [612 B]
+Get:24 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB]
+Get:25 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports/main Translation-en [16.3 kB]
+Get:26 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1420 B]
+Get:27 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports/restricted amd64 c-n-f Metadata [116 B]
+Get:28 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB]
+Get:29 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports/universe Translation-en [16.3 kB]
+Get:30 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B]
+Get:31 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports/multiverse amd64 c-n-f Metadata [116 B]
+Get:32 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [358 kB]
+Get:33 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.0 kB]
+Get:34 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1833 kB]
+Get:35 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [256 kB]
+Get:36 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [640 B]
+Get:37 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [843 kB]
+Get:38 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [173 kB]
+Get:39 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [18.5 kB]
+Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.9 kB]
+Get:41 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5488 B]
+Get:42 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [540 B]
+Fetched 27.1 MB in 6s (4194 kB/s)
+Reading package lists...
+Building dependency tree...
+Reading state information...
+190 packages can be upgraded. Run 'apt list --upgradable' to see them.
+
+WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Calculating upgrade...
+The following NEW packages will be installed:
+  libxmlb2 linux-headers-5.4.0-150 linux-headers-5.4.0-150-generic
+  linux-image-5.4.0-150-generic linux-modules-5.4.0-150-generic
+The following packages will be upgraded:
+  apparmor apport apt apt-utils base-files bash bind9-dnsutils bind9-host
+  bind9-libs bolt ca-certificates cloud-init curl dbus dbus-user-session
+  dirmngr distro-info-data dpkg e2fsprogs fwupd fwupd-signed git git-man gnupg
+  gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf
+  gpgsm gpgv grub-common grub-efi-amd64-bin grub-efi-amd64-signed grub-pc
+  grub-pc-bin grub2-common gzip iptables isc-dhcp-client isc-dhcp-common
+  klibc-utils kmod kpartx krb5-locales libapparmor1 libapt-pkg6.0
+  libasn1-8-heimdal libc-bin libc6 libcom-err2 libcurl3-gnutls libcurl4
+  libdbus-1-3 libexpat1 libext2fs2 libfreetype6 libfwupd2 libfwupdplugin5
+  libgmp10 libgnutls30 libgssapi-krb5-2 libgssapi3-heimdal libgstreamer1.0-0
+  libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal
+  libhx509-5-heimdal libip4tc2 libip6tc2 libk5crypto3 libkeyutils1 libklibc
+  libkmod2 libkrb5-26-heimdal libkrb5-3 libkrb5support0 libksba8 libldap-2.4-2
+  libldap-common liblzma5 libmbim-glib4 libmbim-proxy libmm-glib0 libncurses6
+  libncursesw6 libnetplan0 libnghttp2-14 libnss-systemd libnss3 libntfs-3g883
+  libpam-modules libpam-modules-bin libpam-runtime libpam-systemd libpam0g
+  libpcre2-8-0 libpcre3 libperl5.30 libpython3.8 libpython3.8-minimal
+  libpython3.8-stdlib libqmi-glib5 libqmi-proxy libroken18-heimdal libsepol1
+  libsqlite3-0 libss2 libssh-4 libssl1.1 libsystemd0 libtdb1 libtinfo6
+  libtss2-esys0 libudev1 libunwind8 libwind0-heimdal libxml2 libxslt1.1
+  libxtables12 linux-headers-generic linux-headers-virtual linux-image-virtual
+  linux-virtual locales login logsave modemmanager mokutil motd-news-config
+  multipath-tools ncurses-base ncurses-bin ncurses-term netplan.io
+  networkd-dispatcher ntfs-3g open-iscsi open-vm-tools openssh-client
+  openssh-server openssh-sftp-server openssl passwd perl perl-base
+  perl-modules-5.30 python-apt-common python3-apport python3-apt
+  python3-distupgrade python3-jwt python3-pkg-resources python3-problem-report
+  python3-setuptools python3-software-properties python3-update-manager
+  python3-urllib3 python3.8 python3.8-minimal rsync rsyslog sbsigntool
+  shim-signed snapd software-properties-common sosreport sudo systemd
+  systemd-sysv systemd-timesyncd tar tcpdump tmux tzdata
+  ubuntu-advantage-tools ubuntu-release-upgrader-core udev unattended-upgrades
+  update-manager-core update-notifier-common vim vim-common vim-runtime
+  vim-tiny xxd xz-utils zlib1g
+190 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
+114 standard security updates
+Need to get 161 MB of archives.
+After this operation, 210 MB of additional disk space will be used.
+Get:1 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 motd-news-config all 11ubuntu5.7 [4292 B]
+Get:2 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libc6 amd64 2.31-0ubuntu9.9 [2722 kB]
+Get:3 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 base-files amd64 11ubuntu5.7 [60.4 kB]
+Get:4 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 bash amd64 5.0-6ubuntu1.2 [639 kB]
+Get:5 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 tar amd64 1.30+dfsg-7ubuntu0.20.04.3 [240 kB]
+Get:6 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 dpkg amd64 1.19.7ubuntu3.2 [1128 kB]
+Get:7 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gzip amd64 1.10-0ubuntu4.1 [95.2 kB]
+Get:8 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 login amd64 1:4.8.1-1ubuntu5.20.04.4 [221 kB]
+Get:9 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 ncurses-bin amd64 6.2-0ubuntu2.1 [172 kB]
+Get:10 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libperl5.30 amd64 5.30.0-9ubuntu0.4 [3959 kB]
+Get:11 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 perl amd64 5.30.0-9ubuntu0.4 [224 kB]
+Get:12 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 perl-base amd64 5.30.0-9ubuntu0.4 [1514 kB]
+Get:13 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 perl-modules-5.30 all 5.30.0-9ubuntu0.4 [2739 kB]
+Get:14 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 zlib1g amd64 1:1.2.11.dfsg-2ubuntu1.5 [54.2 kB]
+Get:15 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 locales all 2.31-0ubuntu9.9 [3869 kB]
+Get:16 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libc-bin amd64 2.31-0ubuntu9.9 [633 kB]
+Get:17 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 ncurses-base all 6.2-0ubuntu2.1 [18.9 kB]
+Get:18 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 liblzma5 amd64 5.2.4-1ubuntu1.1 [91.8 kB]
+Get:19 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libnss-systemd amd64 245.4-4ubuntu3.21 [95.8 kB]
+Get:20 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 udev amd64 245.4-4ubuntu3.21 [1366 kB]
+Get:21 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libudev1 amd64 245.4-4ubuntu3.21 [75.9 kB]
+Get:22 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libssl1.1 amd64 1.1.1f-1ubuntu2.19 [1321 kB]
+Get:23 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 kmod amd64 27-1ubuntu2.1 [94.8 kB]
+Get:24 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libkmod2 amd64 27-1ubuntu2.1 [45.3 kB]
+Get:25 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 systemd-sysv amd64 245.4-4ubuntu3.21 [10.3 kB]
+Get:26 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 systemd-timesyncd amd64 245.4-4ubuntu3.21 [28.1 kB]
+Get:27 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpam0g amd64 1.3.1-5ubuntu4.6 [55.3 kB]
+Get:28 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpam-modules-bin amd64 1.3.1-5ubuntu4.6 [41.2 kB]
+Get:29 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpam-modules amd64 1.3.1-5ubuntu4.6 [260 kB]
+Get:30 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpam-runtime all 1.3.1-5ubuntu4.6 [37.3 kB]
+Get:31 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 dbus amd64 1.12.16-2ubuntu2.3 [151 kB]
+Get:32 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-3 amd64 1.12.16-2ubuntu2.3 [179 kB]
+Get:33 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libapparmor1 amd64 2.13.3-7ubuntu5.2 [35.4 kB]
+Get:34 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libexpat1 amd64 2.2.9-1ubuntu0.6 [74.6 kB]
+Get:35 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpam-systemd amd64 245.4-4ubuntu3.21 [186 kB]
+Get:36 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgmp10 amd64 2:6.2.0+dfsg-4ubuntu0.1 [241 kB]
+Get:37 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgnutls30 amd64 3.6.13-2ubuntu1.8 [829 kB]
+Get:38 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libxtables12 amd64 1.8.4-3ubuntu2.1 [28.7 kB]
+Get:39 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 iptables amd64 1.8.4-3ubuntu2.1 [390 kB]
+Get:40 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libip6tc2 amd64 1.8.4-3ubuntu2.1 [19.4 kB]
+Get:41 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libip4tc2 amd64 1.8.4-3ubuntu2.1 [19.1 kB]
+Get:42 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre2-8-0 amd64 10.34-7ubuntu0.1 [198 kB]
+Get:43 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 systemd amd64 245.4-4ubuntu3.21 [3810 kB]
+Get:44 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsystemd0 amd64 245.4-4ubuntu3.21 [268 kB]
+Get:45 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libapt-pkg6.0 amd64 2.0.9 [839 kB]
+Get:46 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 apt amd64 2.0.9 [1294 kB]
+Get:47 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 apt-utils amd64 2.0.9 [213 kB]
+Get:48 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libksba8 amd64 1.3.5-2ubuntu0.20.04.2 [95.2 kB]
+Get:49 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gpg-wks-client amd64 2.2.19-3ubuntu2.2 [97.4 kB]
+Get:50 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 dirmngr amd64 2.2.19-3ubuntu2.2 [330 kB]
+Get:51 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gpg-wks-server amd64 2.2.19-3ubuntu2.2 [90.2 kB]
+Get:52 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gnupg-utils amd64 2.2.19-3ubuntu2.2 [481 kB]
+Get:53 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gpg-agent amd64 2.2.19-3ubuntu2.2 [232 kB]
+Get:54 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gpg amd64 2.2.19-3ubuntu2.2 [482 kB]
+Get:55 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gpgconf amd64 2.2.19-3ubuntu2.2 [124 kB]
+Get:56 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gnupg-l10n all 2.2.19-3ubuntu2.2 [51.7 kB]
+Get:57 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gnupg all 2.2.19-3ubuntu2.2 [259 kB]
+Get:58 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gpgsm amd64 2.2.19-3ubuntu2.2 [217 kB]
+Get:59 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsqlite3-0 amd64 3.31.1-4ubuntu0.5 [549 kB]
+Get:60 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcom-err2 amd64 1.45.5-2ubuntu1.1 [9548 B]
+Get:61 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libroken18-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [42.5 kB]
+Get:62 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libasn1-8-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [181 kB]
+Get:63 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libheimbase1-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [30.4 kB]
+Get:64 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libhcrypto4-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [88.1 kB]
+Get:65 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwind0-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [47.7 kB]
+Get:66 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libhx509-5-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [107 kB]
+Get:67 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libkrb5-26-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [207 kB]
+Get:68 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libheimntlm0-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [15.1 kB]
+Get:69 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgssapi3-heimdal amd64 7.7.0+dfsg-1ubuntu1.4 [96.5 kB]
+Get:70 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libldap-common all 2.4.49+dfsg-2ubuntu1.9 [16.6 kB]
+Get:71 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libldap-2.4-2 amd64 2.4.49+dfsg-2ubuntu1.9 [155 kB]
+Get:72 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 gpgv amd64 2.2.19-3ubuntu2.2 [200 kB]
+Get:73 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 logsave amd64 1.45.5-2ubuntu1.1 [10.2 kB]
+Get:74 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libext2fs2 amd64 1.45.5-2ubuntu1.1 [183 kB]
+Get:75 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 e2fsprogs amd64 1.45.5-2ubuntu1.1 [527 kB]
+Get:76 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpython3.8 amd64 3.8.10-0ubuntu1~20.04.8 [1625 kB]
+Get:77 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3.8 amd64 3.8.10-0ubuntu1~20.04.8 [387 kB]
+Get:78 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpython3.8-stdlib amd64 3.8.10-0ubuntu1~20.04.8 [1675 kB]
+Get:79 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3.8-minimal amd64 3.8.10-0ubuntu1~20.04.8 [1902 kB]
+Get:80 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpython3.8-minimal amd64 3.8.10-0ubuntu1~20.04.8 [717 kB]
+Get:81 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libncurses6 amd64 6.2-0ubuntu2.1 [101 kB]
+Get:82 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libncursesw6 amd64 6.2-0ubuntu2.1 [132 kB]
+Get:83 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libtinfo6 amd64 6.2-0ubuntu2.1 [87.4 kB]
+Get:84 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 rsyslog amd64 8.2001.0-1ubuntu1.3 [427 kB]
+Get:85 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 ntfs-3g amd64 1:2017.3.23AR.3-3ubuntu1.3 [388 kB]
+Get:86 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libntfs-3g883 amd64 1:2017.3.23AR.3-3ubuntu1.3 [150 kB]
+Get:87 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 rsync amd64 3.1.3-8ubuntu0.5 [322 kB]
+Get:88 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 open-iscsi amd64 2.0.874-7.1ubuntu6.3 [283 kB]
+Get:89 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python-apt-common all 2.0.1ubuntu0.20.04.1 [16.5 kB]
+Get:90 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-apt amd64 2.0.1ubuntu0.20.04.1 [154 kB]
+Get:91 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 ubuntu-release-upgrader-core all 1:20.04.41 [24.3 kB]
+Get:92 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 update-manager-core all 1:20.04.10.11 [11.6 kB]
+Get:93 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-distupgrade all 1:20.04.41 [105 kB]
+Get:94 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-update-manager all 1:20.04.10.11 [38.0 kB]
+Get:95 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 openssl amd64 1.1.1f-1ubuntu2.19 [621 kB]
+Get:96 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 ca-certificates all 20230311ubuntu0.20.04.1 [152 kB]
+Get:97 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 distro-info-data all 0.43ubuntu1.13 [4836 B]
+Get:98 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-setuptools all 45.2.0-1ubuntu0.1 [330 kB]
+Get:99 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-pkg-resources all 45.2.0-1ubuntu0.1 [130 kB]
+Get:100 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 ubuntu-advantage-tools amd64 27.14.4~20.04 [171 kB]
+Get:101 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 update-notifier-common all 3.192.30.17 [173 kB]
+Get:102 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libxml2 amd64 2.9.10+dfsg-5ubuntu0.20.04.6 [640 kB]
+Get:103 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 open-vm-tools amd64 2:11.3.0-2ubuntu0~ubuntu20.04.4 [647 kB]
+Get:104 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre3 amd64 2:8.39-12ubuntu0.1 [232 kB]
+Get:105 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsepol1 amd64 3.0-1ubuntu0.1 [252 kB]
+Get:106 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 passwd amd64 1:4.8.1-1ubuntu5.20.04.4 [799 kB]
+Get:107 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libss2 amd64 1.45.5-2ubuntu1.1 [11.3 kB]
+Get:108 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 isc-dhcp-client amd64 4.4.1-2.1ubuntu5.20.04.5 [247 kB]
+Get:109 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 isc-dhcp-common amd64 4.4.1-2.1ubuntu5.20.04.5 [45.3 kB]
+Get:110 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 netplan.io amd64 0.104-0ubuntu2~20.04.2 [88.0 kB]
+Get:111 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libnetplan0 amd64 0.104-0ubuntu2~20.04.2 [82.5 kB]
+Get:112 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 networkd-dispatcher all 2.1-2~ubuntu20.04.3 [15.5 kB]
+Get:113 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 sudo amd64 1.8.31-1ubuntu1.5 [515 kB]
+Get:114 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 tzdata all 2023c-0ubuntu0.20.04.2 [301 kB]
+Get:115 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 vim amd64 2:8.1.2269-1ubuntu5.14 [1241 kB]
+Get:116 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 vim-tiny amd64 2:8.1.2269-1ubuntu5.14 [581 kB]
+Get:117 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 vim-runtime all 2:8.1.2269-1ubuntu5.14 [5875 kB]
+Get:118 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 xxd amd64 2:8.1.2269-1ubuntu5.14 [52.4 kB]
+Get:119 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 vim-common all 2:8.1.2269-1ubuntu5.14 [87.2 kB]
+Get:120 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 xz-utils amd64 5.2.4-1ubuntu1.1 [82.6 kB]
+Get:121 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 apparmor amd64 2.13.3-7ubuntu5.2 [502 kB]
+Get:122 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgssapi-krb5-2 amd64 1.17-6ubuntu4.3 [121 kB]
+Get:123 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libkrb5-3 amd64 1.17-6ubuntu4.3 [330 kB]
+Get:124 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libkrb5support0 amd64 1.17-6ubuntu4.3 [31.1 kB]
+Get:125 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libk5crypto3 amd64 1.17-6ubuntu4.3 [80.2 kB]
+Get:126 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libkeyutils1 amd64 1.6-6ubuntu1.1 [10.3 kB]
+Get:127 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 bind9-dnsutils amd64 1:9.16.1-0ubuntu2.14 [134 kB]
+Get:128 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 bind9-libs amd64 1:9.16.1-0ubuntu2.14 [1109 kB]
+Get:129 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 bind9-host amd64 1:9.16.1-0ubuntu2.14 [43.0 kB]
+Get:130 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 krb5-locales all 1.17-6ubuntu4.3 [11.6 kB]
+Get:131 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 openssh-sftp-server amd64 1:8.2p1-4ubuntu0.7 [51.5 kB]
+Get:132 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 openssh-server amd64 1:8.2p1-4ubuntu0.7 [377 kB]
+Get:133 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 git-man all 1:2.25.1-1ubuntu3.11 [887 kB]
+Get:134 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libnghttp2-14 amd64 1.40.0-1ubuntu0.1 [78.5 kB]
+Get:135 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libssh-4 amd64 0.9.3-2ubuntu2.3 [170 kB]
+Get:136 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcurl3-gnutls amd64 7.68.0-1ubuntu2.18 [233 kB]
+Get:137 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 git amd64 1:2.25.1-1ubuntu3.11 [4605 kB]
+Get:138 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 openssh-client amd64 1:8.2p1-4ubuntu0.7 [668 kB]
+Get:139 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 tcpdump amd64 4.9.3-4ubuntu0.2 [369 kB]
+Get:140 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 grub-pc amd64 2.04-1ubuntu26.17 [125 kB]
+Get:141 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 grub2-common amd64 2.04-1ubuntu26.17 [590 kB]
+Get:142 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 grub-pc-bin amd64 2.04-1ubuntu26.17 [971 kB]
+Get:143 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libfreetype6 amd64 2.10.1-2ubuntu0.3 [341 kB]
+Get:144 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 grub-common amd64 2.04-1ubuntu26.17 [1872 kB]
+Get:145 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-problem-report all 2.20.11-0ubuntu27.27 [11.2 kB]
+Get:146 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-apport all 2.20.11-0ubuntu27.27 [86.9 kB]
+Get:147 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 apport all 2.20.11-0ubuntu27.27 [129 kB]
+Get:148 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 bolt amd64 0.9.1-2~ubuntu20.04.2 [143 kB]
+Get:149 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 curl amd64 7.68.0-1ubuntu2.18 [161 kB]
+Get:150 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcurl4 amd64 7.68.0-1ubuntu2.18 [236 kB]
+Get:151 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 dbus-user-session amd64 1.12.16-2ubuntu2.3 [9424 B]
+Get:152 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libxmlb2 amd64 0.3.6-2build1~20.04.1 [61.6 kB]
+Get:153 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 fwupd amd64 1.7.9-1~20.04.1 [2453 kB]
+Get:154 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libfwupdplugin5 amd64 1.7.9-1~20.04.1 [170 kB]
+Get:155 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libfwupd2 amd64 1.7.9-1~20.04.1 [92.5 kB]
+Get:156 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libmbim-proxy amd64 1.26.2-1~ubuntu20.04.1 [6012 B]
+Get:157 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libmbim-glib4 amd64 1.26.2-1~ubuntu20.04.1 [123 kB]
+Get:158 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libmm-glib0 amd64 1.18.6-1~ubuntu20.04.1 [203 kB]
+Get:159 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libqmi-proxy amd64 1.30.4-1~ubuntu20.04.1 [5908 B]
+Get:160 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libqmi-glib5 amd64 1.30.4-1~ubuntu20.04.1 [642 kB]
+Get:161 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libtss2-esys0 amd64 2.3.2-1ubuntu0.20.04.1 [226 kB]
+Get:162 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 fwupd-signed amd64 1.51~20.04.1+1.2-3ubuntu0.2 [28.7 kB]
+Get:163 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 grub-efi-amd64-signed amd64 1.187.3~20.04.1+2.06-2ubuntu14.1 [1343 kB]
+Get:164 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 grub-efi-amd64-bin amd64 2.06-2ubuntu14.1 [1591 kB]
+Get:165 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 klibc-utils amd64 2.0.7-1ubuntu5.1 [95.2 kB]
+Get:166 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libklibc amd64 2.0.7-1ubuntu5.1 [43.1 kB]
+Get:167 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer1.0-0 amd64 1.16.3-0ubuntu1.1 [894 kB]
+Get:168 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libnss3 amd64 2:3.49.1-1ubuntu1.9 [1256 kB]
+Get:169 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libtdb1 amd64 1.4.5-0ubuntu0.20.04.1 [44.2 kB]
+Get:170 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libunwind8 amd64 1.2.1-9ubuntu0.1 [47.7 kB]
+Get:171 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 libxslt1.1 amd64 1.1.34-4ubuntu0.20.04.1 [151 kB]
+Get:172 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-5.4.0-150 all 5.4.0-150.167 [11.0 MB]
+Get:173 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-5.4.0-150-generic amd64 5.4.0-150.167 [1365 kB]
+Get:174 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.4.0-150-generic amd64 5.4.0-150.167 [15.0 MB]
+Get:175 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.4.0-150-generic amd64 5.4.0-150.167 [10.5 MB]
+Get:176 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-virtual amd64 5.4.0.150.148 [1876 B]
+Get:177 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-virtual amd64 5.4.0.150.148 [2464 B]
+Get:178 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-virtual amd64 5.4.0.150.148 [1836 B]
+Get:179 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-headers-generic amd64 5.4.0.150.148 [2364 B]
+Get:180 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 modemmanager amd64 1.18.6-1~ubuntu20.04.1 [895 kB]
+Get:181 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 mokutil amd64 0.6.0-2~20.04.1 [26.6 kB]
+Get:182 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 ncurses-term all 6.2-0ubuntu2.1 [249 kB]
+Get:183 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jwt all 1.7.1-2ubuntu2.1 [18.0 kB]
+Get:184 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 software-properties-common all 0.99.9.11 [10.4 kB]
+Get:185 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-software-properties all 0.99.9.11 [21.6 kB]
+Get:186 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-urllib3 all 1.25.8-2ubuntu0.2 [88.4 kB]
+Get:187 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 sbsigntool amd64 0.9.2-2ubuntu1.1 [63.8 kB]
+Get:188 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 shim-signed amd64 1.40.9+15.7-0ubuntu1 [667 kB]
+Get:189 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 snapd amd64 2.58+20.04.1 [37.9 MB]
+Get:190 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 sosreport amd64 4.4-1ubuntu0.20.04.1 [305 kB]
+Get:191 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 tmux amd64 3.0a-2ubuntu0.4 [292 kB]
+Get:192 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 unattended-upgrades all 2.3ubuntu0.3 [48.5 kB]
+Get:193 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 cloud-init all 23.1.2-0ubuntu0~20.04.2 [532 kB]
+Get:194 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 kpartx amd64 0.8.3-1ubuntu2.1 [27.8 kB]
+Get:195 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates/main amd64 multipath-tools amd64 0.8.3-1ubuntu2.1 [290 kB]
+perl: warning: Setting locale failed.
+perl: warning: Please check that your locale settings:
+	LANGUAGE = (unset),
+	LC_ALL = (unset),
+	LC_TIME = "tr_TR.UTF-8",
+	LC_MONETARY = "tr_TR.UTF-8",
+	LC_ADDRESS = "tr_TR.UTF-8",
+	LC_TELEPHONE = "tr_TR.UTF-8",
+	LC_NAME = "tr_TR.UTF-8",
+	LC_MEASUREMENT = "tr_TR.UTF-8",
+	LC_IDENTIFICATION = "tr_TR.UTF-8",
+	LC_NUMERIC = "tr_TR.UTF-8",
+	LC_PAPER = "tr_TR.UTF-8",
+	LANG = "C.UTF-8"
+    are supported and installed on your system.
+perl: warning: Falling back to a fallback locale ("C.UTF-8").
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+debconf: unable to initialize frontend: Readline
+debconf: (This frontend requires a controlling tty.)
+debconf: falling back to frontend: Teletype
+dpkg-preconfigure: unable to re-open stdin: 
+Fetched 161 MB in 6s (26.8 MB/s)
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../motd-news-config_11ubuntu5.7_all.deb ...
+Unpacking motd-news-config (11ubuntu5.7) over (11ubuntu5.5) ...
+Preparing to unpack .../libc6_2.31-0ubuntu9.9_amd64.deb ...
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Unpacking libc6:amd64 (2.31-0ubuntu9.9) over (2.31-0ubuntu9.7) ...
+Setting up libc6:amd64 (2.31-0ubuntu9.9) ...
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../base-files_11ubuntu5.7_amd64.deb ...
+Warning: Stopping motd-news.service, but it can still be activated by:
+  motd-news.timer
+Unpacking base-files (11ubuntu5.7) over (11ubuntu5.5) ...
+Setting up base-files (11ubuntu5.7) ...
+Installing new version of config file /etc/issue ...
+Installing new version of config file /etc/issue.net ...
+Installing new version of config file /etc/lsb-release ...
+motd-news.service is a disabled or a static unit, not starting it.
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../bash_5.0-6ubuntu1.2_amd64.deb ...
+Unpacking bash (5.0-6ubuntu1.2) over (5.0-6ubuntu1.1) ...
+Setting up bash (5.0-6ubuntu1.2) ...
+update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../tar_1.30+dfsg-7ubuntu0.20.04.3_amd64.deb ...
+Unpacking tar (1.30+dfsg-7ubuntu0.20.04.3) over (1.30+dfsg-7ubuntu0.20.04.2) ...
+Setting up tar (1.30+dfsg-7ubuntu0.20.04.3) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../dpkg_1.19.7ubuntu3.2_amd64.deb ...
+Unpacking dpkg (1.19.7ubuntu3.2) over (1.19.7ubuntu3) ...
+Setting up dpkg (1.19.7ubuntu3.2) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../gzip_1.10-0ubuntu4.1_amd64.deb ...
+Unpacking gzip (1.10-0ubuntu4.1) over (1.10-0ubuntu4) ...
+Setting up gzip (1.10-0ubuntu4.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../login_1%3a4.8.1-1ubuntu5.20.04.4_amd64.deb ...
+Unpacking login (1:4.8.1-1ubuntu5.20.04.4) over (1:4.8.1-1ubuntu5.20.04.1) ...
+Setting up login (1:4.8.1-1ubuntu5.20.04.4) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../ncurses-bin_6.2-0ubuntu2.1_amd64.deb ...
+Unpacking ncurses-bin (6.2-0ubuntu2.1) over (6.2-0ubuntu2) ...
+Setting up ncurses-bin (6.2-0ubuntu2.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../libperl5.30_5.30.0-9ubuntu0.4_amd64.deb ...
+Unpacking libperl5.30:amd64 (5.30.0-9ubuntu0.4) over (5.30.0-9ubuntu0.2) ...
+Preparing to unpack .../perl_5.30.0-9ubuntu0.4_amd64.deb ...
+Unpacking perl (5.30.0-9ubuntu0.4) over (5.30.0-9ubuntu0.2) ...
+Preparing to unpack .../perl-base_5.30.0-9ubuntu0.4_amd64.deb ...
+Unpacking perl-base (5.30.0-9ubuntu0.4) over (5.30.0-9ubuntu0.2) ...
+Setting up perl-base (5.30.0-9ubuntu0.4) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../perl-modules-5.30_5.30.0-9ubuntu0.4_all.deb ...
+Unpacking perl-modules-5.30 (5.30.0-9ubuntu0.4) over (5.30.0-9ubuntu0.2) ...
+Preparing to unpack .../zlib1g_1%3a1.2.11.dfsg-2ubuntu1.5_amd64.deb ...
+Unpacking zlib1g:amd64 (1:1.2.11.dfsg-2ubuntu1.5) over (1:1.2.11.dfsg-2ubuntu1.3) ...
+Setting up zlib1g:amd64 (1:1.2.11.dfsg-2ubuntu1.5) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../locales_2.31-0ubuntu9.9_all.deb ...
+Unpacking locales (2.31-0ubuntu9.9) over (2.31-0ubuntu9.7) ...
+Preparing to unpack .../libc-bin_2.31-0ubuntu9.9_amd64.deb ...
+Unpacking libc-bin (2.31-0ubuntu9.9) over (2.31-0ubuntu9.7) ...
+Setting up libc-bin (2.31-0ubuntu9.9) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../ncurses-base_6.2-0ubuntu2.1_all.deb ...
+Unpacking ncurses-base (6.2-0ubuntu2.1) over (6.2-0ubuntu2) ...
+Setting up ncurses-base (6.2-0ubuntu2.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../liblzma5_5.2.4-1ubuntu1.1_amd64.deb ...
+Unpacking liblzma5:amd64 (5.2.4-1ubuntu1.1) over (5.2.4-1ubuntu1) ...
+Setting up liblzma5:amd64 (5.2.4-1ubuntu1.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../libnss-systemd_245.4-4ubuntu3.21_amd64.deb ...
+Unpacking libnss-systemd:amd64 (245.4-4ubuntu3.21) over (245.4-4ubuntu3.15) ...
+Preparing to unpack .../udev_245.4-4ubuntu3.21_amd64.deb ...
+Unpacking udev (245.4-4ubuntu3.21) over (245.4-4ubuntu3.15) ...
+Preparing to unpack .../libudev1_245.4-4ubuntu3.21_amd64.deb ...
+Unpacking libudev1:amd64 (245.4-4ubuntu3.21) over (245.4-4ubuntu3.15) ...
+Setting up libudev1:amd64 (245.4-4ubuntu3.21) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../0-libssl1.1_1.1.1f-1ubuntu2.19_amd64.deb ...
+Unpacking libssl1.1:amd64 (1.1.1f-1ubuntu2.19) over (1.1.1f-1ubuntu2.12) ...
+Preparing to unpack .../1-kmod_27-1ubuntu2.1_amd64.deb ...
+Unpacking kmod (27-1ubuntu2.1) over (27-1ubuntu2) ...
+Preparing to unpack .../2-libkmod2_27-1ubuntu2.1_amd64.deb ...
+Unpacking libkmod2:amd64 (27-1ubuntu2.1) over (27-1ubuntu2) ...
+Preparing to unpack .../3-systemd-sysv_245.4-4ubuntu3.21_amd64.deb ...
+Unpacking systemd-sysv (245.4-4ubuntu3.21) over (245.4-4ubuntu3.15) ...
+Preparing to unpack .../4-systemd-timesyncd_245.4-4ubuntu3.21_amd64.deb ...
+Unpacking systemd-timesyncd (245.4-4ubuntu3.21) over (245.4-4ubuntu3.15) ...
+Preparing to unpack .../5-libpam0g_1.3.1-5ubuntu4.6_amd64.deb ...
+Unpacking libpam0g:amd64 (1.3.1-5ubuntu4.6) over (1.3.1-5ubuntu4.3) ...
+Setting up libpam0g:amd64 (1.3.1-5ubuntu4.6) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../libpam-modules-bin_1.3.1-5ubuntu4.6_amd64.deb ...
+Unpacking libpam-modules-bin (1.3.1-5ubuntu4.6) over (1.3.1-5ubuntu4.3) ...
+Setting up libpam-modules-bin (1.3.1-5ubuntu4.6) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../libpam-modules_1.3.1-5ubuntu4.6_amd64.deb ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Unpacking libpam-modules:amd64 (1.3.1-5ubuntu4.6) over (1.3.1-5ubuntu4.3) ...
+Setting up libpam-modules:amd64 (1.3.1-5ubuntu4.6) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../libpam-runtime_1.3.1-5ubuntu4.6_all.deb ...
+Unpacking libpam-runtime (1.3.1-5ubuntu4.6) over (1.3.1-5ubuntu4.3) ...
+Setting up libpam-runtime (1.3.1-5ubuntu4.6) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../0-dbus_1.12.16-2ubuntu2.3_amd64.deb ...
+Unpacking dbus (1.12.16-2ubuntu2.3) over (1.12.16-2ubuntu2.1) ...
+Preparing to unpack .../1-libdbus-1-3_1.12.16-2ubuntu2.3_amd64.deb ...
+Unpacking libdbus-1-3:amd64 (1.12.16-2ubuntu2.3) over (1.12.16-2ubuntu2.1) ...
+Preparing to unpack .../2-libapparmor1_2.13.3-7ubuntu5.2_amd64.deb ...
+Unpacking libapparmor1:amd64 (2.13.3-7ubuntu5.2) over (2.13.3-7ubuntu5.1) ...
+Preparing to unpack .../3-libexpat1_2.2.9-1ubuntu0.6_amd64.deb ...
+Unpacking libexpat1:amd64 (2.2.9-1ubuntu0.6) over (2.2.9-1ubuntu0.4) ...
+Preparing to unpack .../4-libpam-systemd_245.4-4ubuntu3.21_amd64.deb ...
+Unpacking libpam-systemd:amd64 (245.4-4ubuntu3.21) over (245.4-4ubuntu3.15) ...
+Preparing to unpack .../5-libgmp10_2%3a6.2.0+dfsg-4ubuntu0.1_amd64.deb ...
+Unpacking libgmp10:amd64 (2:6.2.0+dfsg-4ubuntu0.1) over (2:6.2.0+dfsg-4) ...
+Setting up libgmp10:amd64 (2:6.2.0+dfsg-4ubuntu0.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../libgnutls30_3.6.13-2ubuntu1.8_amd64.deb ...
+Unpacking libgnutls30:amd64 (3.6.13-2ubuntu1.8) over (3.6.13-2ubuntu1.6) ...
+Setting up libgnutls30:amd64 (3.6.13-2ubuntu1.8) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../libxtables12_1.8.4-3ubuntu2.1_amd64.deb ...
+Unpacking libxtables12:amd64 (1.8.4-3ubuntu2.1) over (1.8.4-3ubuntu2) ...
+Preparing to unpack .../iptables_1.8.4-3ubuntu2.1_amd64.deb ...
+Unpacking iptables (1.8.4-3ubuntu2.1) over (1.8.4-3ubuntu2) ...
+Preparing to unpack .../libip6tc2_1.8.4-3ubuntu2.1_amd64.deb ...
+Unpacking libip6tc2:amd64 (1.8.4-3ubuntu2.1) over (1.8.4-3ubuntu2) ...
+Preparing to unpack .../libip4tc2_1.8.4-3ubuntu2.1_amd64.deb ...
+Unpacking libip4tc2:amd64 (1.8.4-3ubuntu2.1) over (1.8.4-3ubuntu2) ...
+Preparing to unpack .../libpcre2-8-0_10.34-7ubuntu0.1_amd64.deb ...
+Unpacking libpcre2-8-0:amd64 (10.34-7ubuntu0.1) over (10.34-7) ...
+Setting up libpcre2-8-0:amd64 (10.34-7ubuntu0.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../systemd_245.4-4ubuntu3.21_amd64.deb ...
+Unpacking systemd (245.4-4ubuntu3.21) over (245.4-4ubuntu3.15) ...
+Preparing to unpack .../libsystemd0_245.4-4ubuntu3.21_amd64.deb ...
+Unpacking libsystemd0:amd64 (245.4-4ubuntu3.21) over (245.4-4ubuntu3.15) ...
+Setting up libsystemd0:amd64 (245.4-4ubuntu3.21) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../libapt-pkg6.0_2.0.9_amd64.deb ...
+Unpacking libapt-pkg6.0:amd64 (2.0.9) over (2.0.6) ...
+Setting up libapt-pkg6.0:amd64 (2.0.9) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63795 files and directories currently installed.)
+Preparing to unpack .../archives/apt_2.0.9_amd64.deb ...
+Unpacking apt (2.0.9) over (2.0.6) ...
+Setting up apt (2.0.9) ...
+Removing obsolete conffile /etc/kernel/postinst.d/apt-auto-removal ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63794 files and directories currently installed.)
+Preparing to unpack .../00-apt-utils_2.0.9_amd64.deb ...
+Unpacking apt-utils (2.0.9) over (2.0.6) ...
+Preparing to unpack .../01-libksba8_1.3.5-2ubuntu0.20.04.2_amd64.deb ...
+Unpacking libksba8:amd64 (1.3.5-2ubuntu0.20.04.2) over (1.3.5-2) ...
+Preparing to unpack .../02-gpg-wks-client_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking gpg-wks-client (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../03-dirmngr_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking dirmngr (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../04-gpg-wks-server_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking gpg-wks-server (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../05-gnupg-utils_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking gnupg-utils (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../06-gpg-agent_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking gpg-agent (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../07-gpg_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking gpg (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../08-gpgconf_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking gpgconf (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../09-gnupg-l10n_2.2.19-3ubuntu2.2_all.deb ...
+Unpacking gnupg-l10n (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../10-gnupg_2.2.19-3ubuntu2.2_all.deb ...
+Unpacking gnupg (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../11-gpgsm_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking gpgsm (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Preparing to unpack .../12-libsqlite3-0_3.31.1-4ubuntu0.5_amd64.deb ...
+Unpacking libsqlite3-0:amd64 (3.31.1-4ubuntu0.5) over (3.31.1-4ubuntu0.2) ...
+Preparing to unpack .../13-libcom-err2_1.45.5-2ubuntu1.1_amd64.deb ...
+Unpacking libcom-err2:amd64 (1.45.5-2ubuntu1.1) over (1.45.5-2ubuntu1) ...
+Preparing to unpack .../14-libroken18-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libroken18-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../15-libasn1-8-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libasn1-8-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../16-libheimbase1-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libheimbase1-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../17-libhcrypto4-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libhcrypto4-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../18-libwind0-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libwind0-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../19-libhx509-5-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libhx509-5-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../20-libkrb5-26-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libkrb5-26-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../21-libheimntlm0-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libheimntlm0-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../22-libgssapi3-heimdal_7.7.0+dfsg-1ubuntu1.4_amd64.deb ...
+Unpacking libgssapi3-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) over (7.7.0+dfsg-1ubuntu1) ...
+Preparing to unpack .../23-libldap-common_2.4.49+dfsg-2ubuntu1.9_all.deb ...
+Unpacking libldap-common (2.4.49+dfsg-2ubuntu1.9) over (2.4.49+dfsg-2ubuntu1.8) ...
+Preparing to unpack .../24-libldap-2.4-2_2.4.49+dfsg-2ubuntu1.9_amd64.deb ...
+Unpacking libldap-2.4-2:amd64 (2.4.49+dfsg-2ubuntu1.9) over (2.4.49+dfsg-2ubuntu1.8) ...
+Preparing to unpack .../25-gpgv_2.2.19-3ubuntu2.2_amd64.deb ...
+Unpacking gpgv (2.2.19-3ubuntu2.2) over (2.2.19-3ubuntu2.1) ...
+Setting up gpgv (2.2.19-3ubuntu2.2) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63794 files and directories currently installed.)
+Preparing to unpack .../logsave_1.45.5-2ubuntu1.1_amd64.deb ...
+Unpacking logsave (1.45.5-2ubuntu1.1) over (1.45.5-2ubuntu1) ...
+Preparing to unpack .../libext2fs2_1.45.5-2ubuntu1.1_amd64.deb ...
+Unpacking libext2fs2:amd64 (1.45.5-2ubuntu1.1) over (1.45.5-2ubuntu1) ...
+Setting up libcom-err2:amd64 (1.45.5-2ubuntu1.1) ...
+Setting up libext2fs2:amd64 (1.45.5-2ubuntu1.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63794 files and directories currently installed.)
+Preparing to unpack .../0-e2fsprogs_1.45.5-2ubuntu1.1_amd64.deb ...
+Unpacking e2fsprogs (1.45.5-2ubuntu1.1) over (1.45.5-2ubuntu1) ...
+Preparing to unpack .../1-libpython3.8_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
+Unpacking libpython3.8:amd64 (3.8.10-0ubuntu1~20.04.8) over (3.8.10-0ubuntu1~20.04.4) ...
+Preparing to unpack .../2-python3.8_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
+Unpacking python3.8 (3.8.10-0ubuntu1~20.04.8) over (3.8.10-0ubuntu1~20.04.4) ...
+Preparing to unpack .../3-libpython3.8-stdlib_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
+Unpacking libpython3.8-stdlib:amd64 (3.8.10-0ubuntu1~20.04.8) over (3.8.10-0ubuntu1~20.04.4) ...
+Preparing to unpack .../4-python3.8-minimal_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
+Unpacking python3.8-minimal (3.8.10-0ubuntu1~20.04.8) over (3.8.10-0ubuntu1~20.04.4) ...
+Preparing to unpack .../5-libpython3.8-minimal_3.8.10-0ubuntu1~20.04.8_amd64.deb ...
+Unpacking libpython3.8-minimal:amd64 (3.8.10-0ubuntu1~20.04.8) over (3.8.10-0ubuntu1~20.04.4) ...
+Preparing to unpack .../6-libncurses6_6.2-0ubuntu2.1_amd64.deb ...
+Unpacking libncurses6:amd64 (6.2-0ubuntu2.1) over (6.2-0ubuntu2) ...
+Preparing to unpack .../7-libncursesw6_6.2-0ubuntu2.1_amd64.deb ...
+Unpacking libncursesw6:amd64 (6.2-0ubuntu2.1) over (6.2-0ubuntu2) ...
+Preparing to unpack .../8-libtinfo6_6.2-0ubuntu2.1_amd64.deb ...
+Unpacking libtinfo6:amd64 (6.2-0ubuntu2.1) over (6.2-0ubuntu2) ...
+Setting up libtinfo6:amd64 (6.2-0ubuntu2.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63794 files and directories currently installed.)
+Preparing to unpack .../00-rsyslog_8.2001.0-1ubuntu1.3_amd64.deb ...
+Unpacking rsyslog (8.2001.0-1ubuntu1.3) over (8.2001.0-1ubuntu1.1) ...
+Preparing to unpack .../01-ntfs-3g_1%3a2017.3.23AR.3-3ubuntu1.3_amd64.deb ...
+Unpacking ntfs-3g (1:2017.3.23AR.3-3ubuntu1.3) over (1:2017.3.23AR.3-3ubuntu1.1) ...
+Preparing to unpack .../02-libntfs-3g883_1%3a2017.3.23AR.3-3ubuntu1.3_amd64.deb ...
+Unpacking libntfs-3g883 (1:2017.3.23AR.3-3ubuntu1.3) over (1:2017.3.23AR.3-3ubuntu1.1) ...
+Preparing to unpack .../03-rsync_3.1.3-8ubuntu0.5_amd64.deb ...
+Unpacking rsync (3.1.3-8ubuntu0.5) over (3.1.3-8ubuntu0.3) ...
+Preparing to unpack .../04-open-iscsi_2.0.874-7.1ubuntu6.3_amd64.deb ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Unpacking open-iscsi (2.0.874-7.1ubuntu6.3) over (2.0.874-7.1ubuntu6.2) ...
+Preparing to unpack .../05-python-apt-common_2.0.1ubuntu0.20.04.1_all.deb ...
+Unpacking python-apt-common (2.0.1ubuntu0.20.04.1) over (2.0.0ubuntu0.20.04.7) ...
+Preparing to unpack .../06-python3-apt_2.0.1ubuntu0.20.04.1_amd64.deb ...
+Unpacking python3-apt (2.0.1ubuntu0.20.04.1) over (2.0.0ubuntu0.20.04.7) ...
+Preparing to unpack .../07-ubuntu-release-upgrader-core_1%3a20.04.41_all.deb ...
+Unpacking ubuntu-release-upgrader-core (1:20.04.41) over (1:20.04.37) ...
+Preparing to unpack .../08-update-manager-core_1%3a20.04.10.11_all.deb ...
+Unpacking update-manager-core (1:20.04.10.11) over (1:20.04.10.10) ...
+Preparing to unpack .../09-python3-distupgrade_1%3a20.04.41_all.deb ...
+Unpacking python3-distupgrade (1:20.04.41) over (1:20.04.37) ...
+Preparing to unpack .../10-python3-update-manager_1%3a20.04.10.11_all.deb ...
+Unpacking python3-update-manager (1:20.04.10.11) over (1:20.04.10.10) ...
+Preparing to unpack .../11-openssl_1.1.1f-1ubuntu2.19_amd64.deb ...
+Unpacking openssl (1.1.1f-1ubuntu2.19) over (1.1.1f-1ubuntu2.12) ...
+Preparing to unpack .../12-ca-certificates_20230311ubuntu0.20.04.1_all.deb ...
+Unpacking ca-certificates (20230311ubuntu0.20.04.1) over (20210119~20.04.2) ...
+Preparing to unpack .../13-distro-info-data_0.43ubuntu1.13_all.deb ...
+Unpacking distro-info-data (0.43ubuntu1.13) over (0.43ubuntu1.9) ...
+Preparing to unpack .../14-python3-setuptools_45.2.0-1ubuntu0.1_all.deb ...
+Unpacking python3-setuptools (45.2.0-1ubuntu0.1) over (45.2.0-1) ...
+Preparing to unpack .../15-python3-pkg-resources_45.2.0-1ubuntu0.1_all.deb ...
+Unpacking python3-pkg-resources (45.2.0-1ubuntu0.1) over (45.2.0-1) ...
+Preparing to unpack .../16-ubuntu-advantage-tools_27.14.4~20.04_amd64.deb ...
+Unpacking ubuntu-advantage-tools (27.14.4~20.04) over (27.7~20.04.1) ...
+Preparing to unpack .../17-update-notifier-common_3.192.30.17_all.deb ...
+Unpacking update-notifier-common (3.192.30.17) over (3.192.30.10) ...
+Preparing to unpack .../18-libxml2_2.9.10+dfsg-5ubuntu0.20.04.6_amd64.deb ...
+Unpacking libxml2:amd64 (2.9.10+dfsg-5ubuntu0.20.04.6) over (2.9.10+dfsg-5ubuntu0.20.04.2) ...
+Preparing to unpack .../19-open-vm-tools_2%3a11.3.0-2ubuntu0~ubuntu20.04.4_amd64.deb ...
+Unpacking open-vm-tools (2:11.3.0-2ubuntu0~ubuntu20.04.4) over (2:11.0.5-4) ...
+Preparing to unpack .../20-libpcre3_2%3a8.39-12ubuntu0.1_amd64.deb ...
+Unpacking libpcre3:amd64 (2:8.39-12ubuntu0.1) over (2:8.39-12build1) ...
+Setting up libpcre3:amd64 (2:8.39-12ubuntu0.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63929 files and directories currently installed.)
+Preparing to unpack .../libsepol1_3.0-1ubuntu0.1_amd64.deb ...
+Unpacking libsepol1:amd64 (3.0-1ubuntu0.1) over (3.0-1) ...
+Setting up libsepol1:amd64 (3.0-1ubuntu0.1) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63929 files and directories currently installed.)
+Preparing to unpack .../passwd_1%3a4.8.1-1ubuntu5.20.04.4_amd64.deb ...
+Unpacking passwd (1:4.8.1-1ubuntu5.20.04.4) over (1:4.8.1-1ubuntu5.20.04.1) ...
+Setting up passwd (1:4.8.1-1ubuntu5.20.04.4) ...
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 63929 files and directories currently installed.)
+Preparing to unpack .../00-libss2_1.45.5-2ubuntu1.1_amd64.deb ...
+Unpacking libss2:amd64 (1.45.5-2ubuntu1.1) over (1.45.5-2ubuntu1) ...
+Preparing to unpack .../01-isc-dhcp-client_4.4.1-2.1ubuntu5.20.04.5_amd64.deb ...
+Unpacking isc-dhcp-client (4.4.1-2.1ubuntu5.20.04.5) over (4.4.1-2.1ubuntu5.20.04.2) ...
+Preparing to unpack .../02-isc-dhcp-common_4.4.1-2.1ubuntu5.20.04.5_amd64.deb ...
+Unpacking isc-dhcp-common (4.4.1-2.1ubuntu5.20.04.5) over (4.4.1-2.1ubuntu5.20.04.2) ...
+Preparing to unpack .../03-netplan.io_0.104-0ubuntu2~20.04.2_amd64.deb ...
+Unpacking netplan.io (0.104-0ubuntu2~20.04.2) over (0.104-0ubuntu2~20.04.1) ...
+Preparing to unpack .../04-libnetplan0_0.104-0ubuntu2~20.04.2_amd64.deb ...
+Unpacking libnetplan0:amd64 (0.104-0ubuntu2~20.04.2) over (0.104-0ubuntu2~20.04.1) ...
+Preparing to unpack .../05-networkd-dispatcher_2.1-2~ubuntu20.04.3_all.deb ...
+Unpacking networkd-dispatcher (2.1-2~ubuntu20.04.3) over (2.1-2~ubuntu20.04.1) ...
+Preparing to unpack .../06-sudo_1.8.31-1ubuntu1.5_amd64.deb ...
+Unpacking sudo (1.8.31-1ubuntu1.5) over (1.8.31-1ubuntu1.2) ...
+Preparing to unpack .../07-tzdata_2023c-0ubuntu0.20.04.2_all.deb ...
+Unpacking tzdata (2023c-0ubuntu0.20.04.2) over (2022a-0ubuntu0.20.04) ...
+Preparing to unpack .../08-vim_2%3a8.1.2269-1ubuntu5.14_amd64.deb ...
+Unpacking vim (2:8.1.2269-1ubuntu5.14) over (2:8.1.2269-1ubuntu5.7) ...
+Preparing to unpack .../09-vim-tiny_2%3a8.1.2269-1ubuntu5.14_amd64.deb ...
+Unpacking vim-tiny (2:8.1.2269-1ubuntu5.14) over (2:8.1.2269-1ubuntu5.7) ...
+Preparing to unpack .../10-vim-runtime_2%3a8.1.2269-1ubuntu5.14_all.deb ...
+Unpacking vim-runtime (2:8.1.2269-1ubuntu5.14) over (2:8.1.2269-1ubuntu5.7) ...
+Preparing to unpack .../11-xxd_2%3a8.1.2269-1ubuntu5.14_amd64.deb ...
+Unpacking xxd (2:8.1.2269-1ubuntu5.14) over (2:8.1.2269-1ubuntu5.7) ...
+Preparing to unpack .../12-vim-common_2%3a8.1.2269-1ubuntu5.14_all.deb ...
+Unpacking vim-common (2:8.1.2269-1ubuntu5.14) over (2:8.1.2269-1ubuntu5.7) ...
+Preparing to unpack .../13-xz-utils_5.2.4-1ubuntu1.1_amd64.deb ...
+Unpacking xz-utils (5.2.4-1ubuntu1.1) over (5.2.4-1ubuntu1) ...
+Preparing to unpack .../14-apparmor_2.13.3-7ubuntu5.2_amd64.deb ...
+Unpacking apparmor (2.13.3-7ubuntu5.2) over (2.13.3-7ubuntu5.1) ...
+Preparing to unpack .../15-libgssapi-krb5-2_1.17-6ubuntu4.3_amd64.deb ...
+Unpacking libgssapi-krb5-2:amd64 (1.17-6ubuntu4.3) over (1.17-6ubuntu4.1) ...
+Preparing to unpack .../16-libkrb5-3_1.17-6ubuntu4.3_amd64.deb ...
+Unpacking libkrb5-3:amd64 (1.17-6ubuntu4.3) over (1.17-6ubuntu4.1) ...
+Preparing to unpack .../17-libkrb5support0_1.17-6ubuntu4.3_amd64.deb ...
+Unpacking libkrb5support0:amd64 (1.17-6ubuntu4.3) over (1.17-6ubuntu4.1) ...
+Preparing to unpack .../18-libk5crypto3_1.17-6ubuntu4.3_amd64.deb ...
+Unpacking libk5crypto3:amd64 (1.17-6ubuntu4.3) over (1.17-6ubuntu4.1) ...
+Preparing to unpack .../19-libkeyutils1_1.6-6ubuntu1.1_amd64.deb ...
+Unpacking libkeyutils1:amd64 (1.6-6ubuntu1.1) over (1.6-6ubuntu1) ...
+Preparing to unpack .../20-bind9-dnsutils_1%3a9.16.1-0ubuntu2.14_amd64.deb ...
+Unpacking bind9-dnsutils (1:9.16.1-0ubuntu2.14) over (1:9.16.1-0ubuntu2.10) ...
+Preparing to unpack .../21-bind9-libs_1%3a9.16.1-0ubuntu2.14_amd64.deb ...
+Unpacking bind9-libs:amd64 (1:9.16.1-0ubuntu2.14) over (1:9.16.1-0ubuntu2.10) ...
+Preparing to unpack .../22-bind9-host_1%3a9.16.1-0ubuntu2.14_amd64.deb ...
+Unpacking bind9-host (1:9.16.1-0ubuntu2.14) over (1:9.16.1-0ubuntu2.10) ...
+Preparing to unpack .../23-krb5-locales_1.17-6ubuntu4.3_all.deb ...
+Unpacking krb5-locales (1.17-6ubuntu4.3) over (1.17-6ubuntu4.1) ...
+Preparing to unpack .../24-openssh-sftp-server_1%3a8.2p1-4ubuntu0.7_amd64.deb ...
+Unpacking openssh-sftp-server (1:8.2p1-4ubuntu0.7) over (1:8.2p1-4ubuntu0.4) ...
+Preparing to unpack .../25-openssh-server_1%3a8.2p1-4ubuntu0.7_amd64.deb ...
+Unpacking openssh-server (1:8.2p1-4ubuntu0.7) over (1:8.2p1-4ubuntu0.4) ...
+Preparing to unpack .../26-git-man_1%3a2.25.1-1ubuntu3.11_all.deb ...
+Unpacking git-man (1:2.25.1-1ubuntu3.11) over (1:2.25.1-1ubuntu3.2) ...
+Preparing to unpack .../27-libnghttp2-14_1.40.0-1ubuntu0.1_amd64.deb ...
+Unpacking libnghttp2-14:amd64 (1.40.0-1ubuntu0.1) over (1.40.0-1build1) ...
+Preparing to unpack .../28-libssh-4_0.9.3-2ubuntu2.3_amd64.deb ...
+Unpacking libssh-4:amd64 (0.9.3-2ubuntu2.3) over (0.9.3-2ubuntu2.2) ...
+Preparing to unpack .../29-libcurl3-gnutls_7.68.0-1ubuntu2.18_amd64.deb ...
+Unpacking libcurl3-gnutls:amd64 (7.68.0-1ubuntu2.18) over (7.68.0-1ubuntu2.7) ...
+Preparing to unpack .../30-git_1%3a2.25.1-1ubuntu3.11_amd64.deb ...
+Unpacking git (1:2.25.1-1ubuntu3.11) over (1:2.25.1-1ubuntu3.2) ...
+Preparing to unpack .../31-openssh-client_1%3a8.2p1-4ubuntu0.7_amd64.deb ...
+Unpacking openssh-client (1:8.2p1-4ubuntu0.7) over (1:8.2p1-4ubuntu0.4) ...
+Preparing to unpack .../32-tcpdump_4.9.3-4ubuntu0.2_amd64.deb ...
+Unpacking tcpdump (4.9.3-4ubuntu0.2) over (4.9.3-4ubuntu0.1) ...
+Preparing to unpack .../33-grub-pc_2.04-1ubuntu26.17_amd64.deb ...
+Unpacking grub-pc (2.04-1ubuntu26.17) over (2.04-1ubuntu26.15) ...
+Preparing to unpack .../34-grub2-common_2.04-1ubuntu26.17_amd64.deb ...
+Unpacking grub2-common (2.04-1ubuntu26.17) over (2.04-1ubuntu26.15) ...
+Preparing to unpack .../35-grub-pc-bin_2.04-1ubuntu26.17_amd64.deb ...
+Unpacking grub-pc-bin (2.04-1ubuntu26.17) over (2.04-1ubuntu26.15) ...
+Preparing to unpack .../36-libfreetype6_2.10.1-2ubuntu0.3_amd64.deb ...
+Unpacking libfreetype6:amd64 (2.10.1-2ubuntu0.3) over (2.10.1-2ubuntu0.1) ...
+Preparing to unpack .../37-grub-common_2.04-1ubuntu26.17_amd64.deb ...
+Unpacking grub-common (2.04-1ubuntu26.17) over (2.04-1ubuntu26.15) ...
+Preparing to unpack .../38-python3-problem-report_2.20.11-0ubuntu27.27_all.deb ...
+Unpacking python3-problem-report (2.20.11-0ubuntu27.27) over (2.20.11-0ubuntu27.21) ...
+Preparing to unpack .../39-python3-apport_2.20.11-0ubuntu27.27_all.deb ...
+Unpacking python3-apport (2.20.11-0ubuntu27.27) over (2.20.11-0ubuntu27.21) ...
+Preparing to unpack .../40-apport_2.20.11-0ubuntu27.27_all.deb ...
+Unpacking apport (2.20.11-0ubuntu27.27) over (2.20.11-0ubuntu27.21) ...
+Preparing to unpack .../41-bolt_0.9.1-2~ubuntu20.04.2_amd64.deb ...
+Unpacking bolt (0.9.1-2~ubuntu20.04.2) over (0.9.1-2~ubuntu20.04.1) ...
+Preparing to unpack .../42-curl_7.68.0-1ubuntu2.18_amd64.deb ...
+Unpacking curl (7.68.0-1ubuntu2.18) over (7.68.0-1ubuntu2.7) ...
+Preparing to unpack .../43-libcurl4_7.68.0-1ubuntu2.18_amd64.deb ...
+Unpacking libcurl4:amd64 (7.68.0-1ubuntu2.18) over (7.68.0-1ubuntu2.7) ...
+Preparing to unpack .../44-dbus-user-session_1.12.16-2ubuntu2.3_amd64.deb ...
+Unpacking dbus-user-session (1.12.16-2ubuntu2.3) over (1.12.16-2ubuntu2.1) ...
+Selecting previously unselected package libxmlb2:amd64.
+Preparing to unpack .../45-libxmlb2_0.3.6-2build1~20.04.1_amd64.deb ...
+Unpacking libxmlb2:amd64 (0.3.6-2build1~20.04.1) ...
+Preparing to unpack .../46-fwupd_1.7.9-1~20.04.1_amd64.deb ...
+Unpacking fwupd (1.7.9-1~20.04.1) over (1.7.5-3~20.04.1) ...
+Preparing to unpack .../47-libfwupdplugin5_1.7.9-1~20.04.1_amd64.deb ...
+Unpacking libfwupdplugin5:amd64 (1.7.9-1~20.04.1) over (1.7.5-3~20.04.1) ...
+Preparing to unpack .../48-libfwupd2_1.7.9-1~20.04.1_amd64.deb ...
+Unpacking libfwupd2:amd64 (1.7.9-1~20.04.1) over (1.7.5-3~20.04.1) ...
+Preparing to unpack .../49-libmbim-proxy_1.26.2-1~ubuntu20.04.1_amd64.deb ...
+Unpacking libmbim-proxy (1.26.2-1~ubuntu20.04.1) over (1.24.8-1~20.04) ...
+Preparing to unpack .../50-libmbim-glib4_1.26.2-1~ubuntu20.04.1_amd64.deb ...
+Unpacking libmbim-glib4:amd64 (1.26.2-1~ubuntu20.04.1) over (1.24.8-1~20.04) ...
+Preparing to unpack .../51-libmm-glib0_1.18.6-1~ubuntu20.04.1_amd64.deb ...
+Unpacking libmm-glib0:amd64 (1.18.6-1~ubuntu20.04.1) over (1.16.6-2~20.04.1) ...
+Preparing to unpack .../52-libqmi-proxy_1.30.4-1~ubuntu20.04.1_amd64.deb ...
+Unpacking libqmi-proxy (1.30.4-1~ubuntu20.04.1) over (1.28.6-1~20.04.1) ...
+Preparing to unpack .../53-libqmi-glib5_1.30.4-1~ubuntu20.04.1_amd64.deb ...
+Unpacking libqmi-glib5:amd64 (1.30.4-1~ubuntu20.04.1) over (1.28.6-1~20.04.1) ...
+Preparing to unpack .../54-libtss2-esys0_2.3.2-1ubuntu0.20.04.1_amd64.deb ...
+Unpacking libtss2-esys0 (2.3.2-1ubuntu0.20.04.1) over (2.3.2-1) ...
+Preparing to unpack .../55-fwupd-signed_1.51~20.04.1+1.2-3ubuntu0.2_amd64.deb ...
+Unpacking fwupd-signed (1.51~20.04.1+1.2-3ubuntu0.2) over (1.27.1ubuntu7+1.2-2~20.04.1) ...
+Preparing to unpack .../56-grub-efi-amd64-signed_1.187.3~20.04.1+2.06-2ubuntu14.1_amd64.deb ...
+Unpacking grub-efi-amd64-signed (1.187.3~20.04.1+2.06-2ubuntu14.1) over (1.167.2+2.04-1ubuntu44.2) ...
+Preparing to unpack .../57-grub-efi-amd64-bin_2.06-2ubuntu14.1_amd64.deb ...
+Unpacking grub-efi-amd64-bin (2.06-2ubuntu14.1) over (2.04-1ubuntu44.2) ...
+Preparing to unpack .../58-klibc-utils_2.0.7-1ubuntu5.1_amd64.deb ...
+Unpacking klibc-utils (2.0.7-1ubuntu5.1) over (2.0.7-1ubuntu5) ...
+Preparing to unpack .../59-libklibc_2.0.7-1ubuntu5.1_amd64.deb ...
+Unpacking libklibc:amd64 (2.0.7-1ubuntu5.1) over (2.0.7-1ubuntu5) ...
+Preparing to unpack .../60-libgstreamer1.0-0_1.16.3-0ubuntu1.1_amd64.deb ...
+Unpacking libgstreamer1.0-0:amd64 (1.16.3-0ubuntu1.1) over (1.16.2-2) ...
+Preparing to unpack .../61-libnss3_2%3a3.49.1-1ubuntu1.9_amd64.deb ...
+Unpacking libnss3:amd64 (2:3.49.1-1ubuntu1.9) over (2:3.49.1-1ubuntu1.6) ...
+Preparing to unpack .../62-libtdb1_1.4.5-0ubuntu0.20.04.1_amd64.deb ...
+Unpacking libtdb1:amd64 (1.4.5-0ubuntu0.20.04.1) over (1.4.3-0ubuntu0.20.04.1) ...
+Preparing to unpack .../63-libunwind8_1.2.1-9ubuntu0.1_amd64.deb ...
+Unpacking libunwind8:amd64 (1.2.1-9ubuntu0.1) over (1.2.1-9build1) ...
+Preparing to unpack .../64-libxslt1.1_1.1.34-4ubuntu0.20.04.1_amd64.deb ...
+Unpacking libxslt1.1:amd64 (1.1.34-4ubuntu0.20.04.1) over (1.1.34-4) ...
+Selecting previously unselected package linux-headers-5.4.0-150.
+Preparing to unpack .../65-linux-headers-5.4.0-150_5.4.0-150.167_all.deb ...
+Unpacking linux-headers-5.4.0-150 (5.4.0-150.167) ...
+Selecting previously unselected package linux-headers-5.4.0-150-generic.
+Preparing to unpack .../66-linux-headers-5.4.0-150-generic_5.4.0-150.167_amd64.deb ...
+Unpacking linux-headers-5.4.0-150-generic (5.4.0-150.167) ...
+Selecting previously unselected package linux-modules-5.4.0-150-generic.
+Preparing to unpack .../67-linux-modules-5.4.0-150-generic_5.4.0-150.167_amd64.deb ...
+Unpacking linux-modules-5.4.0-150-generic (5.4.0-150.167) ...
+Selecting previously unselected package linux-image-5.4.0-150-generic.
+Preparing to unpack .../68-linux-image-5.4.0-150-generic_5.4.0-150.167_amd64.deb ...
+Unpacking linux-image-5.4.0-150-generic (5.4.0-150.167) ...
+Preparing to unpack .../69-linux-virtual_5.4.0.150.148_amd64.deb ...
+Unpacking linux-virtual (5.4.0.150.148) over (5.4.0.107.111) ...
+Preparing to unpack .../70-linux-image-virtual_5.4.0.150.148_amd64.deb ...
+Unpacking linux-image-virtual (5.4.0.150.148) over (5.4.0.107.111) ...
+Preparing to unpack .../71-linux-headers-virtual_5.4.0.150.148_amd64.deb ...
+Unpacking linux-headers-virtual (5.4.0.150.148) over (5.4.0.107.111) ...
+Preparing to unpack .../72-linux-headers-generic_5.4.0.150.148_amd64.deb ...
+Unpacking linux-headers-generic (5.4.0.150.148) over (5.4.0.107.111) ...
+Preparing to unpack .../73-modemmanager_1.18.6-1~ubuntu20.04.1_amd64.deb ...
+Unpacking modemmanager (1.18.6-1~ubuntu20.04.1) over (1.16.6-2~20.04.1) ...
+Preparing to unpack .../74-mokutil_0.6.0-2~20.04.1_amd64.deb ...
+Unpacking mokutil (0.6.0-2~20.04.1) over (0.3.0+1538710437.fb6250f-1) ...
+Preparing to unpack .../75-ncurses-term_6.2-0ubuntu2.1_all.deb ...
+Unpacking ncurses-term (6.2-0ubuntu2.1) over (6.2-0ubuntu2) ...
+Preparing to unpack .../76-python3-jwt_1.7.1-2ubuntu2.1_all.deb ...
+Unpacking python3-jwt (1.7.1-2ubuntu2.1) over (1.7.1-2ubuntu2) ...
+Preparing to unpack .../77-software-properties-common_0.99.9.11_all.deb ...
+Unpacking software-properties-common (0.99.9.11) over (0.99.9.8) ...
+Preparing to unpack .../78-python3-software-properties_0.99.9.11_all.deb ...
+Unpacking python3-software-properties (0.99.9.11) over (0.99.9.8) ...
+Preparing to unpack .../79-python3-urllib3_1.25.8-2ubuntu0.2_all.deb ...
+Unpacking python3-urllib3 (1.25.8-2ubuntu0.2) over (1.25.8-2ubuntu0.1) ...
+Preparing to unpack .../80-sbsigntool_0.9.2-2ubuntu1.1_amd64.deb ...
+Unpacking sbsigntool (0.9.2-2ubuntu1.1) over (0.9.2-2ubuntu1) ...
+Preparing to unpack .../81-shim-signed_1.40.9+15.7-0ubuntu1_amd64.deb ...
+Unpacking shim-signed (1.40.9+15.7-0ubuntu1) over (1.40.7+15.4-0ubuntu9) ...
+Preparing to unpack .../82-snapd_2.58+20.04.1_amd64.deb ...
+Unpacking snapd (2.58+20.04.1) over (2.54.3+20.04.1ubuntu0.2) ...
+Preparing to unpack .../83-sosreport_4.4-1ubuntu0.20.04.1_amd64.deb ...
+Unpacking sosreport (4.4-1ubuntu0.20.04.1) over (4.3-1ubuntu0.20.04.1) ...
+Preparing to unpack .../84-tmux_3.0a-2ubuntu0.4_amd64.deb ...
+Unpacking tmux (3.0a-2ubuntu0.4) over (3.0a-2ubuntu0.3) ...
+Preparing to unpack .../85-unattended-upgrades_2.3ubuntu0.3_all.deb ...
+Unpacking unattended-upgrades (2.3ubuntu0.3) over (2.3ubuntu0.1) ...
+Preparing to unpack .../86-cloud-init_23.1.2-0ubuntu0~20.04.2_all.deb ...
+Unpacking cloud-init (23.1.2-0ubuntu0~20.04.2) over (22.1-14-g2e17a0d6-0ubuntu1~20.04.3) ...
+Preparing to unpack .../87-kpartx_0.8.3-1ubuntu2.1_amd64.deb ...
+Unpacking kpartx (0.8.3-1ubuntu2.1) over (0.8.3-1ubuntu2) ...
+Preparing to unpack .../88-multipath-tools_0.8.3-1ubuntu2.1_amd64.deb ...
+Warning: Stopping multipath-tools.service, but it can still be activated by:
+  multipathd.socket
+Unpacking multipath-tools (0.8.3-1ubuntu2.1) over (0.8.3-1ubuntu2) ...
+Setting up python3-pkg-resources (45.2.0-1ubuntu0.1) ...
+Setting up libip4tc2:amd64 (1.8.4-3ubuntu2.1) ...
+Setting up libksba8:amd64 (1.3.5-2ubuntu0.20.04.2) ...
+Setting up libexpat1:amd64 (2.2.9-1ubuntu0.6) ...
+Setting up motd-news-config (11ubuntu5.7) ...
+Setting up libkeyutils1:amd64 (1.6-6ubuntu1.1) ...
+Setting up libapparmor1:amd64 (2.13.3-7ubuntu5.2) ...
+Setting up apt-utils (2.0.9) ...
+Setting up perl-modules-5.30 (5.30.0-9ubuntu0.4) ...
+Setting up python3-setuptools (45.2.0-1ubuntu0.1) ...
+Setting up python3-jwt (1.7.1-2ubuntu2.1) ...
+Setting up python3-problem-report (2.20.11-0ubuntu27.27) ...
+Setting up libip6tc2:amd64 (1.8.4-3ubuntu2.1) ...
+Setting up distro-info-data (0.43ubuntu1.13) ...
+Setting up libtdb1:amd64 (1.4.5-0ubuntu0.20.04.1) ...
+Setting up libssl1.1:amd64 (1.1.1f-1ubuntu2.19) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Setting up libxmlb2:amd64 (0.3.6-2build1~20.04.1) ...
+Setting up libsqlite3-0:amd64 (3.31.1-4ubuntu0.5) ...
+Setting up linux-modules-5.4.0-150-generic (5.4.0-150.167) ...
+Setting up rsyslog (8.2001.0-1ubuntu1.3) ...
+The user `syslog' is already a member of `adm'.
+The user `syslog' is already a member of `tty'.
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
+Setting up libnghttp2-14:amd64 (1.40.0-1ubuntu0.1) ...
+Setting up isc-dhcp-client (4.4.1-2.1ubuntu5.20.04.5) ...
+Installing new version of config file /etc/apparmor.d/sbin.dhclient ...
+Warning from /etc/apparmor.d/sbin.dhclient (/etc/apparmor.d/sbin.dhclient line 4): apparmor_parser: File '/etc/apparmor.d/sbin.dhclient' missing feature abi, falling back to default policy feature abi
+Setting up libnetplan0:amd64 (0.104-0ubuntu2~20.04.2) ...
+Setting up fwupd-signed (1.51~20.04.1+1.2-3ubuntu0.2) ...
+Setting up libntfs-3g883 (1:2017.3.23AR.3-3ubuntu1.3) ...
+Setting up krb5-locales (1.17-6ubuntu4.3) ...
+Setting up libnss3:amd64 (2:3.49.1-1ubuntu1.9) ...
+Setting up locales (2.31-0ubuntu9.9) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Generating locales (this might take a while)...
+  en_US.UTF-8... done
+Generation complete.
+Setting up libldap-common (2.4.49+dfsg-2ubuntu1.9) ...
+Setting up libunwind8:amd64 (1.2.1-9ubuntu0.1) ...
+Setting up xxd (2:8.1.2269-1ubuntu5.14) ...
+Setting up ntfs-3g (1:2017.3.23AR.3-3ubuntu1.3) ...
+Setting up libkrb5support0:amd64 (1.17-6ubuntu4.3) ...
+Setting up tzdata (2023c-0ubuntu0.20.04.2) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+
+Current default time zone: 'Etc/UTC'
+Local time is now:      Wed Jun  7 09:00:44 UTC 2023.
+Universal Time is now:  Wed Jun  7 09:00:44 UTC 2023.
+Run 'dpkg-reconfigure tzdata' if you wish to change it.
+
+Setting up apparmor (2.13.3-7ubuntu5.2) ...
+Installing new version of config file /etc/apparmor/parser.conf ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Reloading AppArmor profiles 
+Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
+Setting up libklibc:amd64 (2.0.7-1ubuntu5.1) ...
+Setting up vim-common (2:8.1.2269-1ubuntu5.14) ...
+Setting up libfreetype6:amd64 (2.10.1-2ubuntu0.3) ...
+Setting up gnupg-l10n (2.2.19-3ubuntu2.2) ...
+Setting up libncurses6:amd64 (6.2-0ubuntu2.1) ...
+Setting up libdbus-1-3:amd64 (1.12.16-2ubuntu2.3) ...
+Setting up dbus (1.12.16-2ubuntu2.3) ...
+A reboot is required to replace the running dbus-daemon.
+Please reboot the system when convenient.
+Setting up xz-utils (5.2.4-1ubuntu1.1) ...
+Setting up libss2:amd64 (1.45.5-2ubuntu1.1) ...
+Setting up sudo (1.8.31-1ubuntu1.5) ...
+Setting up libncursesw6:amd64 (6.2-0ubuntu2.1) ...
+Setting up libk5crypto3:amd64 (1.17-6ubuntu4.3) ...
+Setting up libxtables12:amd64 (1.8.4-3ubuntu2.1) ...
+Setting up logsave (1.45.5-2ubuntu1.1) ...
+Setting up libroken18-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up sosreport (4.4-1ubuntu0.20.04.1) ...
+Setting up python3-urllib3 (1.25.8-2ubuntu0.2) ...
+Setting up python-apt-common (2.0.1ubuntu0.20.04.1) ...
+Setting up libmm-glib0:amd64 (1.18.6-1~ubuntu20.04.1) ...
+Setting up gpgconf (2.2.19-3ubuntu2.2) ...
+Setting up libperl5.30:amd64 (5.30.0-9ubuntu0.4) ...
+Setting up git-man (1:2.25.1-1ubuntu3.11) ...
+Setting up isc-dhcp-common (4.4.1-2.1ubuntu5.20.04.5) ...
+Setting up libkrb5-3:amd64 (1.17-6ubuntu4.3) ...
+Setting up sbsigntool (0.9.2-2ubuntu1.1) ...
+Setting up vim-runtime (2:8.1.2269-1ubuntu5.14) ...
+Setting up klibc-utils (2.0.7-1ubuntu5.1) ...
+Setting up openssl (1.1.1f-1ubuntu2.19) ...
+Setting up libxml2:amd64 (2.9.10+dfsg-5ubuntu0.20.04.6) ...
+Setting up tmux (3.0a-2ubuntu0.4) ...
+Setting up gpg (2.2.19-3ubuntu2.2) ...
+Setting up libmbim-glib4:amd64 (1.26.2-1~ubuntu20.04.1) ...
+Setting up libgstreamer1.0-0:amd64 (1.16.3-0ubuntu1.1) ...
+Setcap worked! gst-ptp-helper is not suid!
+Setting up rsync (3.1.3-8ubuntu0.5) ...
+Setting up libkmod2:amd64 (27-1ubuntu2.1) ...
+Setting up bolt (0.9.1-2~ubuntu20.04.2) ...
+bolt.service is a disabled or a static unit not running, not starting it.
+Setting up libheimbase1-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up linux-headers-5.4.0-150 (5.4.0-150.167) ...
+Setting up gnupg-utils (2.2.19-3ubuntu2.2) ...
+Setting up ncurses-term (6.2-0ubuntu2.1) ...
+Setting up networkd-dispatcher (2.1-2~ubuntu20.04.3) ...
+Setting up tcpdump (4.9.3-4ubuntu0.2) ...
+Installing new version of config file /etc/apparmor.d/usr.sbin.tcpdump ...
+Setting up libpython3.8-minimal:amd64 (3.8.10-0ubuntu1~20.04.8) ...
+Setting up gpg-agent (2.2.19-3ubuntu2.2) ...
+Setting up mokutil (0.6.0-2~20.04.1) ...
+Setting up libtss2-esys0 (2.3.2-1ubuntu0.20.04.1) ...
+Setting up iptables (1.8.4-3ubuntu2.1) ...
+Setting up python3-apt (2.0.1ubuntu0.20.04.1) ...
+Setting up libasn1-8-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up gpgsm (2.2.19-3ubuntu2.2) ...
+Setting up e2fsprogs (1.45.5-2ubuntu1.1) ...
+update-initramfs: deferring update (trigger activated)
+e2scrub_all.service is a disabled or a static unit not running, not starting it.
+Setting up libmbim-proxy (1.26.2-1~ubuntu20.04.1) ...
+Setting up vim-tiny (2:8.1.2269-1ubuntu5.14) ...
+Setting up kmod (27-1ubuntu2.1) ...
+update-initramfs: deferring update (trigger activated)
+Setting up libhcrypto4-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up python3-apport (2.20.11-0ubuntu27.27) ...
+Setting up grub-common (2.04-1ubuntu26.17) ...
+Installing new version of config file /etc/grub.d/20_linux_xen ...
+update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
+Setting up ca-certificates (20230311ubuntu0.20.04.1) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Updating certificates in /etc/ssl/certs...
+rehash: warning: skipping ca-certificates.crt,it does not contain exactly one certificate or CRL
+26 added, 17 removed; done.
+Setting up unattended-upgrades (2.3ubuntu0.3) ...
+Installing new version of config file /etc/kernel/postinst.d/unattended-upgrades ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Setting up perl (5.30.0-9ubuntu0.4) ...
+Setting up libwind0-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up linux-headers-5.4.0-150-generic (5.4.0-150.167) ...
+Setting up python3-software-properties (0.99.9.11) ...
+Setting up libgssapi-krb5-2:amd64 (1.17-6ubuntu4.3) ...
+Setting up udev (245.4-4ubuntu3.21) ...
+update-initramfs: deferring update (trigger activated)
+Setting up libssh-4:amd64 (0.9.3-2ubuntu2.3) ...
+Setting up gpg-wks-server (2.2.19-3ubuntu2.2) ...
+Setting up python3.8-minimal (3.8.10-0ubuntu1~20.04.8) ...
+Setting up open-vm-tools (2:11.3.0-2ubuntu0~ubuntu20.04.4) ...
+Installing new version of config file /etc/vmware-tools/tools.conf.example ...
+Installing new version of config file /etc/vmware-tools/vgauth.conf ...
+Removing obsolete conffile /etc/vmware-tools/vm-support ...
+Setting up kpartx (0.8.3-1ubuntu2.1) ...
+Setting up libxslt1.1:amd64 (1.1.34-4ubuntu0.20.04.1) ...
+Setting up ubuntu-advantage-tools (27.14.4~20.04) ...
+Installing new version of config file /etc/apt/apt.conf.d/20apt-esm-hook.conf ...
+Installing new version of config file /etc/ubuntu-advantage/help_data.yaml ...
+Installing new version of config file /etc/ubuntu-advantage/uaclient.conf ...
+Installing new version of config file /etc/update-motd.d/91-contract-ua-esm-status ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Created symlink /etc/systemd/system/multi-user.target.wants/ubuntu-advantage.service → /lib/systemd/system/ubuntu-advantage.service.
+Removing obsolete conffile /etc/update-motd.d/88-esm-announce ...
+Setting up libpython3.8-stdlib:amd64 (3.8.10-0ubuntu1~20.04.8) ...
+Setting up grub-efi-amd64-bin (2.06-2ubuntu14.1) ...
+Setting up linux-image-5.4.0-150-generic (5.4.0-150.167) ...
+I: /boot/vmlinuz is now a symlink to vmlinuz-5.4.0-150-generic
+I: /boot/initrd.img is now a symlink to initrd.img-5.4.0-150-generic
+Setting up python3.8 (3.8.10-0ubuntu1~20.04.8) ...
+Setting up bind9-libs:amd64 (1:9.16.1-0ubuntu2.14) ...
+Setting up grub2-common (2.04-1ubuntu26.17) ...
+Setting up openssh-client (1:8.2p1-4ubuntu0.7) ...
+Setting up libhx509-5-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up libqmi-glib5:amd64 (1.30.4-1~ubuntu20.04.1) ...
+Setting up linux-headers-generic (5.4.0.150.148) ...
+Setting up grub-pc-bin (2.04-1ubuntu26.17) ...
+Setting up open-iscsi (2.0.874-7.1ubuntu6.3) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+grep: /lib/modules-load.d/open-iscsi.conf: No such file or directory
+Setting up software-properties-common (0.99.9.11) ...
+Setting up apport (2.20.11-0ubuntu27.27) ...
+Installing new version of config file /etc/init.d/apport ...
+apport-autoreport.service is a disabled or a static unit, not starting it.
+Setting up multipath-tools (0.8.3-1ubuntu2.1) ...
+Setting up grub-pc (2.04-1ubuntu26.17) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Sourcing file `/etc/default/grub'
+Sourcing file `/etc/default/grub.d/50-cloudimg-settings.cfg'
+Sourcing file `/etc/default/grub.d/init-select.cfg'
+Generating grub configuration file ...
+Found linux image: /boot/vmlinuz-5.4.0-150-generic
+Found linux image: /boot/vmlinuz-5.4.0-107-generic
+Found initrd image: /boot/initrd.img-5.4.0-107-generic
+done
+Setting up libpython3.8:amd64 (3.8.10-0ubuntu1~20.04.8) ...
+Setting up linux-image-virtual (5.4.0.150.148) ...
+Setting up bind9-host (1:9.16.1-0ubuntu2.14) ...
+Setting up libkrb5-26-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up openssh-sftp-server (1:8.2p1-4ubuntu0.7) ...
+Setting up vim (2:8.1.2269-1ubuntu5.14) ...
+Setting up linux-headers-virtual (5.4.0.150.148) ...
+Setting up grub-efi-amd64-signed (1.187.3~20.04.1+2.06-2ubuntu14.1) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Trying to migrate /boot/efi into esp config
+Unknown device "/dev/disk/by-id/*": No such file or directory
+Installing grub to /boot/efi.
+Installing for x86_64-efi platform.
+grub-install: warning: EFI variables are not supported on this system..
+Installation finished. No error reported.
+Setting up openssh-server (1:8.2p1-4ubuntu0.7) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+rescue-ssh.target is a disabled or a static unit, not starting it.
+Setting up libqmi-proxy (1.30.4-1~ubuntu20.04.1) ...
+Setting up shim-signed (1.40.9+15.7-0ubuntu1) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+update-alternatives: using /usr/lib/shim/shimx64.efi.signed.latest to provide /usr/lib/shim/shimx64.efi.signed (shimx64.efi.signed) in auto mode
+Unknown device "/dev/disk/by-id/*": No such file or directory
+Installing grub to /boot/efi.
+Installing for x86_64-efi platform.
+grub-install: warning: EFI variables are not supported on this system..
+Installation finished. No error reported.
+Setting up libheimntlm0-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up linux-virtual (5.4.0.150.148) ...
+Setting up libgssapi3-heimdal:amd64 (7.7.0+dfsg-1ubuntu1.4) ...
+Setting up modemmanager (1.18.6-1~ubuntu20.04.1) ...
+Installing new version of config file /etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf ...
+Setting up bind9-dnsutils (1:9.16.1-0ubuntu2.14) ...
+Setting up libldap-2.4-2:amd64 (2.4.49+dfsg-2ubuntu1.9) ...
+Setting up libcurl3-gnutls:amd64 (7.68.0-1ubuntu2.18) ...
+Setting up dirmngr (2.2.19-3ubuntu2.2) ...
+Setting up git (1:2.25.1-1ubuntu3.11) ...
+Setting up libcurl4:amd64 (7.68.0-1ubuntu2.18) ...
+Setting up curl (7.68.0-1ubuntu2.18) ...
+Setting up gpg-wks-client (2.2.19-3ubuntu2.2) ...
+Setting up libfwupd2:amd64 (1.7.9-1~20.04.1) ...
+Setting up gnupg (2.2.19-3ubuntu2.2) ...
+Setting up libfwupdplugin5:amd64 (1.7.9-1~20.04.1) ...
+Setting up fwupd (1.7.9-1~20.04.1) ...
+Installing new version of config file /etc/fwupd/redfish.conf ...
+fwupd-offline-update.service is a disabled or a static unit not running, not starting it.
+fwupd-refresh.service is a disabled or a static unit not running, not starting it.
+fwupd.service is a disabled or a static unit not running, not starting it.
+Setting up systemd (245.4-4ubuntu3.21) ...
+Setting up netplan.io (0.104-0ubuntu2~20.04.2) ...
+Setting up systemd-timesyncd (245.4-4ubuntu3.21) ...
+Setting up python3-update-manager (1:20.04.10.11) ...
+Setting up systemd-sysv (245.4-4ubuntu3.21) ...
+Setting up cloud-init (23.1.2-0ubuntu0~20.04.2) ...
+Installing new version of config file /etc/cloud/cloud.cfg ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Setting up libnss-systemd:amd64 (245.4-4ubuntu3.21) ...
+Setting up python3-distupgrade (1:20.04.41) ...
+Setting up ubuntu-release-upgrader-core (1:20.04.41) ...
+Setting up update-manager-core (1:20.04.10.11) ...
+Setting up libpam-systemd:amd64 (245.4-4ubuntu3.21) ...
+locale: Cannot set LC_ALL to default locale: No such file or directory
+debconf: unable to initialize frontend: Dialog
+debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
+debconf: falling back to frontend: Readline
+Setting up update-notifier-common (3.192.30.17) ...
+Setting up dbus-user-session (1.12.16-2ubuntu2.3) ...
+Setting up snapd (2.58+20.04.1) ...
+Installing new version of config file /etc/apparmor.d/usr.lib.snapd.snap-confine.real ...
+Installing new version of config file /etc/apt/apt.conf.d/20snapd.conf ...
+Created symlink /etc/systemd/system/multi-user.target.wants/snapd.aa-prompt-listener.service → /lib/systemd/system/snapd.aa-prompt-listener.service.
+snapd.failure.service is a disabled or a static unit not running, not starting it.
+snapd.snap-repair.service is a disabled or a static unit not running, not starting it.
+Failed to restart snapd.mounts-pre.target: Operation refused, unit snapd.mounts-pre.target may be requested by dependency only (it is configured to refuse manual start/stop).
+See system logs and 'systemctl status snapd.mounts-pre.target' for details.
+Processing triggers for mime-support (3.64ubuntu1) ...
+Processing triggers for initramfs-tools (0.136ubuntu6.7) ...
+update-initramfs: Generating /boot/initrd.img-5.4.0-107-generic
+Processing triggers for libc-bin (2.31-0ubuntu9.9) ...
+Processing triggers for ufw (0.36-6ubuntu1) ...
+Processing triggers for man-db (2.9.1-1) ...
+Processing triggers for plymouth-theme-ubuntu-text (0.9.4git20200323-0ubuntu6.2) ...
+update-initramfs: deferring update (trigger activated)
+Processing triggers for install-info (6.7.0.dfsg.2-5) ...
+Processing triggers for ca-certificates (20230311ubuntu0.20.04.1) ...
+Updating certificates in /etc/ssl/certs...
+0 added, 0 removed; done.
+Running hooks in /etc/ca-certificates/update.d...
+done.
+Processing triggers for linux-image-5.4.0-150-generic (5.4.0-150.167) ...
+/etc/kernel/postinst.d/initramfs-tools:
+update-initramfs: Generating /boot/initrd.img-5.4.0-150-generic
+/etc/kernel/postinst.d/zz-update-grub:
+Sourcing file `/etc/default/grub'
+Sourcing file `/etc/default/grub.d/50-cloudimg-settings.cfg'
+Sourcing file `/etc/default/grub.d/init-select.cfg'
+Generating grub configuration file ...
+Found linux image: /boot/vmlinuz-5.4.0-150-generic
+Found initrd image: /boot/initrd.img-5.4.0-150-generic
+Found linux image: /boot/vmlinuz-5.4.0-107-generic
+Found initrd image: /boot/initrd.img-5.4.0-107-generic
+done
+Processing triggers for dbus (1.12.16-2ubuntu2.3) ...
+Processing triggers for initramfs-tools (0.136ubuntu6.7) ...
+update-initramfs: Generating /boot/initrd.img-5.4.0-150-generic
+code b3e4e68a from Visual Studio Code (vscode**) installed
+jq 1.5+dfsg-1 from Michael Vogt (mvo*) installed
+openstackclients (yoga/stable) yoga from Canonical** installed
+yq v4.34.1 from Mike Farah (mikefarah) installed
+net.ipv4.ip_forward=1
+net.ipv4.ip_forward = 1
+#!/bin/sh -e
+echo iptables -t nat -A POSTROUTING -o ens3 -j MASQUERADE
+Cloning into 'osm-packages'...
+Submodule 'charm-packages/ha_proxy_charm_vnf/charms/simple/mod/charms.osm' (https://github.com/charmed-osm/charms.osm) registered for path 'charm-packages/ha_proxy_charm_vnf/charms/simple/mod/charms.osm'
+Submodule 'charm-packages/ha_proxy_charm_vnf/charms/simple/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/ha_proxy_charm_vnf/charms/simple/mod/operator'
+Submodule 'charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/charms.osm' (https://github.com/charmed-osm/charms.osm) registered for path 'charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/charms.osm'
+Submodule 'charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/operator'
+Submodule 'charm-packages/native_charm_vnf/charms/simple/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/native_charm_vnf/charms/simple/mod/operator'
+Submodule 'charm-packages/native_k8s_charm_vnf/charms/nginx-k8s/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/native_k8s_charm_vnf/charms/nginx-k8s/mod/operator'
+Submodule 'charm-packages/native_k8s_scale_charm_vnf/charms/nginx-k8s/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/native_k8s_scale_charm_vnf/charms/nginx-k8s/mod/operator'
+Submodule 'charm-packages/native_manual_scale_charm_vnf/charms/simple/mod/operator' (https://github.com/canonical/operator.git) registered for path 'charm-packages/native_manual_scale_charm_vnf/charms/simple/mod/operator'
+Submodule 'charm-packages/nopasswd_k8s_proxy_charm_vnf/charms/simple/mod/charms.osm' (https://github.com/charmed-osm/charms.osm) registered for path 'charm-packages/nopasswd_k8s_proxy_charm_vnf/charms/simple/mod/charms.osm'
+Submodule 'charm-packages/nopasswd_k8s_proxy_charm_vnf/charms/simple/mod/operator' (https://github.com/canonical/operator.git) registered for path 'charm-packages/nopasswd_k8s_proxy_charm_vnf/charms/simple/mod/operator'
+Submodule 'charm-packages/nopasswd_proxy_charm_vnf/charms/simple/mod/charms.osm' (https://github.com/charmed-osm/charms.osm) registered for path 'charm-packages/nopasswd_proxy_charm_vnf/charms/simple/mod/charms.osm'
+Submodule 'charm-packages/nopasswd_proxy_charm_vnf/charms/simple/mod/operator' (https://github.com/canonical/operator.git) registered for path 'charm-packages/nopasswd_proxy_charm_vnf/charms/simple/mod/operator'
+Submodule 'charm-packages/ns_relations_provides_vnf/charms/simple_provides/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/ns_relations_provides_vnf/charms/simple_provides/mod/operator'
+Submodule 'charm-packages/ns_relations_requires_vnf/charms/simple_requires/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/ns_relations_requires_vnf/charms/simple_requires/mod/operator'
+Submodule 'charm-packages/proxy_native_relation_vnf/charms/simple_provides_proxy/mod/charms.osm' (https://github.com/charmed-osm/charms.osm.git) registered for path 'charm-packages/proxy_native_relation_vnf/charms/simple_provides_proxy/mod/charms.osm'
+Submodule 'charm-packages/proxy_native_relation_vnf/charms/simple_provides_proxy/mod/operator' (https://github.com/canonical/operator.git) registered for path 'charm-packages/proxy_native_relation_vnf/charms/simple_provides_proxy/mod/operator'
+Submodule 'charm-packages/proxy_native_relation_vnf/charms/simple_requires/mod/operator' (https://github.com/canonical/operator.git) registered for path 'charm-packages/proxy_native_relation_vnf/charms/simple_requires/mod/operator'
+Submodule 'charm-packages/vnf_relations_vnf/charms/simple_provides/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/vnf_relations_vnf/charms/simple_provides/mod/operator'
+Submodule 'charm-packages/vnf_relations_vnf/charms/simple_requires/mod/operator' (https://github.com/canonical/operator) registered for path 'charm-packages/vnf_relations_vnf/charms/simple_requires/mod/operator'
+Submodule 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/charm-helpers' (https://github.com/juju/charm-helpers.git) registered for path 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/charm-helpers'
+Submodule 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/charms.osm' (https://github.com/charmed-osm/charms.osm) registered for path 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/charms.osm'
+Submodule 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/operator' (https://github.com/canonical/operator) registered for path 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/operator'
+Submodule 'magma/hackfest_magma-agw-enb_vnfd/charms/magmagw/mod/charms.osm' (https://github.com/charmed-osm/charms.osm) registered for path 'magma/hackfest_magma-agw-enb_vnfd/charms/magmagw/mod/charms.osm'
+Submodule 'magma/hackfest_magma-agw-enb_vnfd/charms/magmagw/mod/operator' (https://github.com/canonical/operator) registered for path 'magma/hackfest_magma-agw-enb_vnfd/charms/magmagw/mod/operator'
+Cloning into '/home/ubuntu/osm-packages/charm-packages/ha_proxy_charm_vnf/charms/simple/mod/charms.osm'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/charms.osm'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/ha_proxy_charm_vnf/charms/simple/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/nopasswd_k8s_proxy_charm_vnf/charms/simple/mod/charms.osm'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/native_manual_scale_charm_vnf/charms/simple/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/native_charm_vnf/charms/simple/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/native_k8s_charm_vnf/charms/nginx-k8s/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/nopasswd_proxy_charm_vnf/charms/simple/mod/charms.osm'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/nopasswd_k8s_proxy_charm_vnf/charms/simple/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/proxy_native_relation_vnf/charms/simple_provides_proxy/mod/charms.osm'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/proxy_native_relation_vnf/charms/simple_provides_proxy/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/nopasswd_proxy_charm_vnf/charms/simple/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/ns_relations_provides_vnf/charms/simple_provides/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/magma/hackfest_gateway_vnfd/charms/vyos-config/mod/charms.osm'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/ns_relations_requires_vnf/charms/simple_requires/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/vnf_relations_vnf/charms/simple_provides/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/native_k8s_scale_charm_vnf/charms/nginx-k8s/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/vnf_relations_vnf/charms/simple_requires/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/magma/hackfest_magma-agw-enb_vnfd/charms/magmagw/mod/charms.osm'...
+Cloning into '/home/ubuntu/osm-packages/magma/hackfest_magma-agw-enb_vnfd/charms/magmagw/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/magma/hackfest_gateway_vnfd/charms/vyos-config/mod/charm-helpers'...
+Cloning into '/home/ubuntu/osm-packages/charm-packages/proxy_native_relation_vnf/charms/simple_requires/mod/operator'...
+Cloning into '/home/ubuntu/osm-packages/magma/hackfest_gateway_vnfd/charms/vyos-config/mod/operator'...
+Submodule path 'charm-packages/ha_proxy_charm_vnf/charms/simple/mod/charms.osm': checked out '3d517f5e42550d0b5c81aa4be20f7679020854d5'
+Submodule path 'charm-packages/ha_proxy_charm_vnf/charms/simple/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/charms.osm': checked out '3d517f5e42550d0b5c81aa4be20f7679020854d5'
+Submodule path 'charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'charm-packages/native_charm_vnf/charms/simple/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'charm-packages/native_k8s_charm_vnf/charms/nginx-k8s/mod/operator': checked out '169794cdda03d31268f0383220f965daa05c534b'
+Submodule path 'charm-packages/native_k8s_scale_charm_vnf/charms/nginx-k8s/mod/operator': checked out '169794cdda03d31268f0383220f965daa05c534b'
+Submodule path 'charm-packages/native_manual_scale_charm_vnf/charms/simple/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'charm-packages/nopasswd_k8s_proxy_charm_vnf/charms/simple/mod/charms.osm': checked out '3d517f5e42550d0b5c81aa4be20f7679020854d5'
+Submodule path 'charm-packages/nopasswd_k8s_proxy_charm_vnf/charms/simple/mod/operator': checked out '89b51be8588a19fcc9c93410707aeb5856dd8d8f'
+Submodule path 'charm-packages/nopasswd_proxy_charm_vnf/charms/simple/mod/charms.osm': checked out '3d517f5e42550d0b5c81aa4be20f7679020854d5'
+Submodule path 'charm-packages/nopasswd_proxy_charm_vnf/charms/simple/mod/operator': checked out '89b51be8588a19fcc9c93410707aeb5856dd8d8f'
+Submodule path 'charm-packages/ns_relations_provides_vnf/charms/simple_provides/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'charm-packages/ns_relations_requires_vnf/charms/simple_requires/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'charm-packages/proxy_native_relation_vnf/charms/simple_provides_proxy/mod/charms.osm': checked out '3d517f5e42550d0b5c81aa4be20f7679020854d5'
+Submodule path 'charm-packages/proxy_native_relation_vnf/charms/simple_provides_proxy/mod/operator': checked out '89b51be8588a19fcc9c93410707aeb5856dd8d8f'
+Submodule path 'charm-packages/proxy_native_relation_vnf/charms/simple_requires/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'charm-packages/vnf_relations_vnf/charms/simple_provides/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'charm-packages/vnf_relations_vnf/charms/simple_requires/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/charm-helpers': checked out '1989f1f255baefb34cba7863606915dcd4ef1e38'
+Submodule path 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/charms.osm': checked out '3d517f5e42550d0b5c81aa4be20f7679020854d5'
+Submodule path 'magma/hackfest_gateway_vnfd/charms/vyos-config/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+Submodule path 'magma/hackfest_magma-agw-enb_vnfd/charms/magmagw/mod/charms.osm': checked out '3d517f5e42550d0b5c81aa4be20f7679020854d5'
+Submodule path 'magma/hackfest_magma-agw-enb_vnfd/charms/magmagw/mod/operator': checked out 'a84ce8776b368a8b2bccdb173716e342db9a6b36'
+~/OSM ~
+Cloning into 'common'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'devops'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'IM'...
+Already on 'master'
+Your branch is up to date with 'origin/master'.
+Cloning into 'LCM'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'MON'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'N2VC'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'NBI'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'NG-SA'...
+Already on 'master'
+Your branch is up to date with 'origin/master'.
+Cloning into 'NG-UI'...
+Already on 'master'
+Your branch is up to date with 'origin/master'.
+Cloning into 'osmclient'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'PLA'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'POL'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'RO'...
+Your branch is up to date with 'origin/master'.
+Already on 'master'
+Cloning into 'tests'...
+Already on 'master'
+Your branch is up to date with 'origin/master'.
+~
+./vm-initial-setup.sh complete at Wed Jun 7 09:04:30 UTC 2023
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/logs/vm-install-osm-5.log b/Hackfest_Demos/OSM-15/setup_scripts/logs/vm-install-osm-5.log
new file mode 100644
index 00000000..60c2258c
--- /dev/null
+++ b/Hackfest_Demos/OSM-15/setup_scripts/logs/vm-install-osm-5.log
@@ -0,0 +1,549 @@
+bash: ./vm-install-osm.sh: No such file or directory
+bash: vm-install-osm.sh: command not found
+bash: vm-install-osm.sh: command not found
+./vm-install-osm.sh started at Wed Jun 7 09:09:42 UTC 2023
+microk8s (1.26/stable) v1.26.4 from Canonical** installed
+snap "jq" is already installed, see 'snap help refresh'
+server = "http://172.21.1.1:5000"
+
+[host."http://172.21.1.1:5000"]
+capabilities = ["pull", "resolve"]
+skip_verify = true
+plain-http = true
+Infer repository core for addon storage
+DEPRECIATION WARNING: 'storage' is deprecated and will soon be removed. Please use 'hostpath-storage' instead.
+
+Infer repository core for addon hostpath-storage
+Enabling default storage class.
+WARNING: Hostpath storage is not suitable for production environments.
+
+deployment.apps/hostpath-provisioner created
+storageclass.storage.k8s.io/microk8s-hostpath created
+serviceaccount/microk8s-hostpath created
+clusterrole.rbac.authorization.k8s.io/microk8s-hostpath created
+clusterrolebinding.rbac.authorization.k8s.io/microk8s-hostpath created
+Storage will be available soon.
+Added:
+  - microk8s.kubectl as kubectl
+--2023-06-07 09:10:25--  https://osm-download.etsi.org/ftp/osm-13.0-thirteen/install_osm.sh
+Resolving osm-download.etsi.org (osm-download.etsi.org)... 195.238.226.47
+Connecting to osm-download.etsi.org (osm-download.etsi.org)|195.238.226.47|:443... connected.
+HTTP request sent, awaiting response... 200 OK
+Length: 10436 (10K) [text/x-sh]
+Saving to: 'install_osm.sh'
+Checking required packages to add ETSI OSM debian repo: software-properties-common apt-transport-https
+
+     0K ..........                                            100% 18.7M=0.001s
+
+2023-06-07 09:10:25 (18.7 MB/s) - 'install_osm.sh' saved [10436/10436]
+
+OK
+Get:1 https://osm-download.etsi.org/repository/osm/debian/testing-daily testing InRelease [4086 B]
+Hit:2 http://nova.clouds.archive.ubuntu.com/ubuntu focal InRelease
+Hit:3 http://security.ubuntu.com/ubuntu focal-security InRelease
+Hit:4 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates InRelease
+Hit:5 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports InRelease
+Get:6 https://osm-download.etsi.org/repository/osm/debian/testing-daily testing/devops amd64 Packages [501 B]
+Fetched 4587 B in 1s (4556 B/s)
+Reading package lists...
+W: Conflicting distribution: https://osm-download.etsi.org/repository/osm/debian/testing-daily testing InRelease (expected testing but got )
+Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease
+Hit:2 http://nova.clouds.archive.ubuntu.com/ubuntu focal InRelease
+Hit:3 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates InRelease
+Hit:4 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports InRelease
+Hit:5 https://osm-download.etsi.org/repository/osm/debian/testing-daily testing InRelease
+Reading package lists...
+W: Conflicting distribution: https://osm-download.etsi.org/repository/osm/debian/testing-daily testing InRelease (expected testing but got )
+Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease
+Hit:2 http://nova.clouds.archive.ubuntu.com/ubuntu focal InRelease
+Hit:3 http://nova.clouds.archive.ubuntu.com/ubuntu focal-updates InRelease
+Hit:4 http://nova.clouds.archive.ubuntu.com/ubuntu focal-backports InRelease
+Hit:5 https://osm-download.etsi.org/repository/osm/debian/testing-daily testing InRelease
+Reading package lists...
+W: Conflicting distribution: https://osm-download.etsi.org/repository/osm/debian/testing-daily testing InRelease (expected testing but got )
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following NEW packages will be installed:
+  osm-devops
+0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
+Need to get 18.0 MB of archives.
+After this operation, 108 MB of additional disk space will be used.
+Get:1 https://osm-download.etsi.org/repository/osm/debian/testing-daily testing/devops amd64 osm-devops all 12.0.0.post166-1 [18.0 MB]
+perl: warning: Setting locale failed.
+perl: warning: Please check that your locale settings:
+	LANGUAGE = (unset),
+	LC_ALL = (unset),
+	LC_TIME = "tr_TR.UTF-8",
+	LC_MONETARY = "tr_TR.UTF-8",
+	LC_ADDRESS = "tr_TR.UTF-8",
+	LC_TELEPHONE = "tr_TR.UTF-8",
+	LC_NAME = "tr_TR.UTF-8",
+	LC_MEASUREMENT = "tr_TR.UTF-8",
+	LC_IDENTIFICATION = "tr_TR.UTF-8",
+	LC_NUMERIC = "tr_TR.UTF-8",
+	LC_PAPER = "tr_TR.UTF-8",
+	LANG = "C.UTF-8"
+    are supported and installed on your system.
+perl: warning: Falling back to a fallback locale ("C.UTF-8").
+locale: Cannot set LC_ALL to default locale: No such file or directory
+Fetched 18.0 MB in 0s (47.7 MB/s)
+Selecting previously unselected package osm-devops.
+(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 95072 files and directories currently installed.)
+Preparing to unpack .../osm-devops_12.0.0.post166-1_all.deb ...
+Unpacking osm-devops (12.0.0.post166-1) ...
+Setting up osm-devops (12.0.0.post166-1) ...
+##  Wed Jun  7 09:10:41 UTC 2023 source: INFO: logging sourced
+##  Wed Jun  7 09:10:41 UTC 2023 source: INFO: config sourced
+##  Wed Jun  7 09:10:41 UTC 2023 source: INFO: container sourced
+##  Wed Jun  7 09:10:41 UTC 2023 source: INFO: git_functions sourced
+##  Wed Jun  7 09:10:41 UTC 2023 source: INFO: track sourced
+snap "jq" is already installed, see 'snap help refresh'
+Track start release: https://osm.etsi.org/InstallLog.php?&installation_id=1686129041-7M97j6zSKJwGBvh3&local_ts=1686129041&event=start&operation=release&value=testing-daily&comment=&tags=
+Track start docker_tag: https://osm.etsi.org/InstallLog.php?&installation_id=1686129041-7M97j6zSKJwGBvh3&local_ts=1686129041&event=start&operation=docker_tag&value=testing-daily&comment=&tags=
+Track start installation_type: https://osm.etsi.org/InstallLog.php?&installation_id=1686129041-7M97j6zSKJwGBvh3&local_ts=1686129041&event=start&operation=installation_type&value=Charmed&comment=&tags=
+##  Wed Jun  7 09:10:42 UTC 2023 source: INFO: logging sourced
+##  Wed Jun  7 09:10:42 UTC 2023 source: INFO: config sourced
+##  Wed Jun  7 09:10:42 UTC 2023 source: INFO: container sourced
+##  Wed Jun  7 09:10:42 UTC 2023 source: INFO: git_functions sourced
+##  Wed Jun  7 09:10:42 UTC 2023 source: INFO: track sourced
+snap "microk8s" is already installed, see 'snap help refresh'
+--advertise-address 172.21.249.248
+Stopped.
+microk8s is running
+high-availability: no
+  datastore master nodes: 127.0.0.1:19001
+  datastore standby nodes: none
+addons:
+  enabled:
+    ha-cluster           # (core) Configure high availability on the current node
+    helm                 # (core) Helm - the package manager for Kubernetes
+    helm3                # (core) Helm 3 - the package manager for Kubernetes
+  disabled:
+    cert-manager         # (core) Cloud native certificate management
+    community            # (core) The community addons repository
+    dashboard            # (core) The Kubernetes dashboard
+    dns                  # (core) CoreDNS
+    gpu                  # (core) Automatic enablement of Nvidia CUDA
+    host-access          # (core) Allow Pods connecting to Host services smoothly
+    hostpath-storage     # (core) Storage class; allocates storage from host directory
+    ingress              # (core) Ingress controller for external access
+    kube-ovn             # (core) An advanced network fabric for Kubernetes
+    mayastor             # (core) OpenEBS MayaStor
+    metallb              # (core) Loadbalancer for your Kubernetes cluster
+    metrics-server       # (core) K8s Metrics Server for API access to service metrics
+    minio                # (core) MinIO object storage
+    observability        # (core) A lightweight observability stack for logs, traces and metrics
+    prometheus           # (core) Prometheus operator for monitoring and logging
+    rbac                 # (core) Role-Based Access Control for authorisation
+    registry             # (core) Private image registry exposed on localhost:32000
+    storage              # (core) Alias to hostpath-storage add-on, deprecated
+apiVersion: v1
+clusters:
+- cluster:
+    certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUREekNDQWZlZ0F3SUJBZ0lVV2JhZUkvYlo0WDlTQkUwclVML00veFdjSmpzd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01NVEF1TVRVeUxqRTRNeTR4TUI0WERUSXpNRFl3TnpBNU1EazBPVm9YRFRNegpNRFl3TkRBNU1EazBPVm93RnpFVk1CTUdBMVVFQXd3TU1UQXVNVFV5TGpFNE15NHhNSUlCSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF4ZzN6U3NJNG1rWHBoaFhNVE41WEZ2cDNYemR5VWdBVUQ4TFMKMDdYT01lOFFnc1M5TFd6UVlmWUJ6azVXQTRpdlhTVVROTkRqc0FtVUlUSm5HbjZPSGR0NzJqOUh0ajlWbXY0cApaaXdkUDhkNEJQMWdjSHhxQmFrSHJIbWdvUUZOQmh4Z1kya0MzZUk1TVlidytzODd6TlpSNXplZDVnZlJFdndoClRFN1AvQm5NQTZkSUZPcW1uazVWVnlCamdoVE41dEZOYXRSNU1sUlZUbTdWMUxwOUJTWXVzY0wvUllkcWZxTGIKSUUxbm81ck5GOG8zcEQ2WWJnRkYzejNHOGExMVZBZzBNbXcydTkycWVER0ZWN2V1a2NCcGx3ZTA3Yys5V0tWawpYdmIrRjBPT0hYVU1CdlZXaFJWK0JZaSt5WHBZanJ6KzE4bEE2eFhrQjA5dUxYRnNsd0lEQVFBQm8xTXdVVEFkCkJnTlZIUTRFRmdRVWthU3c3RTZwdUU3V0RPeWJ0eGg4d3ZPWXI3b3dId1lEVlIwakJCZ3dGb0FVa2FTdzdFNnAKdUU3V0RPeWJ0eGg4d3ZPWXI3b3dEd1lEVlIwVEFRSC9CQVV3QXdFQi96QU5CZ2txaGtpRzl3MEJBUXNGQUFPQwpBUUVBZW5WeGFoMEViWEpLTUwwczhLRkhXbXkrcUlEaFNDMVRmZHZyOWlPclVLSmg5MzNLWEVUV3kwSFJBUDZyCkZsYnJ0RnBSS21mTWFEcVREaVFXQ3NBYVZuaCtDenZXaTFka3dRUWxOZnlJT25aMFk1WlpZdTIvT1hpQWVzVFUKZDZCMlhSaGQ5c0RlS01CVWlKeTBJcElydEZKUkV0aURPRTJycDBISmVPUnZpdFRYS2E1R1g1M1ptMkU1OEdpSwp3QlU1bUhYaEdCZGFvZUtnSmNXbkd6cG1FREpndmZ2akhkVCtucFp5VFpGTW5kTFJoLzA1QllJU2tIMzJnbXpSClBpdHBaRkx3bjd6S2lCZFpSWnlraTgwOW9Nc2FURU5rb2dlNnYyWVZadFVVUitFd21UL0RROHFtUWV0SytUMzAKLzVEeUNQaW81Nmh5NzZHT1RMcGR5MGxmTVE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
+    server: https://172.21.249.248:16443
+  name: microk8s-cluster
+contexts:
+- context:
+    cluster: microk8s-cluster
+    user: admin
+  name: microk8s
+current-context: microk8s
+kind: Config
+preferences: {}
+users:
+- name: admin
+  user:
+    token: ZjB0QnVHZW1la0dYOVFwRXNkaXJ6ai9jRHZ5NjNxSDROd3NJSlpNMFloRT0K
+
+Track k8scluster k8scluster_ok: https://osm.etsi.org/InstallLog.php?&installation_id=1686129041-7M97j6zSKJwGBvh3&local_ts=1686129059&event=k8scluster&operation=k8scluster_ok&value=&comment=&tags=
+juju (2.9/stable) 2.9.42 from Canonical** installed
+Track juju juju_ok: https://osm.etsi.org/InstallLog.php?&installation_id=1686129041-7M97j6zSKJwGBvh3&local_ts=1686129075&event=juju&operation=juju_ok&value=&comment=&tags=
+Infer repository core for addon metallb
+Enabling MetalLB
+Applying Metallb manifest
+customresourcedefinition.apiextensions.k8s.io/addresspools.metallb.io created
+customresourcedefinition.apiextensions.k8s.io/bfdprofiles.metallb.io created
+customresourcedefinition.apiextensions.k8s.io/bgpadvertisements.metallb.io created
+customresourcedefinition.apiextensions.k8s.io/bgppeers.metallb.io created
+customresourcedefinition.apiextensions.k8s.io/communities.metallb.io created
+customresourcedefinition.apiextensions.k8s.io/ipaddresspools.metallb.io created
+customresourcedefinition.apiextensions.k8s.io/l2advertisements.metallb.io created
+namespace/metallb-system created
+serviceaccount/controller created
+serviceaccount/speaker created
+clusterrole.rbac.authorization.k8s.io/metallb-system:controller created
+clusterrole.rbac.authorization.k8s.io/metallb-system:speaker created
+role.rbac.authorization.k8s.io/controller created
+role.rbac.authorization.k8s.io/pod-lister created
+clusterrolebinding.rbac.authorization.k8s.io/metallb-system:controller created
+clusterrolebinding.rbac.authorization.k8s.io/metallb-system:speaker created
+rolebinding.rbac.authorization.k8s.io/controller created
+secret/webhook-server-cert created
+service/webhook-service created
+rolebinding.rbac.authorization.k8s.io/pod-lister created
+daemonset.apps/speaker created
+deployment.apps/controller created
+validatingwebhookconfiguration.admissionregistration.k8s.io/validating-webhook-configuration created
+Waiting for Metallb controller to be ready.
+error: timed out waiting for the condition on deployments/controller
+MetalLB controller is still not ready
+deployment.apps/controller condition met
+ipaddresspool.metallb.io/default-addresspool created
+l2advertisement.metallb.io/default-advertise-all-pools created
+MetalLB is enabled
+Infer repository core for addon ingress
+Enabling Ingress
+ingressclass.networking.k8s.io/public created
+ingressclass.networking.k8s.io/nginx created
+namespace/ingress created
+serviceaccount/nginx-ingress-microk8s-serviceaccount created
+clusterrole.rbac.authorization.k8s.io/nginx-ingress-microk8s-clusterrole created
+role.rbac.authorization.k8s.io/nginx-ingress-microk8s-role created
+clusterrolebinding.rbac.authorization.k8s.io/nginx-ingress-microk8s created
+rolebinding.rbac.authorization.k8s.io/nginx-ingress-microk8s created
+configmap/nginx-load-balancer-microk8s-conf created
+configmap/nginx-ingress-tcp-microk8s-conf created
+configmap/nginx-ingress-udp-microk8s-conf created
+daemonset.apps/nginx-ingress-microk8s-controller created
+Ingress is enabled
+Infer repository core for addon hostpath-storage
+Infer repository core for addon dns
+Addon core/hostpath-storage is already enabled
+Enabling DNS
+Using host configuration from /run/systemd/resolve/resolv.conf
+Applying manifest
+serviceaccount/coredns created
+configmap/coredns created
+deployment.apps/coredns created
+service/kube-dns created
+clusterrole.rbac.authorization.k8s.io/coredns created
+clusterrolebinding.rbac.authorization.k8s.io/coredns created
+Restarting kubelet
+DNS is enabled
+Creating Juju controller "osm-vca" on microk8s/localhost
+Bootstrap to Kubernetes cluster identified as microk8s/localhost
+Fetching Juju Dashboard 0.8.1
+Creating k8s resources for controller "controller-osm-vca"
+Downloading images
+Starting controller pod
+Bootstrap agent now started
+Contacting Juju controller at 172.21.249.248 to verify accessibility...
+
+Bootstrap complete, controller "osm-vca" is now available in namespace "controller-osm-vca"
+
+Now you can run
+	juju add-model <model-name>
+to create a new model to deploy k8s workloads.
+Track bootstrap_k8s bootstrap_k8s_ok: https://osm.etsi.org/InstallLog.php?&installation_id=1686129041-7M97j6zSKJwGBvh3&local_ts=1686129271&event=bootstrap_k8s&operation=bootstrap_k8s_ok&value=&comment=&tags=
+* Applying /etc/sysctl.d/10-console-messages.conf ...
+kernel.printk = 4 4 1 7
+* Applying /etc/sysctl.d/10-ipv6-privacy.conf ...
+net.ipv6.conf.all.use_tempaddr = 2
+net.ipv6.conf.default.use_tempaddr = 2
+* Applying /etc/sysctl.d/10-kernel-hardening.conf ...
+kernel.kptr_restrict = 1
+* Applying /etc/sysctl.d/10-link-restrictions.conf ...
+fs.protected_hardlinks = 1
+fs.protected_symlinks = 1
+* Applying /etc/sysctl.d/10-magic-sysrq.conf ...
+kernel.sysrq = 176
+* Applying /etc/sysctl.d/10-network-security.conf ...
+net.ipv4.conf.default.rp_filter = 2
+net.ipv4.conf.all.rp_filter = 2
+* Applying /etc/sysctl.d/10-ptrace.conf ...
+kernel.yama.ptrace_scope = 1
+* Applying /etc/sysctl.d/10-zeropage.conf ...
+vm.mmap_min_addr = 65536
+* Applying /usr/lib/sysctl.d/50-default.conf ...
+net.ipv4.conf.default.promote_secondaries = 1
+sysctl: setting key "net.ipv4.conf.all.promote_secondaries": Invalid argument
+net.ipv4.ping_group_range = 0 2147483647
+net.core.default_qdisc = fq_codel
+fs.protected_regular = 1
+fs.protected_fifos = 1
+* Applying /usr/lib/sysctl.d/50-pid-max.conf ...
+kernel.pid_max = 4194304
+* Applying /etc/sysctl.d/60-lxd-production.conf ...
+fs.inotify.max_queued_events = 1048576
+fs.inotify.max_user_instances = 1048576
+fs.inotify.max_user_watches = 1048576
+vm.max_map_count = 262144
+kernel.dmesg_restrict = 1
+net.ipv4.neigh.default.gc_thresh3 = 8192
+net.ipv6.neigh.default.gc_thresh3 = 8192
+sysctl: setting key "net.core.bpf_jit_limit": Invalid argument
+kernel.keys.maxkeys = 2000
+kernel.keys.maxbytes = 2000000
+* Applying /etc/sysctl.d/99-cloudimg-ipv6.conf ...
+net.ipv6.conf.all.use_tempaddr = 0
+net.ipv6.conf.default.use_tempaddr = 0
+* Applying /etc/sysctl.d/99-sysctl.conf ...
+net.ipv4.ip_forward = 1
+* Applying /usr/lib/sysctl.d/protect-links.conf ...
+fs.protected_fifos = 1
+fs.protected_hardlinks = 1
+fs.protected_regular = 2
+fs.protected_symlinks = 1
+* Applying /etc/sysctl.conf ...
+net.ipv4.ip_forward = 1
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Package 'lxcfs' is not installed, so not removed
+Package 'liblxc1' is not installed, so not removed
+Package 'lxd' is not installed, so not removed
+Package 'lxd-client' is not installed, so not removed
+0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+lxd (5.0/stable) 5.0.2-838e1b2 from Canonical** refreshed
+Error: Failed to parse the preseed: yaml: unmarshal errors:
+  line 22: field managed not found in type api.InitNetworksProjectPost
+perl: warning: Setting locale failed.
+perl: warning: Please check that your locale settings:
+	LANGUAGE = (unset),
+	LC_ALL = (unset),
+	LC_ADDRESS = "tr_TR.UTF-8",
+	LC_NAME = "tr_TR.UTF-8",
+	LC_MONETARY = "tr_TR.UTF-8",
+	LC_PAPER = "tr_TR.UTF-8",
+	LC_IDENTIFICATION = "tr_TR.UTF-8",
+	LC_TELEPHONE = "tr_TR.UTF-8",
+	LC_MEASUREMENT = "tr_TR.UTF-8",
+	LC_TIME = "tr_TR.UTF-8",
+	LC_NUMERIC = "tr_TR.UTF-8",
+	LANG = "C.UTF-8"
+    are supported and installed on your system.
+perl: warning: Falling back to a fallback locale ("C.UTF-8").
+If this is your first time running LXD on this machine, you should also run: lxd init
+To start your first container, try: lxc launch ubuntu:22.04
+Or for a virtual machine: lxc launch ubuntu:22.04 --vm
+
+Error: Device doesn't exist
+Error: Network not found
+Generating a RSA private key
+........................................+++++
+..................................................+++++
+writing new private key to '/home/ubuntu/.osm/client.key'
+-----
+Cloud "lxd-cloud" added to controller "osm-vca".
+WARNING loading credentials: credentials for cloud lxd-cloud not found
+To upload a credential to the controller for cloud "lxd-cloud", use 
+* 'add-model' with --credential option or
+* 'add-credential -c lxd-cloud'.
+Using cloud "lxd-cloud" from the controller to verify credentials.
+Controller credential "lxd-cloud" for user "admin" for cloud "lxd-cloud" on controller "osm-vca" added.
+For more information, see ‘juju show-credential lxd-cloud lxd-cloud’.
+Track bootstrap_lxd bootstrap_lxd_ok: https://osm.etsi.org/InstallLog.php?&installation_id=1686129041-7M97j6zSKJwGBvh3&local_ts=1686129297&event=bootstrap_lxd&operation=bootstrap_lxd_ok&value=&comment=&tags=
+Creating OSM model
+Added 'osm' model on microk8s/localhost with credential 'microk8s' for user 'admin'
+Deploying OSM with charms
+Creating Password Overlay
+Located bundle "osm" in charm-hub, revision 440
+Located charm "osm-grafana" in charm-hub, channel latest/stable
+Located charm "nginx-ingress-integrator" in charm-hub, channel latest/stable
+Located charm "kafka-k8s" in charm-hub, channel latest/stable
+Located charm "osm-keystone" in charm-hub, channel latest/beta
+Located charm "osm-lcm" in charm-hub, channel latest/beta
+Located charm "charmed-osm-mariadb-k8s" in charm-hub, channel stable
+Located charm "osm-mon" in charm-hub, channel latest/beta
+Located charm "mongodb-k8s" in charm-hub, channel 5/edge
+Located charm "osm-nbi" in charm-hub, channel latest/beta
+Located charm "osm-ng-ui" in charm-hub, channel latest/beta
+Located charm "osm-pol" in charm-hub, channel latest/beta
+Located charm "osm-prometheus" in charm-hub, channel latest/stable
+Located charm "osm-ro" in charm-hub, channel latest/beta
+Located charm "osm-vca-integrator" in charm-hub, channel latest/beta
+Located charm "zookeeper-k8s" in charm-hub, channel latest/stable
+Executing changes:
+- upload charm osm-grafana from charm-hub for series kubernetes from channel latest/stable with architecture=amd64
+- deploy application grafana from charm-hub with 1 unit on kubernetes with latest/stable using osm-grafana
+  added resource image
+- set annotations for grafana
+- upload charm nginx-ingress-integrator from charm-hub from channel latest/stable with architecture=amd64
+- deploy application ingress from charm-hub with 1 unit with latest/stable using nginx-ingress-integrator
+- set annotations for ingress
+- upload charm kafka-k8s from charm-hub from channel latest/stable with architecture=amd64
+- deploy application kafka from charm-hub with 1 unit with latest/stable using kafka-k8s
+  added resource jmx-prometheus-jar
+  added resource kafka-image
+- set annotations for kafka
+- upload charm osm-keystone from charm-hub from channel latest/beta with architecture=amd64
+- deploy application keystone from charm-hub with 1 unit with latest/beta using osm-keystone
+  added resource keystone-image
+- set annotations for keystone
+- upload charm osm-lcm from charm-hub from channel latest/beta with architecture=amd64
+- deploy application lcm from charm-hub with 1 unit with latest/beta using osm-lcm
+  added resource lcm-image
+- set annotations for lcm
+- upload charm charmed-osm-mariadb-k8s from charm-hub for series kubernetes with architecture=amd64
+- deploy application mariadb from charm-hub with 1 unit on kubernetes using charmed-osm-mariadb-k8s
+- set annotations for mariadb
+- upload charm osm-mon from charm-hub from channel latest/beta with architecture=amd64
+- deploy application mon from charm-hub with 1 unit with latest/beta using osm-mon
+  added resource mon-image
+- set annotations for mon
+- upload charm mongodb-k8s from charm-hub for series kubernetes from channel 5/edge with architecture=amd64
+- deploy application mongodb from charm-hub with 1 unit on kubernetes with 5/edge using mongodb-k8s
+  added resource mongodb-image
+- set annotations for mongodb
+- upload charm osm-nbi from charm-hub from channel latest/beta with architecture=amd64
+- deploy application nbi from charm-hub with 1 unit with latest/beta using osm-nbi
+  added resource nbi-image
+- set annotations for nbi
+- upload charm osm-ng-ui from charm-hub from channel latest/beta with architecture=amd64
+- deploy application ng-ui from charm-hub with 1 unit with latest/beta using osm-ng-ui
+  added resource ng-ui-image
+- set annotations for ng-ui
+- upload charm osm-pol from charm-hub from channel latest/beta with architecture=amd64
+- deploy application pol from charm-hub with 1 unit with latest/beta using osm-pol
+  added resource pol-image
+- set annotations for pol
+- upload charm osm-prometheus from charm-hub for series kubernetes from channel latest/stable with architecture=amd64
+- deploy application prometheus from charm-hub with 1 unit on kubernetes with latest/stable using osm-prometheus
+  added resource backup-image
+  added resource image
+- set annotations for prometheus
+- upload charm osm-ro from charm-hub from channel latest/beta with architecture=amd64
+- deploy application ro from charm-hub with 1 unit with latest/beta using osm-ro
+  added resource ro-image
+- set annotations for ro
+- upload charm osm-vca-integrator from charm-hub from channel latest/beta with architecture=amd64
+- deploy application vca from charm-hub with 1 unit with latest/beta using osm-vca-integrator
+- set annotations for vca
+- upload charm zookeeper-k8s from charm-hub from channel latest/stable with architecture=amd64
+- deploy application zookeeper from charm-hub with 1 unit with latest/stable using zookeeper-k8s
+  added resource zookeeper-image
+- set annotations for zookeeper
+- add relation grafana:prometheus - prometheus:prometheus
+- add relation kafka:zookeeper - zookeeper:zookeeper
+- add relation keystone:db - mariadb:mysql
+- add relation lcm:kafka - kafka:kafka
+- add relation lcm:mongodb - mongodb:database
+- add relation lcm:vca - vca:vca
+- add relation ro:ro - lcm:ro
+- add relation ro:kafka - kafka:kafka
+- add relation ro:mongodb - mongodb:database
+- add relation pol:kafka - kafka:kafka
+- add relation pol:mongodb - mongodb:database
+- add relation mon:mongodb - mongodb:database
+- add relation mon:kafka - kafka:kafka
+- add relation mon:vca - vca:vca
+- add relation nbi:mongodb - mongodb:database
+- add relation nbi:kafka - kafka:kafka
+- add relation nbi:ingress - ingress:ingress
+- add relation nbi:prometheus - prometheus:prometheus
+- add relation nbi:keystone - keystone:keystone
+- add relation mon:prometheus - prometheus:prometheus
+- add relation ng-ui:nbi - nbi:nbi
+- add relation ng-ui:ingress - ingress:ingress
+- add relation mon:keystone - keystone:keystone
+- add relation mariadb:mysql - pol:mysql
+- add relation grafana:db - mariadb:mysql
+Deploy of bundle completed.
+Waiting for deployment to finish...
+0 / 15 services active
+0 / 15 services active
+0 / 15 services active
+1 / 15 services active
+1 / 15 services active
+1 / 15 services active
+0 / 15 services active
+0 / 15 services active
+0 / 15 services active
+0 / 15 services active
+1 / 15 services active
+1 / 15 services active
+1 / 15 services active
+1 / 15 services active
+1 / 15 services active
+2 / 15 services active
+2 / 15 services active
+2 / 15 services active
+2 / 15 services active
+2 / 15 services active
+2 / 15 services active
+3 / 15 services active
+3 / 15 services active
+3 / 15 services active
+4 / 15 services active
+4 / 15 services active
+5 / 15 services active
+5 / 15 services active
+5 / 15 services active
+5 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+4 / 15 services active
+5 / 15 services active
+5 / 15 services active
+5 / 15 services active
+6 / 15 services active
+6 / 15 services active
+6 / 15 services active
+6 / 15 services active
+6 / 15 services active
+6 / 15 services active
+6 / 15 services active
+7 / 15 services active
+7 / 15 services active
+7 / 15 services active
+7 / 15 services active
+8 / 15 services active
+8 / 15 services active
+9 / 15 services active
+9 / 15 services active
+9 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+13 / 15 services active
+13 / 15 services active
+13 / 15 services active
+13 / 15 services active
+13 / 15 services active
+13 / 15 services active
+13 / 15 services active
+13 / 15 services active
+13 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
+14 / 15 services active
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc b/Hackfest_Demos/OSM-15/setup_scripts/main_credentials.rc
similarity index 52%
rename from Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc
rename to Hackfest_Demos/OSM-15/setup_scripts/main_credentials.rc
index 88be228e..da218d2d 100644
--- a/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc
+++ b/Hackfest_Demos/OSM-15/setup_scripts/main_credentials.rc
@@ -1,11 +1,10 @@
-#OpenStack Credentials
-PARTICIPANT=`expr $1`
+#OpenStack Credentials for OSM instances
 export OS_AUTH_URL=http://172.21.247.1:5000/v3
-export OS_PROJECT_NAME=hackfest15group${PARTICIPANT}
+export OS_PROJECT_NAME=hackfest15main
 export OS_USER_DOMAIN_NAME='Default'
 export OS_PROJECT_DOMAIN_ID='default'
-export OS_USERNAME=hackfest15group${PARTICIPANT}
-export OS_PASSWORD=hackfest15group-${PARTICIPANT}!
+export OS_USERNAME=hackfest_admin
+export OS_PASSWORD=h@ckf3st
 export OS_REGION_NAME='RegionOne'
 export OS_INTERFACE=public
 export OS_IDENTITY_API_VERSION=3
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vm.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vm.sh
index ac4ae7c3..995343f9 100755
--- a/Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vm.sh
+++ b/Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vm.sh
@@ -5,9 +5,8 @@ echo $0 started at $(date)
 
 mkdir -p logs/
 
-for PARTICIPANT in `seq ${START} ${MAX}` ; do
-    ./delete-openstack-vm.sh ${PARTICIPANT} 2>&1 | tee -a logs/delete-openstack-user-and-project-${PARTICIPANT}.log &
-done
+./delete-openstack-vm.sh 2>&1 | tee -a logs/delete-openstack-osm-vms.log &
+
 wait
 
 echo $0 $@ complete at $(date)
\ No newline at end of file
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh
index 0756d6f5..0fdc763f 100755
--- a/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh
+++ b/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh
@@ -3,10 +3,10 @@ echo $0 started at $(date)
 
 . ./common-vars
 
-./run-create-openstack-vm.sh $@
-./run-vm-initial-setup.sh $@
+#./run-create-openstack-vm.sh $@
+#./run-vm-initial-setup.sh $@
 ./run-install-osm.sh $@
 wait
-./run-osm-vim-k8scluster-add.sh $@
+#./run-osm-vim-k8scluster-add.sh $@
 
 echo $0 $@ complete at $(date)
\ No newline at end of file
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh
index df9f15e5..e33cdbd7 100755
--- a/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh
+++ b/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh
@@ -1,10 +1,10 @@
 #!/bin/bash
 echo $0 started at $(date)
 
-. ./common-vars $@
+. ./common-vars
+. ./main_credentials.rc
 
 for PARTICIPANT in `seq ${START} ${MAX}` ; do
-  . ./openstack_credentials.rc PARTICIPANT
   VM_NAME=`expr charmedosm-${PARTICIPANT}`
   IP=`openstack server list --name $VM_NAME --column Networks -f yaml | head -3 | tail -1 | grep -o '[0-9]\+[.][0-9]\+[.][0-9]\+[.][0-9]\+'`
   echo $IP
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh
index 238144b5..eef77bb4 100755
--- a/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh
+++ b/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh
@@ -1,11 +1,11 @@
 #!/bin/bash
 echo $0 started at $(date)
 
-. ./common-vars $@
+. ./common-vars
+. ./main_credentials.rc
 
 for PARTICIPANT in `seq ${START} ${MAX}` ; do
-  . ./openstack_credentials.rc PARTICIPANT
-  VM_NAME=`expr charmedosm-${PARTICIPANT}`
+  VM_NAME=`expr hackfest-k8scluster`  # There is only one VM which is created by Mark in admin project
   IP=`expr openstack server list --name $VM_NAME --column Networks -f yaml | head -3 | tail -1 | grep -o '[0-9]\+[.][0-9]\+[.][0-9]\+[.][0-9]\+'`
   scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ./hackfest_rsa.pub ubuntu@${IP}:.ssh/ &
   scp -o StrictHostKeyChecking=no -i hackfest_rsa vm-microk8s-setup.sh ubuntu@${IP}: &
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-osm-vim-k8scluster-add.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-osm-vim-k8scluster-add.sh
index 862eb964..2114415b 100755
--- a/Hackfest_Demos/OSM-15/setup_scripts/run-osm-vim-k8scluster-add.sh
+++ b/Hackfest_Demos/OSM-15/setup_scripts/run-osm-vim-k8scluster-add.sh
@@ -1,10 +1,10 @@
 #!/bin/bash
 echo $0 started at $(date)
 
-. ./common-vars $@
+. ./common-vars
+. ./main_credentials.rc
 
 for PARTICIPANT in `seq ${START} ${MAX}` ; do
-    . ./openstack_credentials.rc PARTICIPANT
     VM_NAME=`expr charmedosm-${PARTICIPANT}`
     IP=`openstack server list --name $VM_NAME --column Networks -f yaml | head -3 | tail -1 | grep -o '[0-9]\+[.][0-9]\+[.][0-9]\+[.][0-9]\+'`
     OS_USERNAME=hackfest15group${PARTICIPANT}
@@ -30,7 +30,7 @@ EOF
     while [ $? -ne -0 ] ; do
         ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} ". .profile;osm version"
     done
-
+    scp -o StrictHostKeyChecking=no -i hackfest_rsa ${OS_USERNAME}.rc ubuntu@${IP}: &
     ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} ". .profile;osm vim-create --name openstack --user ${OS_USERNAME} --password ${OS_PASSWORD} --auth_url ${OS_AUTH_URL} --tenant ${OS_PROJECT_NAME} --account_type openstack --config=\"{ management_network_name: osm-ext, security_groups: default, insecure: true, project_domain_name: ${OS_PROJECT_DOMAIN_NAME}, user_domain_name: ${OS_USER_DOMAIN_NAME} }\"" 2>&1 | tee -a logs/osm-vim-k8scluster-add-${PARTICIPANT}.log
     ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} '. .profile;osm k8scluster-add --creds hackfest-k8s.yaml --vim openstack --k8s-nets "{"net1": "osm-ext"}" --version 1.26 --namespace hackfest --description "Microk8s cluster" hackfest' 2>&1 | tee -a logs/osm-vim-k8scluster-add-${PARTICIPANT}.log
     ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} "echo . ~/${OS_USERNAME}.rc >> .bashrc"
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-vm-initial-setup.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-vm-initial-setup.sh
index 183cf3df..61971f06 100755
--- a/Hackfest_Demos/OSM-15/setup_scripts/run-vm-initial-setup.sh
+++ b/Hackfest_Demos/OSM-15/setup_scripts/run-vm-initial-setup.sh
@@ -2,17 +2,14 @@
 
 echo $0 started at $(date)
 . ./common-vars $@
+. ./main_credentials.rc
 
 for PARTICIPANT in `seq ${START} ${MAX}` ; do
-  . ./openstack_credentials.rc $PARTICIPANT
   VM_NAME=`expr charmedosm-${PARTICIPANT}`
   IP=`openstack server list --name $VM_NAME --column Networks -f yaml | head -3 | tail -1 | grep -o '[0-9]\+[.][0-9]\+[.][0-9]\+[.][0-9]\+'`
   echo $IP
-  scp -o StrictHostKeyChecking=no -i hackfest_rsa vm-initial-setup.sh ubuntu@${IP}: &
-  scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ubuntu@${IP}:.ssh/id_rsa &
-  scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa.pub ubuntu@${IP}:.ssh/id_rsa.pub &
-  scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ./hackfest_rsa.pub ubuntu@${IP}:.ssh/ &
-  ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} "./vm-initial-setup.sh" 2>&1 | tee -a logs/vm-initial-setup-${PARTICIPANT}.log &
+  scp -o StrictHostKeyChecking=no -i hackfest_rsa ./vm-initial-setup.sh ubuntu@${IP}: &
+  ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} ./vm-initial-setup.sh 2>&1 | tee -a logs/vm-initial-setup-${PARTICIPANT}.log &
 done
 wait
 
diff --git a/Hackfest_Demos/OSM-15/setup_scripts/ubuntu@172.21.248.100 b/Hackfest_Demos/OSM-15/setup_scripts/ubuntu@172.21.248.100
deleted file mode 100755
index 26fe2e03..00000000
--- a/Hackfest_Demos/OSM-15/setup_scripts/ubuntu@172.21.248.100
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/bash
-echo $0 started at $(date)
-
-sudo sed -i "s/127.0.0.1 /127.0.0.1 $HOSTNAME /" /etc/hosts
-echo 'ubuntu:hackfest'| sudo chpasswd
-sudo sed -i "s/^PasswordAuthentication.*/PasswordAuthentication yes/" /etc/ssh/sshd_config
-sudo service ssh restart
-echo "Acquire::http::Proxy \"http://172.21.1.1:3142\";" | sudo tee /etc/apt/apt.conf.d/proxy.conf
-echo "Acquire::https::Proxy \"http://172.21.1.1:3142\";" | sudo tee -a /etc/apt/apt.conf.d/proxy.conf
-
-sudo apt update
-sudo apt full-upgrade -y
-
-sudo snap install code --classic
-sudo snap install openstackclients yq jq
-
-echo net.ipv4.ip_forward=1 | sudo tee -a /etc/sysctl.conf
-sudo sysctl net.ipv4.ip_forward=1
-sudo iptables -t nat -A POSTROUTING -o ens3 -j MASQUERADE
-cat << EOF |  sudo tee /etc/rc.local
-#!/bin/sh -e
-echo iptables -t nat -A POSTROUTING -o ens3 -j MASQUERADE
-EOF
-sudo chmod +x /etc/rc.local
-
-git clone --recurse-submodules -j8 https://osm.etsi.org/gitlab/vnf-onboarding/osm-packages.git
-
-# Clone OSM code
-mkdir $HOME/OSM/
-pushd $HOME/OSM
-BRANCH=master
-for MDG in common devops IM LCM MON N2VC NBI NG-SA NG-UI osmclient PLA POL RO tests; do
- git clone https://osm.etsi.org/gerrit/osm/${MDG}
- git -C ${MDG} checkout ${BRANCH}
-done
-popd
-
-# Export Module paths
-cat << 'EOF' > $HOME/osm-vars.sh
-export GIT_PATH=$HOME/OSM
-export COMMON_LOCAL_PATH="$GIT_PATH/common"
-export LCM_LOCAL_PATH="$GIT_PATH/LCM"
-export MON_LOCAL_PATH="$GIT_PATH/MON"
-export N2VC_LOCAL_PATH="$GIT_PATH/N2VC"
-export NBI_LOCAL_PATH="$GIT_PATH/NBI"
-export POL_LOCAL_PATH="$GIT_PATH/POL"
-export RO_LOCAL_PATH="$GIT_PATH/RO"
-EOF
-
-echo ". $HOME/osm-vars.sh" >> $HOME/.bashrc
-. $HOME/osm-vars.sh
-
-echo $0 $@ complete at $(date)
-- 
GitLab