From 9ae857e8f45ee53aaf2fc11f71606164bd71e8d7 Mon Sep 17 00:00:00 2001 From: Gulsum Atici Date: Tue, 6 Jun 2023 19:40:09 +0300 Subject: [PATCH 1/9] Setup scripts for Charmed OSM Hackfest 15 Signed-off-by: Gulsum Atici --- Hackfest_Demos/OSM-15/setup_scripts/README.md | 55 +++++++++++++++++++ .../OSM-15/setup_scripts/common-vars | 38 +++++++++++++ .../OSM-15/setup_scripts/hackfest_rsa | 38 +++++++++++++ .../OSM-15/setup_scripts/hackfest_rsa.pub | 1 + .../OSM-15/setup_scripts/logs/.gitkeep | 0 .../setup_scripts/openstack_credentials.rc | 11 ++++ .../OSM-15/setup_scripts/osm-cloud-init.yaml | 17 ++++++ .../OSM-15/setup_scripts/run-full-setup.sh | 12 ++++ .../OSM-15/setup_scripts/run-install-osm.sh | 20 +++++++ .../setup_scripts/run-microk8s-setup.sh | 21 +++++++ .../run-osm-vim-k8scluster-add.sh | 50 +++++++++++++++++ .../setup_scripts/run-vm-initial-setup.sh | 24 ++++++++ .../OSM-15/setup_scripts/vm-initial-setup.sh | 53 ++++++++++++++++++ .../OSM-15/setup_scripts/vm-install-osm.sh | 52 ++++++++++++++++++ .../OSM-15/setup_scripts/vm-microk8s-setup.sh | 44 +++++++++++++++ .../OSM-15/setup_scripts/whitemist.yaml | 19 +++++++ 16 files changed, 455 insertions(+) create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/README.md create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/common-vars create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest_rsa create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest_rsa.pub create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/logs/.gitkeep create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/osm-cloud-init.yaml create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/run-osm-vim-k8scluster-add.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/run-vm-initial-setup.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/vm-initial-setup.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/vm-install-osm.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/vm-microk8s-setup.sh create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/whitemist.yaml diff --git a/Hackfest_Demos/OSM-15/setup_scripts/README.md b/Hackfest_Demos/OSM-15/setup_scripts/README.md new file mode 100644 index 00000000..8e0dd10b --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/README.md @@ -0,0 +1,55 @@ +## Setting up Participant VMs + +First, check the common-vars for the following: + +``` +APT_PROXY=http://172.21.1.1:3142 +FLAVOR=m1.xlarge +PROJECT=f15ab4f845dc4052811fce96a3676ac8 +SUBNET=172.21.248 +``` + +APT_PROXY: the address of a caching web proxy for installing packages +FLAVOR: the flavour of the new VM to launch. Must have at least 4 CPUs, 8 GB RAM and 60 GB Disk. +PROJECT: The project ID in which to launch the new VM +SUBNET: the first three octets of the subnet to use. IP addresses will be allocated from this subnet, starting with .101 - .199 + + +### Initial Configuration +This script updates apt, upgrades the system to the latest 20.04 and installs remote desktop software + +``` +./run-vm-initial-setup.sh +``` + +### Install Microk8s + +This script will configure the Microk8s VM launched by the create-openstack-user-and-project script. +``` +./run-microk8s-setup.sh +``` + + +### Install OSM + +This script downloads the installer and runs it. It also sets the OSM admin password to `hackfest`. +``` +./run-install-osm.sh +``` + +### Add VIM and K8s Cluster + +``` +./run-osm-vim-k8scluster-add.sh +``` + +## Full Flow + +``` +./run-create-openstack-user-and-project.sh 1 1 +./run-vm-setup.sh 1 1 +./run-microk8s-setup.sh 1 1 +./run-install-osm.sh 1 1 +./run-osm-vim-k8scluster-add.sh 1 1 +``` + diff --git a/Hackfest_Demos/OSM-15/setup_scripts/common-vars b/Hackfest_Demos/OSM-15/setup_scripts/common-vars new file mode 100644 index 00000000..7f30e84e --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/common-vars @@ -0,0 +1,38 @@ +cleanup() { + # kill all processes whose parent is this process + pkill -P $$ +} + +for sig in INT QUIT HUP TERM; do + trap " + cleanup + trap - $sig EXIT + kill -s $sig "'"$$"' "$sig" +done +trap cleanup EXIT + +if [ ! -z ${DEBUG} ]; then + set -x +fi + +START=5 +MAX=10 + +if [ ! -z $2 ] ; then + START=$1 + MAX=$2 +elif [ ! -z $1 ] ; then + START=$1 + MAX=$1 +fi + +# ETSI VIM ADMIN_DOMAIN=default +APT_PROXY=http://172.21.1.1.3142 +FLAVOR=osm.sanity +KEY_NAME=hackfest +NETWORK=osm-ext +SUBNET=172.21.19 +ZONE=hackfest + +MANAGEMENT_SUBNET=10.1.0 +PRIVATE_SUBNET=192.168.239 diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest_rsa b/Hackfest_Demos/OSM-15/setup_scripts/hackfest_rsa new file mode 100644 index 00000000..21933873 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest_rsa @@ -0,0 +1,38 @@ +-----BEGIN OPENSSH PRIVATE KEY----- +b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAABlwAAAAdzc2gtcn +NhAAAAAwEAAQAAAYEAnJa7ao5DB7kCWoPYkdP0f/w5rW7t7YzsTYCHdKV8M/mktewb+N3E +bFxcxs7Caut5M9M+gpZpJyY0d/M7tzvhlAbWvdicwkjLgU6ujKZwwuxfPyc7UJrxw0dwNl +ubtaFbWa/tXygKlk+5/ICFFYY4d6dXkqfYjO/CUfpSXOw+hL7qS9ZkbnXFoLiLwnz0Zm5w +ATIUdyDtH9dzrWCRwFa0QKEmuakRxJoY5BLra9Hfork8VZqFmwBtA4rsRHBu820LYwRyVq +k4OXYKjSfWXSJWPoysOtOt9lJeaA/S+DitAQwCwUTSuE6iXGLAfnQbi4G5cnjMj1+3A6xj +p0iwM//3kl3HsJGX6GVlD5hWzASjzQoGi4wyHmM3S3OFwQl06Ljv4bRjNInUFE/23m2zQg +1h3ieQlPMkbxLHnSdMW+JBFMH9a6zyarLmNX2hsx4DviwDxqCSA+Bh9gcNR/pWDf4bLcBq +wmCjBBQ28ySdwpv/hkPn9zoyaRBrFIrfJkbz7MInAAAFiDW+R9o1vkfaAAAAB3NzaC1yc2 +EAAAGBAJyWu2qOQwe5AlqD2JHT9H/8Oa1u7e2M7E2Ah3SlfDP5pLXsG/jdxGxcXMbOwmrr +eTPTPoKWaScmNHfzO7c74ZQG1r3YnMJIy4FOroymcMLsXz8nO1Ca8cNHcDZbm7WhW1mv7V +8oCpZPufyAhRWGOHenV5Kn2IzvwlH6UlzsPoS+6kvWZG51xaC4i8J89GZucAEyFHcg7R/X +c61gkcBWtEChJrmpEcSaGOQS62vR36K5PFWahZsAbQOK7ERwbvNtC2MEclapODl2Co0n1l +0iVj6MrDrTrfZSXmgP0vg4rQEMAsFE0rhOolxiwH50G4uBuXJ4zI9ftwOsY6dIsDP/95Jd +x7CRl+hlZQ+YVswEo80KBouMMh5jN0tzhcEJdOi47+G0YzSJ1BRP9t5ts0INYd4nkJTzJG +8Sx50nTFviQRTB/Wus8mqy5jV9obMeA74sA8agkgPgYfYHDUf6Vg3+Gy3AasJgowQUNvMk +ncKb/4ZD5/c6MmkQaxSK3yZG8+zCJwAAAAMBAAEAAAGARFFbKW0x/3+PcFBPv6f654/y1i +Esu1SdkF7AOnssyjxjyV9fAOA4n5JYhACXQDDGK39BqZXYANWhVKgRaKs+iufE7wU/t2At +MZhTfVfsoI6iK5qBPXSsgCd95KlpMQBaK7Ie3UJKBDR6j5i+95ocrs+a3IhQaYT9gei14I +bN6/qjnDzIiozlkW6Sw2Li+oG6ajsgRK1f52GHvaABVyo88GmezKff8afNrkw23E6vxH4O +vcZx/iNcbIxC8sUfEyOCgoFyiJJcg1Jk3klI7huqYGFRerosN4LrDlaA6nlD9dO1sQslAE +zRAr3BohwW1XHVN7Il0A/x5Tq92zPKmRQ2IypZ3waqAsXuhUOPedxhEBl45tfo7FSyc8K8 +j4qyHuhbQfMWpLzcM/i2by359Oex0qC9hjAySm946hJMFleLpOnIzwn1T4Qb+TEHzESPFP +gUyZmqLRcdeTL29DkSqozu61Jf3kuOhUo0/UAB+R8x3fRDYG/76zxVSvUVZSFMpzDhAAAA +wQCdYZyt0TbMCSFova3Rqf+eRLAU0ahqiSdaFccVAIVX3a+EDOoiY+serJy0S0rQ4+foNg +dCE6/+q/Nljemn8o6F0SlmXLgHxwMu4x2nYFIdpLqxp1Y8H2eRhUdsSZWUBmQ4cFO8bKZC +Dn//EL1O4sukrP8ulNw0t/il+hM7+lnPRwGoUg77xztL6jt2xCnJ5zWxmRCZZ9rtV1GW3T +uVwu2kyPMDzFZQq0v/v07e1Hk1SQq4UNLNrLqgPd+PGucBvSsAAADBAMIcGKmgcGFoqFot +a0vNrUFeK1ajxJm/GElUqxTFYloIAiCIUcVmwdF06MyKzib8dMPn2jLusls2D87Ks752yi +2nt3Q8XPUFr7FFhL3lEViHhFMQ4wfWQzQwHTgXJKZQkObrxRZc9waBlgROYzPdgw/MjefM +yeFcnVTth+VgMT/1LXyMGCr8Ay9wa6EHcz24o3+14KmsMZYnNNOsMxmeIYMHRW+m7QLoP+ +BdMqtkL68JHWXTogtsxRqF2XEVAmFT9wAAAMEAzoQL+sIhPrFsU/8SbVZ7c9CYHZt+hDgS +NPT7hn8GgirD7Vd74JkYQz4YltkiHesWanAOkiUqrk/azGGthQI9uIJXGOHbxhkL/42AnN +twSQcvzaBeVVM+KndhB5Z7r6jp13XEnAIvFcQvl5932oeox4Kb+XFgqbgtL+OL2tUYJQtK +WnPxxhS0FEBcdaCH4AQgE4DSnaer+J8oMLCq/lWhS86q7SWpbTjNNDOSS7fjWTh4LIoGRy +oTlqvM03EemhdRAAAAEW1hcmtAbWFyay1HNS01MDkwAQ== +-----END OPENSSH PRIVATE KEY----- diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest_rsa.pub b/Hackfest_Demos/OSM-15/setup_scripts/hackfest_rsa.pub new file mode 100644 index 00000000..5efe445d --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest_rsa.pub @@ -0,0 +1 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCclrtqjkMHuQJag9iR0/R//Dmtbu3tjOxNgId0pXwz+aS17Bv43cRsXFzGzsJq63kz0z6ClmknJjR38zu3O+GUBta92JzCSMuBTq6MpnDC7F8/JztQmvHDR3A2W5u1oVtZr+1fKAqWT7n8gIUVhjh3p1eSp9iM78JR+lJc7D6EvupL1mRudcWguIvCfPRmbnABMhR3IO0f13OtYJHAVrRAoSa5qRHEmhjkEutr0d+iuTxVmoWbAG0DiuxEcG7zbQtjBHJWqTg5dgqNJ9ZdIlY+jKw60632Ul5oD9L4OK0BDALBRNK4TqJcYsB+dBuLgblyeMyPX7cDrGOnSLAz//eSXcewkZfoZWUPmFbMBKPNCgaLjDIeYzdLc4XBCXTouO/htGM0idQUT/bebbNCDWHeJ5CU8yRvEsedJ0xb4kEUwf1rrPJqsuY1faGzHgO+LAPGoJID4GH2Bw1H+lYN/hstwGrCYKMEFDbzJJ3Cm/+GQ+f3OjJpEGsUit8mRvPswic= mark@mark-G5-5090 diff --git a/Hackfest_Demos/OSM-15/setup_scripts/logs/.gitkeep b/Hackfest_Demos/OSM-15/setup_scripts/logs/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc b/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc new file mode 100644 index 00000000..aebdce37 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc @@ -0,0 +1,11 @@ +#OpenStack Credentials +PARTICIPANT=$1 +export OS_AUTH_URL=http://172.21.247.1:5000/v3 +export OS_PROJECT_NAME=hackfest15group${PARTICIPANT} +export OS_USER_DOMAIN_NAME='Default' +export OS_PROJECT_DOMAIN_ID='default' +export OS_USERNAME=hackfest15group${PARTICIPANT} +export OS_PASSWORD=hackfest15group-${PARTICIPANT}! +export OS_REGION_NAME='RegionOne' +export OS_INTERFACE=public +export OS_IDENTITY_API_VERSION=3 diff --git a/Hackfest_Demos/OSM-15/setup_scripts/osm-cloud-init.yaml b/Hackfest_Demos/OSM-15/setup_scripts/osm-cloud-init.yaml new file mode 100644 index 00000000..7384a541 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/osm-cloud-init.yaml @@ -0,0 +1,17 @@ +#cloud-config +password: hackfest +chpasswd: { expire: False } +ssh_pwauth: True + +write_files: +- path: /etc/netplan/99-default-route.yaml + owner: root:root + content: | + network: + version: 2 + ethernets: + ens4: + dhcp4-overrides: + use-routes: false +runcmd: +- reboot \ 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 new file mode 100755 index 00000000..ab57d1aa --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh @@ -0,0 +1,12 @@ +#!/bin/bash +echo $0 started at $(date) + +. common-vars + +./run-vm-initial-setup.sh $@ +./run-microk8s-setup.sh $@ & +./run-install-osm.sh $@ +wait +./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 new file mode 100755 index 00000000..426dcb85 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh @@ -0,0 +1,20 @@ +#!/bin/bash +echo $0 started at $(date) + +. ./common-vars $@ + +for PARTICIPANT in `seq ${START} ${MAX}` ; do + IP=`expr ${PARTICIPANT} + 0` + source ./openstack_credentials.rc PARTICIPANT + scp -o StrictHostKeyChecking=no -i hackfest_rsa ./vm-install-osm.sh ubuntu@${SUBNET}.${IP}: & +done +wait + +for PARTICIPANT in `seq ${START} ${MAX}` ; do + source ./openstack_credentials.rc PARTICIPANT + IP=`expr ${PARTICIPANT} + 0` + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} ./vm-install-osm.sh 2>&1 | tee -a logs/vm-install-osm-${PARTICIPANT}.log& +done +wait + +echo $0 $@ complete at $(date) \ No newline at end of file diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh new file mode 100755 index 00000000..b9c59f21 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh @@ -0,0 +1,21 @@ +#!/bin/bash +echo $0 started at $(date) + +. ./common-vars $@ + +for PARTICIPANT in `seq ${START} ${MAX}` ; do + source ./openstack_credentials.rc PARTICIPANT + IP=`expr ${PARTICIPANT} + 0` + scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ./hackfest_rsa.pub ubuntu@${SUBNET}.${IP}:.ssh/ & + scp -o StrictHostKeyChecking=no -i hackfest_rsa vm-microk8s-setup.sh ubuntu@${SUBNET}.${IP}: & +done +wait + +for PARTICIPANT in `seq ${START} ${MAX}` ; do + source ./openstack_credentials.rc PARTICIPANT + IP=`expr ${PARTICIPANT} + 0` + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} "scp -o StrictHostKeyChecking=no -i .ssh/hackfest_rsa vm-microk8s-setup.sh 10.0.0.11:; ssh -o StrictHostKeyChecking=no -i .ssh/hackfest_rsa 10.0.0.11 ./vm-microk8s-setup.sh" 2>&1 | tee -a logs/vm-microk8s-setup-${PARTICIPANT}.log& +done +wait + +echo $0 $@ complete at $(date) \ No newline at end of file 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 new file mode 100755 index 00000000..a60b110b --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-osm-vim-k8scluster-add.sh @@ -0,0 +1,50 @@ +#!/bin/bash +echo $0 started at $(date) + +. ./common-vars $@ + +for PARTICIPANT in `seq ${START} ${MAX}` ; do + export OS_AUTH_URL=http://172.21.247.1:5000/v3 + export OS_PROJECT_NAME=hackfest15group${PARTICIPANT} + export OS_USER_DOMAIN_NAME='Default' + export OS_PROJECT_DOMAIN_ID='default' + export OS_USERNAME=hackfest15group${PARTICIPANT} + export OS_PASSWORD=hackfest15group-${PARTICIPANT}! + export OS_REGION_NAME='RegionOne' + export OS_INTERFACE=public + export OS_IDENTITY_API_VERSION=3 + IP=`expr ${PARTICIPANT} + 0` + + OS_USERNAME=hackfest15group${PARTICIPANT} + OS_PASSWORD=hackfest15group-${PARTICIPANT}! + OS_PROJECT_NAME=hackfest15group${PARTICIPANT} + + cat << EOF > ${OS_USERNAME}.rc +export OS_AUTH_TYPE=password +export OS_AUTH_URL=${OS_AUTH_URL} +export OS_DOMAIN_NAME=${OS_DOMAIN_NAME} +export OS_IDENTITY_API_VERSION=3 +export OS_INTERFACE=public +export OS_PASSWORD=${OS_PASSWORD} +export OS_PROJECT_DOMAIN_NAME=${OS_DOMAIN_NAME} +export OS_PROJECT_NAME=${OS_PROJECT_NAME} +export OS_REGION_NAME=${OS_REGION_NAME} +export OS_TENANT_NAME=${OS_USERNAME} +export OS_USERNAME=${OS_USERNAME} +export OS_USER_DOMAIN_NAME=${OS_DOMAIN_NAME} +EOF + + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} ". .profile;osm version" + while [ $? -ne -0 ] ; do + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} ". .profile;osm version" + done + scp -o StrictHostKeyChecking=no -i hackfest_rsa ${OS_USERNAME}.rc ubuntu@${SUBNET}.${IP}: + scp -o StrictHostKeyChecking=no -i hackfest_rsa pc-cacert.pem ubuntu@${SUBNET}.${IP}: + + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${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@${SUBNET}.${IP} "scp -o StrictHostKeyChecking=no -i .ssh/hackfest_rsa ${MANAGEMENT_SUBNET}.11:kubeconfig.yaml ." 2>&1 | tee -a logs/osm-vim-k8scluster-add-${PARTICIPANT}.log + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} '. .profile;osm k8scluster-add --creds kubeconfig.yaml --vim openstack --k8s-nets "{"net1": "osm-ext"}" --version 1.23 --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@${SUBNET}.${IP} "echo . ~/${OS_USERNAME}.rc >> .bashrc" +done + +echo $0 $@ complete at $(date) \ No newline at end of file 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 new file mode 100755 index 00000000..bc82bb2e --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-vm-initial-setup.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +echo $0 started at $(date) +. ./common-vars $@ + +for PARTICIPANT in `seq ${START} ${MAX}` ; do + IP=`expr ${PARTICIPANT} + 0` + source ./openstack_credentials.rc PARTICIPANT + scp -o StrictHostKeyChecking=no -i hackfest_rsa vm-initial-setup.sh ubuntu@${SUBNET}.${IP}: & + scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ubuntu@${SUBNET}.${IP}:.ssh/id_rsa & + scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa.pub ubuntu@${SUBNET}.${IP}:.ssh/id_rsa.pub & + scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ./hackfest_rsa.pub ubuntu@${SUBNET}.${IP}:.ssh/ & + scp -o StrictHostKeyChecking=no -i hackfest_rsa vm-microk8s-setup.sh ubuntu@${SUBNET}.${IP}: & +done +wait + +for PARTICIPANT in `seq ${START} ${MAX}` ; do + IP=`expr ${PARTICIPANT} + 0` + source ./openstack_credentials.rc PARTICIPANT + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} "./vm-initial-setup.sh" 2>&1 | tee -a logs/vm-initial-setup-${PARTICIPANT}.log & +done +wait + +echo $0 $@ complete at $(date) \ No newline at end of file diff --git a/Hackfest_Demos/OSM-15/setup_scripts/vm-initial-setup.sh b/Hackfest_Demos/OSM-15/setup_scripts/vm-initial-setup.sh new file mode 100755 index 00000000..26fe2e03 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/vm-initial-setup.sh @@ -0,0 +1,53 @@ +#!/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) diff --git a/Hackfest_Demos/OSM-15/setup_scripts/vm-install-osm.sh b/Hackfest_Demos/OSM-15/setup_scripts/vm-install-osm.sh new file mode 100755 index 00000000..eba4e370 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/vm-install-osm.sh @@ -0,0 +1,52 @@ +#!/bin/bash +echo $0 started at $(date) + +sudo snap install microk8s --classic --channel=1.26/stable +sudo snap install jq + +sudo mkdir -p /var/snap/microk8s/current/args/certs.d/docker.io +cat << EOF | sudo tee /var/snap/microk8s/current/args/certs.d/docker.io/hosts.toml +server = "http://172.21.1.1:5000" + +[host."http://172.21.1.1:5000"] +capabilities = ["pull", "resolve"] +skip_verify = true +plain-http = true +EOF + +sudo systemctl restart snap.microk8s.daemon-containerd.service +sudo microk8s.enable storage + +sudo snap alias microk8s.kubectl kubectl + +wget https://osm-download.etsi.org/ftp/osm-13.0-thirteen/install_osm.sh +chmod +x ./install_osm.sh +./install_osm.sh --charmed -R testing-daily -t testing-daily -r testing -y 2>&1 | tee charmed_install_log.txt + +# Set our environment to talk to the new OSM +grep '^export OSM' ~/charmed_install_log.txt >> ~/.bashrc + +while [ 1 ] ; do + osm version + if [ $? -eq 0 ]; then break ; fi +done + + +# Expose our services +sudo sed -i "s/127.0.0.1 /127.0.0.1 nbi.osm ui.osm grafana.osm prometheus.osm /" /etc/hosts + +juju config -m osm grafana site_url=https://grafana.osm +juju config -m osm prometheus site_url=https://prometheus.osm +juju config -m osm nbi external-hostname=nbi.osm +juju config -m osm ng-ui external-hostname=ui.osm + +echo "export OSM_HOSTNAME=nbi.osm:443" >> .bashrc +echo "export OSM_HOSTNAME=nbi.osm:443" >> .profile +echo "export OSM_PASSWORD=hackfest" >> .bashrc +echo "export OSM_PASSWORD=hackfest" >> .profile + +# Set some sane defaults for LXD +lxc profile set default limits.memory 1GB +lxc profile set default limits.cpu 2 + +echo $0 $@ complete at $(date) \ No newline at end of file diff --git a/Hackfest_Demos/OSM-15/setup_scripts/vm-microk8s-setup.sh b/Hackfest_Demos/OSM-15/setup_scripts/vm-microk8s-setup.sh new file mode 100755 index 00000000..25a311f3 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/vm-microk8s-setup.sh @@ -0,0 +1,44 @@ +#!/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 microk8s --classic --channel=1.26/stable +sudo mkdir -p /var/snap/microk8s/current/args/certs.d/docker.io +cat << EOF | sudo tee /var/snap/microk8s/current/args/certs.d/docker.io/hosts.toml +server = "http://172.21.1.1:5000" + +[host."http://172.21.1.1:5000"] +capabilities = ["pull", "resolve"] +skip_verify = true +plain-http = true +EOF + +sudo microk8s stop +sudo microk8s start +sudo microk8s.enable storage + +HOST_IP=10.0.0.11 +METALLB_START=10.0.0.201 +METALLB_END=10.0.0.250 +sudo cat /var/snap/microk8s/current/args/kube-apiserver | grep advertise-address || ( echo "--advertise-address ${HOST_IP}" | sudo tee -a /var/snap/microk8s/current/args/kube-apiserver; sudo microk8s.stop; sudo microk8s.start; ) + +sudo microk8s.enable metallb:${METALLB_START}-${METALLB_END} +sudo microk8s.enable ingress storage dns +sudo microk8s status --wait-ready +KUBECONFIG=~/kubeconfig.yaml +sudo microk8s config | tee ${KUBECONFIG} + +sudo usermod -a -G microk8s ubuntu +sudo chown -f -R ubuntu ~/.kube +sudo snap alias microk8s.kubectl kubectl + +echo $0 $@ complete at $(date) \ No newline at end of file diff --git a/Hackfest_Demos/OSM-15/setup_scripts/whitemist.yaml b/Hackfest_Demos/OSM-15/setup_scripts/whitemist.yaml new file mode 100644 index 00000000..5809d6cc --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/whitemist.yaml @@ -0,0 +1,19 @@ + apiVersion: v1 + clusters: + - cluster: + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMvakNDQWVhZ0F3SUJBZ0lCQURBTkJna3Foa2lHOXcwQkFRc0ZBREFWTVJNd0VRWURWUVFERXdwcmRXSmwKY201bGRHVnpNQjRYRFRJeU1EY3dOekl5TlRrMU9Gb1hEVE15TURjd05ESXlOVGsxT0Zvd0ZURVRNQkVHQTFVRQpBeE1LYTNWaVpYSnVaWFJsY3pDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTFVDCjdXUkFZTU90SmJ1U1loQ2FrVDZ3VUdKZEtZdUdRb29xd3F5WStnRW8yU1RnZEhPZEdpZzVJMjF3cG9tdFV1V2sKREhmZUJHMHIvRGkvUHdML3VEb0tqUFVvdU5JdTBYc1FTYXIrOGNMTkdWSDczSnBJcWRaZDVEREthdWFacU9ONQovdlJjdVBiWHdLNldkRmdldDB3RWQycVlKQytmNk9Dcm5oUnlSOGJvWVdxZ2kvNzhNSHFwMERNQ0I4TDFHRHVmCjdJVEFodUtBaUM1a2llQ1NzY1cwT0NVdTZPazdCVTZVc3dhd2phRVlWbUVkS0Flb0o2UWNGTHBnWkFvdDA2aFIKYlRqTmNkLzdLRDNCZVJWc3QycGZqL2lQdlVXaDBiR1VWREZDRXV1UC9VTUNRdHZ6SWVIUEhZamtjNkZYSldWSwpyZGk5bGNuV1FRSlVJVENLcFlzQ0F3RUFBYU5aTUZjd0RnWURWUjBQQVFIL0JBUURBZ0trTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0hRWURWUjBPQkJZRUZQMGRZVzdhVVlMZ0dpNk53aW1iV3llUWh0bjZNQlVHQTFVZEVRUU8KTUF5Q0NtdDFZbVZ5Ym1WMFpYTXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQVBoNGhOUGlPUlZVZXQzRXgwTgpHekNUM1Q1OUtzMHFaa0JUMnpkM29qc0tsUS9LTS85TzJEa2YzdElnbkV6ZWlIdlMzUExTaTZkaDhISzE3MlNQCnMyUy95bW5nTWZMMlkyYU85ZTA2L3B1NEFvUG56c2ZSOFhzNnVXc2N5UkdVbXNMcjR5eVBFaythL0F4OXcxS2MKeHFQZDB2bXo4OVZMVHFHb2hjZVJKcmVkMU1RcnNnMnMzR1pzRDU4MVRpVlI0bGQ3VlpNSnpGM01Wa3hOazNnagp6dm5SQU01MHhPdmx1ek9ZVHo5aEthRjk0QTVta2pzck02ZStmdHN0dEpzQWduWnpIVHlaUFFkYW9TTE9YeWx6CnY2VGhrYjZvLzFXWjVTQjMrcCttRlJYYmN4UC9tS04zNktiem5UOWJpVlJTRkVXcWswTmdHdUZiNDBvNkJLM3gKckFRPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== + server: https://172.21.248.125:6443 + name: cluster.local + contexts: + - context: + cluster: cluster.local + user: kubernetes-admin + name: kubernetes-admin@cluster.local + current-context: kubernetes-admin@cluster.local + kind: Config + preferences: {} + users: + - name: kubernetes-admin + user: + client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURJVENDQWdtZ0F3SUJBZ0lJSkFwcnBoNU9PUjB3RFFZSktvWklodmNOQVFFTEJRQXdGVEVUTUJFR0ExVUUKQXhNS2EzVmlaWEp1WlhSbGN6QWVGdzB5TWpBM01EY3lNalU1TlRoYUZ3MHlNekEzTURjeU16QXdNREJhTURReApGekFWQmdOVkJBb1REbk41YzNSbGJUcHRZWE4wWlhKek1Sa3dGd1lEVlFRREV4QnJkV0psY201bGRHVnpMV0ZrCmJXbHVNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXhqWW0wUUlYL1NsbENlVjgKb042Yy9YWmJjZ3crNENTYk9UTU9qYjNQeGJsRmVGbDlxeTZGQVVheVlxb3BjTjc0d2h1WlEvMlZ2OTAvcWs5VAo0aFVWdytFdjNmWkhsc3E0cnJWZDVBK0FINTBscVYvVm10VDV5dWJYMURjSFhVdDU5c3dtc1c2aWxRVDNvbG1uClJuaEpOS2ZvajRqUEw2Z1JrL01FL3Q5VHVpamtPdHBIaWd2VW1aTWpWQkMwb2NRajlQekRJcnZSUUpkSnNIdzAKZ1lJNUZldXlkY3BoeENSc3NQdE00MnBDMjZjQkZIdWpzTzUwZE1ETDRIZUV4ZGhTYUxOZDJRbWxSQy84NGNnegpvbk43b1ZmR0VqL0FVSFFCa3RtZ2RiSU9sd0JaZjVXUzVZeThGcCtGNEZQZG1EYlpmZ3dZeUNZZnNNOEZTb2xwClA0TU84d0lEQVFBQm8xWXdWREFPQmdOVkhROEJBZjhFQkFNQ0JhQXdFd1lEVlIwbEJBd3dDZ1lJS3dZQkJRVUgKQXdJd0RBWURWUjBUQVFIL0JBSXdBREFmQmdOVkhTTUVHREFXZ0JUOUhXRnUybEdDNEJvdWpjSXBtMXNua0liWgorakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBbVRURk5mK0prbG4wRHZRVW9ZYTlsUFZTRCs4VkI2WkJ6bVd0Ci9ialEyZ3hmTHErc0o3aHNabm04b2s4UGRGVWwwa1RsQlRiWldxTmhuZkVmUWcyZUZxNHYvNmhXMWNnbUxBOVQKV0hmU2Vwclg4VDBDVmRSUFA2MHo1L2ZJYWlGeXBwR2pXZWVUSDBWZkQ2RmRsSzNkVSs1VjFpVThnbVU0SXB6RQpLL0ExNEEzSGRROVM4bTgwQzBCek14ZTEyQWtWZlNDWkNVcHJjVU1QalZlcDRYY2tZcHkzTXN3cjFpaU9aZ1lHCm5RL3NIZTN6T2hURFppSEZBSFREL3k2RW8xbzk5bHJTcmNSWFEvK1I1YVQ1aG9xYkt0ZitiMjd2c1lMRTlPd1AKZ3BZT3ZFeXhtL05GNjR4WDFqZVoyeGdMZDBzV1BmdVM0cHdXbDczY250TlNveE5iSHc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== + client-key-data: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFcEFJQkFBS0NBUUVBeGpZbTBRSVgvU2xsQ2VWOG9ONmMvWFpiY2d3KzRDU2JPVE1PamIzUHhibEZlRmw5CnF5NkZBVWF5WXFvcGNONzR3aHVaUS8yVnY5MC9xazlUNGhVVncrRXYzZlpIbHNxNHJyVmQ1QStBSDUwbHFWL1YKbXRUNXl1YlgxRGNIWFV0NTlzd21zVzZpbFFUM29sbW5SbmhKTktmb2o0alBMNmdSay9NRS90OVR1aWprT3RwSAppZ3ZVbVpNalZCQzBvY1FqOVB6RElydlJRSmRKc0h3MGdZSTVGZXV5ZGNwaHhDUnNzUHRNNDJwQzI2Y0JGSHVqCnNPNTBkTURMNEhlRXhkaFNhTE5kMlFtbFJDLzg0Y2d6b25ON29WZkdFai9BVUhRQmt0bWdkYklPbHdCWmY1V1MKNVl5OEZwK0Y0RlBkbURiWmZnd1l5Q1lmc004RlNvbHBQNE1POHdJREFRQUJBb0lCQVFDSXY4MlIvNjdMUStibwpxQUtPL21jelc1Z0ZuRHM0NnlpSWt4Z2taR05YbDlZOURRanR0RitoSE1SdjI5UlJnaFAvMzRpalp1NE0vRGt6CmFCMklhbUdremRUM2Z6V3U3RmYwZVQ2NDNKVFp1dExFQTFGY3pEazJhb05YYjB2T2F3ZFBaVlFBc0VMTkt5c3EKUUU1dkNRZ0FveU9JKzZ0dHhyZXg2a1YxRG1FMm1rM1BOZkNtQ3FybVhoSGorZHJQZlhGZElnM0VLVFFwWW43bApSQ1VzM09lZXowZkt5T1lsYmw3U3ZBeHNvN1J2UVFHYmcvQTNFZzkwb1hSY0Rxd3NxK3p4VkF6WlRJcWtIREYxCmkrbnVqTEFHV1lLQ0huK2xyUW8xUnFRcmJYS1hQdFBPTVlUOWVzeWNmMkhYaEQ1aCtSMEZXRHdPVUJkVndyUnEKU0ZmZllCSXBBb0dCQU05Wkc3SW5iVmpCeWxqNWVGczZrZzRwMTVjOS92bmZtZjhydEVkY3JVQk42MVAyc3pHVwpLeUpOM0hNQXI5ZUxvU1ZhbldMaXZEQmVxQ1VDOVE1ZTByME5JRGlEOXpsSjIwcm1vOWh1aFpRSEZ0a1c5aGZDCmlYblNQSEtHTUk1SGpiQ2xzaTlabklwMmlKR0IvSXVpQit2OFE3eUQyZUNiUm1SdUE1RjUyUzNYQW9HQkFQUzQKTzdqbTdGRS9xdnd0aEZwUzlBRUFBSE1JaFVrWlpiMDB5bEFwNlA2M2F5R0krbGR1Wlp5RjIwc004cUtaeFlCQQpIT2lZRG1tSG9NTXdSTDNURnJma3U1d253NE5hRmJROTE0NXZKMy9UbG9pVG9BYUJnMGdiRzZVNEFnTjFEU3U4ClY4b2ZSWlJhMUJTbkkvazQ4ZVNucUs0Zlh0ajVSUU9CK0FCcUZXeEZBb0dBUUhBUjRtRE1ZNnYrQlg2cC83Z0oKRWV2QSsxaWg5K2VjaFNlQTVEaVNBd3owR0dqdnNYWll1MVYxTUN4RGVYb0VQNGFVcU5tTDRJQmFRdjVUUi84QwpBUXltT2NvUk43V1RPQWpMWElTa2NLZHZXMUgrY3MzYlNZZWpqM2ZTZVRVVmZKTlI5OU1paWdsaVVjNFN2UlpDCjNmek0xRFlwck5xMG1wdHg4bkRxcElzQ2dZQmZLcDRmQTc1MndqbXVJODFLaXVQVTE3bFZBc1ZDYmh3QWZsMEcKMjZWK0dMb1Nxb0FnTEJCYjFEbzViMm1VRGhTZUVWQ3NxeVUvcUx5OTZ6RndXSHlIT3U0eWhjd2tjbzNxTC9wNQpxNFJDMDNmQTJSZnNMOFZyN3c3TEs0S3M4WUlUdGdTMTEzOXBlQUR0bnlvQUswTDJWclRrTWRMaXNkMUN4Zkk1Cnh3ZFp1UUtCZ1FES1dNS1lwcVBHUjlVY2ZiSDVMdHpzcVBHQW1GeDZZVHV1RW94RHFZTDcvVkZ2ZDB3WkFrNlUKUDQ2UzVBUHFMckF0Z1lRcEo1a3NlZjJGSy9QMDhKMUlRYW4rN2tIdnNSMHpBSEtSYW9NdUVPbDdVVTlpQWcwbwp2a1FUd1RjVFNjV2hMdDlta21SOFByWHVLNEtZZ2lnSEg1aXlrUTRwN2dRZ0llVUkxeG50aXc9PQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo= -- GitLab From 17feaa07c4cc215534ed7476c4a8afa1e61ea0aa Mon Sep 17 00:00:00 2001 From: Mark Beierl Date: Tue, 6 Jun 2023 14:54:09 -0400 Subject: [PATCH 2/9] Updating Microk8s to be Single As there will only be one Kubernetes cluster for the hackfest, this script is only going to be used once: for the set up and configuration of the Hackfest shared Kubernetes resource. Signed-off-by: Mark Beierl --- .../OSM-15/setup_scripts/vm-microk8s-setup.sh | 16 ++++++++-------- .../keep_persistent_volume_vnfd.yaml | 3 --- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/Hackfest_Demos/OSM-15/setup_scripts/vm-microk8s-setup.sh b/Hackfest_Demos/OSM-15/setup_scripts/vm-microk8s-setup.sh index 25a311f3..8dfb22fc 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/vm-microk8s-setup.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/vm-microk8s-setup.sh @@ -22,14 +22,14 @@ skip_verify = true plain-http = true EOF -sudo microk8s stop -sudo microk8s start -sudo microk8s.enable storage - -HOST_IP=10.0.0.11 -METALLB_START=10.0.0.201 -METALLB_END=10.0.0.250 -sudo cat /var/snap/microk8s/current/args/kube-apiserver | grep advertise-address || ( echo "--advertise-address ${HOST_IP}" | sudo tee -a /var/snap/microk8s/current/args/kube-apiserver; sudo microk8s.stop; sudo microk8s.start; ) +sudo systemctl restart snap.microk8s.daemon-containerd.service +sudo microk8s.enable hostpath-storage + +FLOATING_IP=172.21.249.42 +sudo sed -i "/^IP.2 = .*/a IP.3 = ${FLOATING_IP}" /var/snap/microk8s/current/certs/csr.conf.template + +METALLB_START=10.1.0.10 +METALLB_END=10.1.1.254 sudo microk8s.enable metallb:${METALLB_START}-${METALLB_END} sudo microk8s.enable ingress storage dns diff --git a/keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml b/keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml index be8fc180..b1e4b0bf 100644 --- a/keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml +++ b/keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml @@ -63,9 +63,6 @@ vnfd: - id: root-volume type-of-storage: persistent-storage size-of-storage: 10 - vdu-storage-requirements: - - key: keep-volume - value: 'true' - id: persistent-volume type-of-storage: persistent-storage size-of-storage: 1 -- GitLab From f342469ed02903c70a531c661478e6284c978a8d Mon Sep 17 00:00:00 2001 From: Mark Beierl Date: Tue, 6 Jun 2023 15:04:00 -0400 Subject: [PATCH 3/9] Hackfest K8s Config Configuration file for the Hackfest K8s cluster Signed-off-by: Mark Beierl --- .../OSM-15/setup_scripts/hackfest-k8s.yaml | 18 ++++++++++++++++++ .../OSM-15/setup_scripts/whitemist.yaml | 19 ------------------- 2 files changed, 18 insertions(+), 19 deletions(-) create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest-k8s.yaml delete mode 100644 Hackfest_Demos/OSM-15/setup_scripts/whitemist.yaml diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest-k8s.yaml b/Hackfest_Demos/OSM-15/setup_scripts/hackfest-k8s.yaml new file mode 100644 index 00000000..d31f636b --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest-k8s.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +clusters: +- cluster: + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUREekNDQWZlZ0F3SUJBZ0lVS2RSZUhQQVdUMzNxZFZCd3pMdktGdGdXcUJNd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01NVEF1TVRVeUxqRTRNeTR4TUI0WERUSXpNRFl3TmpFM01qWXhNVm9YRFRNegpNRFl3TXpFM01qWXhNVm93RnpFVk1CTUdBMVVFQXd3TU1UQXVNVFV5TGpFNE15NHhNSUlCSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF5d09qUWdIUytTWXorQkhWamRKVEw2WXlvQzNWNDAxL1VmNDUKUHJqMVp2K0JWMlhBR1I5Z3N1aXdyVkpSSjlKWDErZFlNS21yRzdvTnF1RW1RSGczdXNQbnpCU1QxK0dhZnM0NQpyOVNjeURhT28yMWQ3dXRCSHVlVXI5K2gyZnZNRy91My9MVWk0WXd3dFhxZVFsMzlPVWFxcUpYUEZ3Sk5MaFdYClhkUERmNFpGbGxISUFkL3FlaWtZQUFydjlxTGh4OGxOK1lwdE96Wm5zaGdTeE00WXVNcmxuWDJKZjhwa0g5MDkKK29ISlR5cnhUQXFOZno3ZGVaelZlWCtkcnZkNGowNXZZSkQreXhZQnRrSjhjOGpCWVZtZGkxQ3V3NUpwOVI4dgp5QlZKSUQ1K2xoMGhSOUZiUlUrNGFlZXBrck9ZTEFlaUhCSnlEQWlxOUNBQ1RoSkxsd0lEQVFBQm8xTXdVVEFkCkJnTlZIUTRFRmdRVXVMeERSMDFtU0szWnNYTWxvMzJUNHRrdTFqQXdId1lEVlIwakJCZ3dGb0FVdUx4RFIwMW0KU0szWnNYTWxvMzJUNHRrdTFqQXdEd1lEVlIwVEFRSC9CQVV3QXdFQi96QU5CZ2txaGtpRzl3MEJBUXNGQUFPQwpBUUVBZHo1L1lVUXY0dXBUeFdwZ3lvSlVTc2dramdTaVY1ejd1V1dFalJrNWhBQS9wYWZMRG9HQ1J3S1pUSzBFCndCTng4dWtLenFzOWk2Z2FPZ2syK2M0dFFSWExWRHJwK2Y5SjJUVWQ4RnVReUc3d2dhWkhiVFdaWjdnaXI0aCsKbFV2YVp6QXFJeWdzckdWMndNaEVsQUtuVDllRHBsYXJudnZ2Mm5RN0hXYVhOeUxkK0E3VGJpWmFWYWdIY1lhSgpxTEp6ejlvOEhiY3NCdWttN0orUVJOTzVub2t1NkFZYTlKZXBWV2hLVjJqYWpyZ2JMVFRjTVRZNzJJZlN6ZnhTCmJDcms2ZXdhNDdiK09udE5mOFMvOW43MmxkVERGdjBJNG54M3FNVm9XREJFbWhGQnZCeUt0MWZRcTBwSEpsVzIKZmlndnRCRW9kb2M0U2gzaHUyYU4vQmZyK0E9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== + server: https://172.21.249.42:16443 + name: microk8s-cluster +contexts: +- context: + cluster: microk8s-cluster + user: admin + name: microk8s +current-context: microk8s +kind: Config +preferences: {} +users: +- name: admin + user: + token: NldCZjFBTDRocVp6NTUyY3pOMDNzcFE2Z0R6dHBqaVVBeGtrQnd3MzFMMD0K \ No newline at end of file diff --git a/Hackfest_Demos/OSM-15/setup_scripts/whitemist.yaml b/Hackfest_Demos/OSM-15/setup_scripts/whitemist.yaml deleted file mode 100644 index 5809d6cc..00000000 --- a/Hackfest_Demos/OSM-15/setup_scripts/whitemist.yaml +++ /dev/null @@ -1,19 +0,0 @@ - apiVersion: v1 - clusters: - - cluster: - certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMvakNDQWVhZ0F3SUJBZ0lCQURBTkJna3Foa2lHOXcwQkFRc0ZBREFWTVJNd0VRWURWUVFERXdwcmRXSmwKY201bGRHVnpNQjRYRFRJeU1EY3dOekl5TlRrMU9Gb1hEVE15TURjd05ESXlOVGsxT0Zvd0ZURVRNQkVHQTFVRQpBeE1LYTNWaVpYSnVaWFJsY3pDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTFVDCjdXUkFZTU90SmJ1U1loQ2FrVDZ3VUdKZEtZdUdRb29xd3F5WStnRW8yU1RnZEhPZEdpZzVJMjF3cG9tdFV1V2sKREhmZUJHMHIvRGkvUHdML3VEb0tqUFVvdU5JdTBYc1FTYXIrOGNMTkdWSDczSnBJcWRaZDVEREthdWFacU9ONQovdlJjdVBiWHdLNldkRmdldDB3RWQycVlKQytmNk9Dcm5oUnlSOGJvWVdxZ2kvNzhNSHFwMERNQ0I4TDFHRHVmCjdJVEFodUtBaUM1a2llQ1NzY1cwT0NVdTZPazdCVTZVc3dhd2phRVlWbUVkS0Flb0o2UWNGTHBnWkFvdDA2aFIKYlRqTmNkLzdLRDNCZVJWc3QycGZqL2lQdlVXaDBiR1VWREZDRXV1UC9VTUNRdHZ6SWVIUEhZamtjNkZYSldWSwpyZGk5bGNuV1FRSlVJVENLcFlzQ0F3RUFBYU5aTUZjd0RnWURWUjBQQVFIL0JBUURBZ0trTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0hRWURWUjBPQkJZRUZQMGRZVzdhVVlMZ0dpNk53aW1iV3llUWh0bjZNQlVHQTFVZEVRUU8KTUF5Q0NtdDFZbVZ5Ym1WMFpYTXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQVBoNGhOUGlPUlZVZXQzRXgwTgpHekNUM1Q1OUtzMHFaa0JUMnpkM29qc0tsUS9LTS85TzJEa2YzdElnbkV6ZWlIdlMzUExTaTZkaDhISzE3MlNQCnMyUy95bW5nTWZMMlkyYU85ZTA2L3B1NEFvUG56c2ZSOFhzNnVXc2N5UkdVbXNMcjR5eVBFaythL0F4OXcxS2MKeHFQZDB2bXo4OVZMVHFHb2hjZVJKcmVkMU1RcnNnMnMzR1pzRDU4MVRpVlI0bGQ3VlpNSnpGM01Wa3hOazNnagp6dm5SQU01MHhPdmx1ek9ZVHo5aEthRjk0QTVta2pzck02ZStmdHN0dEpzQWduWnpIVHlaUFFkYW9TTE9YeWx6CnY2VGhrYjZvLzFXWjVTQjMrcCttRlJYYmN4UC9tS04zNktiem5UOWJpVlJTRkVXcWswTmdHdUZiNDBvNkJLM3gKckFRPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== - server: https://172.21.248.125:6443 - name: cluster.local - contexts: - - context: - cluster: cluster.local - user: kubernetes-admin - name: kubernetes-admin@cluster.local - current-context: kubernetes-admin@cluster.local - kind: Config - preferences: {} - users: - - name: kubernetes-admin - user: - client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURJVENDQWdtZ0F3SUJBZ0lJSkFwcnBoNU9PUjB3RFFZSktvWklodmNOQVFFTEJRQXdGVEVUTUJFR0ExVUUKQXhNS2EzVmlaWEp1WlhSbGN6QWVGdzB5TWpBM01EY3lNalU1TlRoYUZ3MHlNekEzTURjeU16QXdNREJhTURReApGekFWQmdOVkJBb1REbk41YzNSbGJUcHRZWE4wWlhKek1Sa3dGd1lEVlFRREV4QnJkV0psY201bGRHVnpMV0ZrCmJXbHVNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXhqWW0wUUlYL1NsbENlVjgKb042Yy9YWmJjZ3crNENTYk9UTU9qYjNQeGJsRmVGbDlxeTZGQVVheVlxb3BjTjc0d2h1WlEvMlZ2OTAvcWs5VAo0aFVWdytFdjNmWkhsc3E0cnJWZDVBK0FINTBscVYvVm10VDV5dWJYMURjSFhVdDU5c3dtc1c2aWxRVDNvbG1uClJuaEpOS2ZvajRqUEw2Z1JrL01FL3Q5VHVpamtPdHBIaWd2VW1aTWpWQkMwb2NRajlQekRJcnZSUUpkSnNIdzAKZ1lJNUZldXlkY3BoeENSc3NQdE00MnBDMjZjQkZIdWpzTzUwZE1ETDRIZUV4ZGhTYUxOZDJRbWxSQy84NGNnegpvbk43b1ZmR0VqL0FVSFFCa3RtZ2RiSU9sd0JaZjVXUzVZeThGcCtGNEZQZG1EYlpmZ3dZeUNZZnNNOEZTb2xwClA0TU84d0lEQVFBQm8xWXdWREFPQmdOVkhROEJBZjhFQkFNQ0JhQXdFd1lEVlIwbEJBd3dDZ1lJS3dZQkJRVUgKQXdJd0RBWURWUjBUQVFIL0JBSXdBREFmQmdOVkhTTUVHREFXZ0JUOUhXRnUybEdDNEJvdWpjSXBtMXNua0liWgorakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBbVRURk5mK0prbG4wRHZRVW9ZYTlsUFZTRCs4VkI2WkJ6bVd0Ci9ialEyZ3hmTHErc0o3aHNabm04b2s4UGRGVWwwa1RsQlRiWldxTmhuZkVmUWcyZUZxNHYvNmhXMWNnbUxBOVQKV0hmU2Vwclg4VDBDVmRSUFA2MHo1L2ZJYWlGeXBwR2pXZWVUSDBWZkQ2RmRsSzNkVSs1VjFpVThnbVU0SXB6RQpLL0ExNEEzSGRROVM4bTgwQzBCek14ZTEyQWtWZlNDWkNVcHJjVU1QalZlcDRYY2tZcHkzTXN3cjFpaU9aZ1lHCm5RL3NIZTN6T2hURFppSEZBSFREL3k2RW8xbzk5bHJTcmNSWFEvK1I1YVQ1aG9xYkt0ZitiMjd2c1lMRTlPd1AKZ3BZT3ZFeXhtL05GNjR4WDFqZVoyeGdMZDBzV1BmdVM0cHdXbDczY250TlNveE5iSHc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== - client-key-data: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFcEFJQkFBS0NBUUVBeGpZbTBRSVgvU2xsQ2VWOG9ONmMvWFpiY2d3KzRDU2JPVE1PamIzUHhibEZlRmw5CnF5NkZBVWF5WXFvcGNONzR3aHVaUS8yVnY5MC9xazlUNGhVVncrRXYzZlpIbHNxNHJyVmQ1QStBSDUwbHFWL1YKbXRUNXl1YlgxRGNIWFV0NTlzd21zVzZpbFFUM29sbW5SbmhKTktmb2o0alBMNmdSay9NRS90OVR1aWprT3RwSAppZ3ZVbVpNalZCQzBvY1FqOVB6RElydlJRSmRKc0h3MGdZSTVGZXV5ZGNwaHhDUnNzUHRNNDJwQzI2Y0JGSHVqCnNPNTBkTURMNEhlRXhkaFNhTE5kMlFtbFJDLzg0Y2d6b25ON29WZkdFai9BVUhRQmt0bWdkYklPbHdCWmY1V1MKNVl5OEZwK0Y0RlBkbURiWmZnd1l5Q1lmc004RlNvbHBQNE1POHdJREFRQUJBb0lCQVFDSXY4MlIvNjdMUStibwpxQUtPL21jelc1Z0ZuRHM0NnlpSWt4Z2taR05YbDlZOURRanR0RitoSE1SdjI5UlJnaFAvMzRpalp1NE0vRGt6CmFCMklhbUdremRUM2Z6V3U3RmYwZVQ2NDNKVFp1dExFQTFGY3pEazJhb05YYjB2T2F3ZFBaVlFBc0VMTkt5c3EKUUU1dkNRZ0FveU9JKzZ0dHhyZXg2a1YxRG1FMm1rM1BOZkNtQ3FybVhoSGorZHJQZlhGZElnM0VLVFFwWW43bApSQ1VzM09lZXowZkt5T1lsYmw3U3ZBeHNvN1J2UVFHYmcvQTNFZzkwb1hSY0Rxd3NxK3p4VkF6WlRJcWtIREYxCmkrbnVqTEFHV1lLQ0huK2xyUW8xUnFRcmJYS1hQdFBPTVlUOWVzeWNmMkhYaEQ1aCtSMEZXRHdPVUJkVndyUnEKU0ZmZllCSXBBb0dCQU05Wkc3SW5iVmpCeWxqNWVGczZrZzRwMTVjOS92bmZtZjhydEVkY3JVQk42MVAyc3pHVwpLeUpOM0hNQXI5ZUxvU1ZhbldMaXZEQmVxQ1VDOVE1ZTByME5JRGlEOXpsSjIwcm1vOWh1aFpRSEZ0a1c5aGZDCmlYblNQSEtHTUk1SGpiQ2xzaTlabklwMmlKR0IvSXVpQit2OFE3eUQyZUNiUm1SdUE1RjUyUzNYQW9HQkFQUzQKTzdqbTdGRS9xdnd0aEZwUzlBRUFBSE1JaFVrWlpiMDB5bEFwNlA2M2F5R0krbGR1Wlp5RjIwc004cUtaeFlCQQpIT2lZRG1tSG9NTXdSTDNURnJma3U1d253NE5hRmJROTE0NXZKMy9UbG9pVG9BYUJnMGdiRzZVNEFnTjFEU3U4ClY4b2ZSWlJhMUJTbkkvazQ4ZVNucUs0Zlh0ajVSUU9CK0FCcUZXeEZBb0dBUUhBUjRtRE1ZNnYrQlg2cC83Z0oKRWV2QSsxaWg5K2VjaFNlQTVEaVNBd3owR0dqdnNYWll1MVYxTUN4RGVYb0VQNGFVcU5tTDRJQmFRdjVUUi84QwpBUXltT2NvUk43V1RPQWpMWElTa2NLZHZXMUgrY3MzYlNZZWpqM2ZTZVRVVmZKTlI5OU1paWdsaVVjNFN2UlpDCjNmek0xRFlwck5xMG1wdHg4bkRxcElzQ2dZQmZLcDRmQTc1MndqbXVJODFLaXVQVTE3bFZBc1ZDYmh3QWZsMEcKMjZWK0dMb1Nxb0FnTEJCYjFEbzViMm1VRGhTZUVWQ3NxeVUvcUx5OTZ6RndXSHlIT3U0eWhjd2tjbzNxTC9wNQpxNFJDMDNmQTJSZnNMOFZyN3c3TEs0S3M4WUlUdGdTMTEzOXBlQUR0bnlvQUswTDJWclRrTWRMaXNkMUN4Zkk1Cnh3ZFp1UUtCZ1FES1dNS1lwcVBHUjlVY2ZiSDVMdHpzcVBHQW1GeDZZVHV1RW94RHFZTDcvVkZ2ZDB3WkFrNlUKUDQ2UzVBUHFMckF0Z1lRcEo1a3NlZjJGSy9QMDhKMUlRYW4rN2tIdnNSMHpBSEtSYW9NdUVPbDdVVTlpQWcwbwp2a1FUd1RjVFNjV2hMdDlta21SOFByWHVLNEtZZ2lnSEg1aXlrUTRwN2dRZ0llVUkxeG50aXc9PQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo= -- GitLab From b4a122b76766041c83f3e1cc5ce9728356af2d69 Mon Sep 17 00:00:00 2001 From: Mark Beierl Date: Tue, 6 Jun 2023 19:53:45 +0000 Subject: [PATCH 4/9] Revert accidental modification --- Hackfest_Demos/OSM-15/setup_scripts/logs/.gitkeep | 1 + keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Hackfest_Demos/OSM-15/setup_scripts/logs/.gitkeep b/Hackfest_Demos/OSM-15/setup_scripts/logs/.gitkeep index e69de29b..8b137891 100644 --- a/Hackfest_Demos/OSM-15/setup_scripts/logs/.gitkeep +++ b/Hackfest_Demos/OSM-15/setup_scripts/logs/.gitkeep @@ -0,0 +1 @@ + diff --git a/keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml b/keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml index b1e4b0bf..be8fc180 100644 --- a/keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml +++ b/keep_persistent_volume_vnf/keep_persistent_volume_vnfd.yaml @@ -63,6 +63,9 @@ vnfd: - id: root-volume type-of-storage: persistent-storage size-of-storage: 10 + vdu-storage-requirements: + - key: keep-volume + value: 'true' - id: persistent-volume type-of-storage: persistent-storage size-of-storage: 1 -- GitLab From 3ace7a54ec52838cd372a24536c4e344011509e8 Mon Sep 17 00:00:00 2001 From: Gulsum Atici Date: Wed, 7 Jun 2023 02:28:52 +0300 Subject: [PATCH 5/9] Arranging scripts to create VMs Signed-off-by: Gulsum Atici --- .../OSM-15/setup_scripts/common-vars | 9 ++-- .../setup_scripts/create-openstack-vm.sh | 39 ++++++++++++++ .../setup_scripts/delete-openstack-vm.sh | 36 +++++++++++++ .../setup_scripts/openstack_credentials.rc | 2 +- .../setup_scripts/run-create-openstack-vm.sh | 14 +++++ .../setup_scripts/run-delete-openstack-vm.sh | 13 +++++ .../OSM-15/setup_scripts/run-full-setup.sh | 11 ++-- .../OSM-15/setup_scripts/run-install-osm.sh | 16 +++--- .../setup_scripts/run-microk8s-setup.sh | 17 +++--- .../run-osm-vim-k8scluster-add.sh | 27 +++------- .../setup_scripts/run-vm-initial-setup.sh | 23 ++++---- .../setup_scripts/ubuntu@172.21.248.100 | 53 +++++++++++++++++++ 12 files changed, 194 insertions(+), 66 deletions(-) create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/delete-openstack-vm.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/run-create-openstack-vm.sh create mode 100755 Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vm.sh create 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 7f30e84e..97d42b12 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=6 if [ ! -z $2 ] ; then START=$1 @@ -28,11 +28,8 @@ fi # ETSI VIM ADMIN_DOMAIN=default APT_PROXY=http://172.21.1.1.3142 -FLAVOR=osm.sanity +FLAVOR=test_flavor_fix KEY_NAME=hackfest NETWORK=osm-ext -SUBNET=172.21.19 -ZONE=hackfest +FOCAL=ubuntu20.04 -MANAGEMENT_SUBNET=10.1.0 -PRIVATE_SUBNET=192.168.239 diff --git a/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh b/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh new file mode 100755 index 00000000..6c219e84 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh @@ -0,0 +1,39 @@ +#!/bin/bash +echo $0 started at $(date) + +PARTICIPANT=${1} +. ./common-vars +. ./openstack_credentials.rc $PARTICIPANT + +VM_NAME=`expr charmedosm-${PARTICIPANT}` +echo "Creating public port" +# This port gets created as the admin +openstack port create --security-group default --network osm-ext $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 + +echo "Launching OSM VM" +openstack server create --key-name ${KEY_NAME} --flavor ${FLAVOR} --image ${FOCAL} --nic port-id=$VM_NAME --user-data ./osm-cloud-init.yaml $VM_NAME & +wait + +echo "Waiting for OSM VM to be ready" +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]\+'` +while [ 1 ] ; do + sleep 5 + ALIVE=$(ssh -T -o ConnectTimeout=1 -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} 'cloud-init status --wait | tail -1' 2> /dev/null) + if [ "${ALIVE}" == "status: done" ] ; then break ; fi +done + +echo $0 $@ complete at $(date) \ No newline at end of file diff --git a/Hackfest_Demos/OSM-15/setup_scripts/delete-openstack-vm.sh b/Hackfest_Demos/OSM-15/setup_scripts/delete-openstack-vm.sh new file mode 100755 index 00000000..87f66f45 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/delete-openstack-vm.sh @@ -0,0 +1,36 @@ +#!/bin/bash +echo $0 started at $(date) + +PARTICIPANT=${1} +. ./common-vars +. ./openstack_credentials.rc PARTICIPANT + +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) + 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) + 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 + 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 + 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 +fi + + +echo $0 $@ complete at $(date) \ No newline at end of file diff --git a/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc b/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc index aebdce37..88be228e 100644 --- a/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc +++ b/Hackfest_Demos/OSM-15/setup_scripts/openstack_credentials.rc @@ -1,5 +1,5 @@ #OpenStack Credentials -PARTICIPANT=$1 +PARTICIPANT=`expr $1` export OS_AUTH_URL=http://172.21.247.1:5000/v3 export OS_PROJECT_NAME=hackfest15group${PARTICIPANT} export OS_USER_DOMAIN_NAME='Default' diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-create-openstack-vm.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-create-openstack-vm.sh new file mode 100755 index 00000000..17838ea6 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-create-openstack-vm.sh @@ -0,0 +1,14 @@ +#!/bin/bash +echo $0 started at $(date) + +. ./common-vars + +mkdir -p logs/ + +for PARTICIPANT in `seq ${START} ${MAX}` ; do + ./create-openstack-vm.sh ${PARTICIPANT} 2>&1 | tee -a logs/create-openstack-user-and-project-${PARTICIPANT}.log & +sleep 60 +done +wait + +echo $0 $@ complete at $(date) 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 new file mode 100755 index 00000000..ac4ae7c3 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vm.sh @@ -0,0 +1,13 @@ +#!/bin/bash +echo $0 started at $(date) + +. ./common-vars + +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 +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 ab57d1aa..4c6f085c 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh @@ -1,12 +1,13 @@ #!/bin/bash echo $0 started at $(date) -. common-vars +. ./common-vars +#./run-create-openstack-vm.sh $@ ./run-vm-initial-setup.sh $@ -./run-microk8s-setup.sh $@ & -./run-install-osm.sh $@ -wait -./run-osm-vim-k8scluster-add.sh $@ +#./run-microk8s-setup.sh $@ & +#./run-install-osm.sh $@ +#wait +#./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 426dcb85..df9f15e5 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh @@ -4,16 +4,12 @@ echo $0 started at $(date) . ./common-vars $@ for PARTICIPANT in `seq ${START} ${MAX}` ; do - IP=`expr ${PARTICIPANT} + 0` - source ./openstack_credentials.rc PARTICIPANT - scp -o StrictHostKeyChecking=no -i hackfest_rsa ./vm-install-osm.sh ubuntu@${SUBNET}.${IP}: & -done -wait - -for PARTICIPANT in `seq ${START} ${MAX}` ; do - source ./openstack_credentials.rc PARTICIPANT - IP=`expr ${PARTICIPANT} + 0` - ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} ./vm-install-osm.sh 2>&1 | tee -a logs/vm-install-osm-${PARTICIPANT}.log& + . ./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-install-osm.sh ubuntu@${IP}: & + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} ./vm-install-osm.sh 2>&1 | tee -a logs/vm-install-osm-${PARTICIPANT}.log& done wait 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 b9c59f21..238144b5 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-microk8s-setup.sh @@ -4,17 +4,12 @@ echo $0 started at $(date) . ./common-vars $@ for PARTICIPANT in `seq ${START} ${MAX}` ; do - source ./openstack_credentials.rc PARTICIPANT - IP=`expr ${PARTICIPANT} + 0` - scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ./hackfest_rsa.pub ubuntu@${SUBNET}.${IP}:.ssh/ & - scp -o StrictHostKeyChecking=no -i hackfest_rsa vm-microk8s-setup.sh ubuntu@${SUBNET}.${IP}: & -done -wait - -for PARTICIPANT in `seq ${START} ${MAX}` ; do - source ./openstack_credentials.rc PARTICIPANT - IP=`expr ${PARTICIPANT} + 0` - ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} "scp -o StrictHostKeyChecking=no -i .ssh/hackfest_rsa vm-microk8s-setup.sh 10.0.0.11:; ssh -o StrictHostKeyChecking=no -i .ssh/hackfest_rsa 10.0.0.11 ./vm-microk8s-setup.sh" 2>&1 | tee -a logs/vm-microk8s-setup-${PARTICIPANT}.log& + . ./openstack_credentials.rc PARTICIPANT + VM_NAME=`expr charmedosm-${PARTICIPANT}` + 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}: & + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} "scp -o StrictHostKeyChecking=no -i .ssh/hackfest_rsa vm-microk8s-setup.sh 10.0.0.11:; ssh -o StrictHostKeyChecking=no -i .ssh/hackfest_rsa 10.0.0.11 ./vm-microk8s-setup.sh" 2>&1 | tee -a logs/vm-microk8s-setup-${PARTICIPANT}.log& done wait 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 a60b110b..862eb964 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 @@ -4,17 +4,9 @@ echo $0 started at $(date) . ./common-vars $@ for PARTICIPANT in `seq ${START} ${MAX}` ; do - export OS_AUTH_URL=http://172.21.247.1:5000/v3 - export OS_PROJECT_NAME=hackfest15group${PARTICIPANT} - export OS_USER_DOMAIN_NAME='Default' - export OS_PROJECT_DOMAIN_ID='default' - export OS_USERNAME=hackfest15group${PARTICIPANT} - export OS_PASSWORD=hackfest15group-${PARTICIPANT}! - export OS_REGION_NAME='RegionOne' - export OS_INTERFACE=public - export OS_IDENTITY_API_VERSION=3 - IP=`expr ${PARTICIPANT} + 0` - + . ./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} OS_PASSWORD=hackfest15group-${PARTICIPANT}! OS_PROJECT_NAME=hackfest15group${PARTICIPANT} @@ -34,17 +26,14 @@ export OS_USERNAME=${OS_USERNAME} export OS_USER_DOMAIN_NAME=${OS_DOMAIN_NAME} EOF - ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} ". .profile;osm version" + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} ". .profile;osm version" while [ $? -ne -0 ] ; do - ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} ". .profile;osm version" + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} ". .profile;osm version" done - scp -o StrictHostKeyChecking=no -i hackfest_rsa ${OS_USERNAME}.rc ubuntu@${SUBNET}.${IP}: - scp -o StrictHostKeyChecking=no -i hackfest_rsa pc-cacert.pem ubuntu@${SUBNET}.${IP}: - ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${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@${SUBNET}.${IP} "scp -o StrictHostKeyChecking=no -i .ssh/hackfest_rsa ${MANAGEMENT_SUBNET}.11:kubeconfig.yaml ." 2>&1 | tee -a logs/osm-vim-k8scluster-add-${PARTICIPANT}.log - ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} '. .profile;osm k8scluster-add --creds kubeconfig.yaml --vim openstack --k8s-nets "{"net1": "osm-ext"}" --version 1.23 --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@${SUBNET}.${IP} "echo . ~/${OS_USERNAME}.rc >> .bashrc" + 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" done echo $0 $@ complete at $(date) \ No newline at end of file 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 bc82bb2e..183cf3df 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 @@ -4,20 +4,15 @@ echo $0 started at $(date) . ./common-vars $@ for PARTICIPANT in `seq ${START} ${MAX}` ; do - IP=`expr ${PARTICIPANT} + 0` - source ./openstack_credentials.rc PARTICIPANT - scp -o StrictHostKeyChecking=no -i hackfest_rsa vm-initial-setup.sh ubuntu@${SUBNET}.${IP}: & - scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ubuntu@${SUBNET}.${IP}:.ssh/id_rsa & - scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa.pub ubuntu@${SUBNET}.${IP}:.ssh/id_rsa.pub & - scp -o StrictHostKeyChecking=no -i hackfest_rsa ./hackfest_rsa ./hackfest_rsa.pub ubuntu@${SUBNET}.${IP}:.ssh/ & - scp -o StrictHostKeyChecking=no -i hackfest_rsa vm-microk8s-setup.sh ubuntu@${SUBNET}.${IP}: & -done -wait - -for PARTICIPANT in `seq ${START} ${MAX}` ; do - IP=`expr ${PARTICIPANT} + 0` - source ./openstack_credentials.rc PARTICIPANT - ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${SUBNET}.${IP} "./vm-initial-setup.sh" 2>&1 | tee -a logs/vm-initial-setup-${PARTICIPANT}.log & + . ./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 & 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 new file mode 100755 index 00000000..26fe2e03 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/ubuntu@172.21.248.100 @@ -0,0 +1,53 @@ +#!/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 From a4e47e535cdbbac7a2c5040e3cb18755cc151872 Mon Sep 17 00:00:00 2001 From: Gulsum Atici Date: Wed, 7 Jun 2023 02:45:02 +0300 Subject: [PATCH 6/9] Updating README.md Signed-off-by: Gulsum Atici --- Hackfest_Demos/OSM-15/setup_scripts/README.md | 39 ++++++++++--------- .../OSM-15/setup_scripts/common-vars | 4 +- .../setup_scripts/create-openstack-vm.sh | 2 +- .../OSM-15/setup_scripts/run-full-setup.sh | 9 ++--- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Hackfest_Demos/OSM-15/setup_scripts/README.md b/Hackfest_Demos/OSM-15/setup_scripts/README.md index 8e0dd10b..9a4a90af 100644 --- a/Hackfest_Demos/OSM-15/setup_scripts/README.md +++ b/Hackfest_Demos/OSM-15/setup_scripts/README.md @@ -3,30 +3,32 @@ First, check the common-vars for the following: ``` -APT_PROXY=http://172.21.1.1:3142 -FLAVOR=m1.xlarge -PROJECT=f15ab4f845dc4052811fce96a3676ac8 -SUBNET=172.21.248 +APT_PROXY=http://172.21.1.1.3142 +FLAVOR=test_flavor_fix +KEY_NAME=hackfest +NETWORK=osm-ext +FOCAL=ubuntu20.04 ``` APT_PROXY: the address of a caching web proxy for installing packages FLAVOR: the flavour of the new VM to launch. Must have at least 4 CPUs, 8 GB RAM and 60 GB Disk. -PROJECT: The project ID in which to launch the new VM -SUBNET: the first three octets of the subnet to use. IP addresses will be allocated from this subnet, starting with .101 - .199 +KEY_NAME: Key to connect VMs +NETWORK: IP addresses will be allocated from this network, this network is management network of OSM instance +FOCAL: Image to install VMs - -### Initial Configuration -This script updates apt, upgrades the system to the latest 20.04 and installs remote desktop software +### Create VMs +This script creates the VMs in required project ``` -./run-vm-initial-setup.sh +./run-create-openstack-vm.sh ``` -### Install Microk8s -This script will configure the Microk8s VM launched by the create-openstack-user-and-project script. +### Initial Configuration +This script updates apt, upgrades the system to the latest 20.04 and installs remote desktop software + ``` -./run-microk8s-setup.sh +./run-vm-initial-setup.sh ``` @@ -38,7 +40,7 @@ This script downloads the installer and runs it. It also sets the OSM admin pas ``` ### Add VIM and K8s Cluster - +Add VIM and ks8cluster to OSM instance ``` ./run-osm-vim-k8scluster-add.sh ``` @@ -46,10 +48,9 @@ This script downloads the installer and runs it. It also sets the OSM admin pas ## Full Flow ``` -./run-create-openstack-user-and-project.sh 1 1 -./run-vm-setup.sh 1 1 -./run-microk8s-setup.sh 1 1 -./run-install-osm.sh 1 1 -./run-osm-vim-k8scluster-add.sh 1 1 +./run-create-openstack-user-and-project.sh +./run-vm-initial-setup.sh +./run-install-osm.sh +./run-osm-vim-k8scluster-add.sh ``` diff --git a/Hackfest_Demos/OSM-15/setup_scripts/common-vars b/Hackfest_Demos/OSM-15/setup_scripts/common-vars index 97d42b12..384bf866 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=6 +MAX=10 if [ ! -z $2 ] ; then START=$1 @@ -28,7 +28,7 @@ fi # ETSI VIM ADMIN_DOMAIN=default APT_PROXY=http://172.21.1.1.3142 -FLAVOR=test_flavor_fix +FLAVOR=osm.sanity KEY_NAME=hackfest NETWORK=osm-ext FOCAL=ubuntu20.04 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 6c219e84..66079a4d 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh @@ -8,7 +8,7 @@ PARTICIPANT=${1} VM_NAME=`expr charmedosm-${PARTICIPANT}` echo "Creating public port" # This port gets created as the admin -openstack port create --security-group default --network osm-ext $VM_NAME +openstack port create --security-group default --network $NETWORK $VM_NAME wait 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 4c6f085c..0756d6f5 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh @@ -3,11 +3,10 @@ echo $0 started at $(date) . ./common-vars -#./run-create-openstack-vm.sh $@ +./run-create-openstack-vm.sh $@ ./run-vm-initial-setup.sh $@ -#./run-microk8s-setup.sh $@ & -#./run-install-osm.sh $@ -#wait -#./run-osm-vim-k8scluster-add.sh $@ +./run-install-osm.sh $@ +wait +./run-osm-vim-k8scluster-add.sh $@ echo $0 $@ complete at $(date) \ No newline at end of file -- GitLab From 91da27e9d54a011492e2d257bb9c00a84a472f40 Mon Sep 17 00:00:00 2001 From: Gulsum Atici Date: Wed, 7 Jun 2023 12:38:20 +0300 Subject: [PATCH 7/9] Changing scripts to use hackfest15main project for OSM instances installation Signed-off-by: Gulsum Atici --- .../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 +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 From 566c497b4feb13f17137a558057b8cce959a9b48 Mon Sep 17 00:00:00 2001 From: Gulsum Atici Date: Thu, 8 Jun 2023 14:39:36 +0300 Subject: [PATCH 8/9] Adding final version of setup scripts Signed-off-by: Gulsum Atici --- .../OSM-15/setup_scripts/bundle.yaml | 194 ++++++++++++++++++ .../OSM-15/setup_scripts/common-vars | 4 +- .../setup_scripts/create-openstack-vm.sh | 5 +- .../OSM-15/setup_scripts/hackfest15admin.pub | 6 + .../OSM-15/setup_scripts/hackfest15group10.rc | 12 ++ .../OSM-15/setup_scripts/hackfest15group6.rc | 12 ++ .../OSM-15/setup_scripts/hackfest15group7.rc | 12 ++ .../OSM-15/setup_scripts/hackfest15group8.rc | 12 ++ .../OSM-15/setup_scripts/hackfest15group9.rc | 12 ++ .../OSM-15/setup_scripts/osm-cloud-init.yaml | 13 -- .../OSM-15/setup_scripts/run-full-setup.sh | 5 +- .../OSM-15/setup_scripts/run-install-osm.sh | 4 +- .../run-osm-vim-k8scluster-add.sh | 4 +- .../setup_scripts/run-vm-initial-setup.sh | 4 +- .../OSM-15/setup_scripts/vm-initial-setup.sh | 8 + .../OSM-15/setup_scripts/vm-install-osm.sh | 25 +-- 16 files changed, 294 insertions(+), 38 deletions(-) create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/bundle.yaml create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest15admin.pub create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest15group10.rc create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest15group6.rc create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest15group7.rc create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest15group8.rc create mode 100644 Hackfest_Demos/OSM-15/setup_scripts/hackfest15group9.rc diff --git a/Hackfest_Demos/OSM-15/setup_scripts/bundle.yaml b/Hackfest_Demos/OSM-15/setup_scripts/bundle.yaml new file mode 100644 index 00000000..dd80284e --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/bundle.yaml @@ -0,0 +1,194 @@ +# Copyright 2020 Canonical Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +name: osm +bundle: kubernetes +docs: https://discourse.charmhub.io/t/osm-docs-index/8806 +description: | + **Single instance Charmed OSM** + + Charmed OSM is an OSM distribution, developed and maintained by Canonical, which uses + Juju charms to simplify its deployments and operations. This bundle distribution refers + to the development stack for OSM and allows you to deploy a single instance OSM bundle + that is fast, reliable, and a complete solution with MicroStack and MicroK8s. + + - Industry‐aligned and fully compliant with upstream + - Predictable release cadence and upgrade path + - Simplified deployments and operations + - Stable and secure + - Supported with Ubuntu Advantage + - Availability of managed services +applications: + zookeeper: + charm: zookeeper-k8s + channel: latest/stable + scale: 1 + storage: + data: 100M + kafka: + charm: kafka-k8s + channel: latest/stable + scale: 1 + trust: true + storage: + data: 100M + mariadb: + charm: charmed-osm-mariadb-k8s + scale: 1 + series: kubernetes + storage: + database: 50M + options: + password: manopw + root_password: osm4u + user: mano + mongodb: + charm: mongodb-k8s + channel: 5/edge + scale: 1 + series: kubernetes + storage: + db: 50M + nbi: + charm: osm-nbi + channel: latest/beta + trust: true + scale: 1 + options: + database-commonkey: osm + log-level: DEBUG + resources: + nbi-image: opensourcemano/nbi:testing-daily + ro: + charm: osm-ro + channel: latest/beta + trust: true + scale: 1 + options: + log-level: DEBUG + resources: + ro-image: opensourcemano/ro:testing-daily + ng-ui: + charm: osm-ng-ui + channel: latest/beta + trust: true + scale: 1 + resources: + ng-ui-image: opensourcemano/ng-ui:testing-daily + lcm: + charm: osm-lcm + channel: latest/beta + scale: 1 + options: + database-commonkey: osm + log-level: DEBUG + resources: + lcm-image: opensourcemano/lcm:testing-daily + mon: + charm: osm-mon + channel: latest/beta + trust: true + scale: 1 + options: + database-commonkey: osm + log-level: DEBUG + keystone-enabled: true + resources: + mon-image: opensourcemano/mon:testing-daily + pol: + charm: osm-pol + channel: latest/beta + scale: 1 + options: + log-level: DEBUG + resources: + pol-image: gatici/pol:testing-daily + vca: + charm: osm-vca-integrator + channel: latest/beta + scale: 1 + ingress: + charm: nginx-ingress-integrator + channel: latest/stable + scale: 1 + prometheus: + charm: osm-prometheus + channel: latest/stable + scale: 1 + series: kubernetes + storage: + data: 50M + options: + default-target: "mon:8000" + grafana: + charm: osm-grafana + channel: latest/stable + scale: 1 + series: kubernetes + keystone: + charm: osm-keystone + channel: latest/beta + scale: 1 + resources: + keystone-image: opensourcemano/keystone:testing-daily +relations: + - - grafana:prometheus + - prometheus:prometheus + - - kafka:zookeeper + - zookeeper:zookeeper + - - keystone:db + - mariadb:mysql + - - lcm:kafka + - kafka:kafka + - - lcm:mongodb + - mongodb:database + - - lcm:vca + - vca:vca + - - ro:ro + - lcm:ro + - - ro:kafka + - kafka:kafka + - - ro:mongodb + - mongodb:database + - - pol:kafka + - kafka:kafka + - - pol:mongodb + - mongodb:database + - - mon:mongodb + - mongodb:database + - - mon:kafka + - kafka:kafka + - - mon:vca + - vca:vca + - - nbi:mongodb + - mongodb:database + - - nbi:kafka + - kafka:kafka + - - nbi:ingress + - ingress:ingress + - - nbi:prometheus + - prometheus:prometheus + - - nbi:keystone + - keystone:keystone + - - mon:prometheus + - prometheus:prometheus + - - ng-ui:nbi + - nbi:nbi + - - ng-ui:ingress + - ingress:ingress + - - mon:keystone + - keystone:keystone + - - mariadb:mysql + - pol:mysql + - - grafana:db + - mariadb:mysql \ No newline at end of file diff --git a/Hackfest_Demos/OSM-15/setup_scripts/common-vars b/Hackfest_Demos/OSM-15/setup_scripts/common-vars index 96a7474d..560aa9e7 100644 --- a/Hackfest_Demos/OSM-15/setup_scripts/common-vars +++ b/Hackfest_Demos/OSM-15/setup_scripts/common-vars @@ -15,8 +15,8 @@ if [ ! -z ${DEBUG} ]; then set -x fi -START=5 -MAX=5 +START=6 +MAX=10 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 0775f460..d72945aa 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh @@ -22,8 +22,9 @@ wait echo "Waiting for OSM VM to be ready" 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]\+'` while [ 1 ] ; do - sleep 5 - ALIVE=$(ssh -T -o ConnectTimeout=1 -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} 'cloud-init status --wait | tail -1' 2> /dev/null) + sleep 10 + ALIVE=$(ssh -T -o ConnectTimeout=1 -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} "cloud-init status --wait" | tail -1 2> /dev/null) + echo $ALIVE if [ "${ALIVE}" == "status: done" ] ; then break ; fi done diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest15admin.pub b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15admin.pub new file mode 100644 index 00000000..d1cc177d --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15admin.pub @@ -0,0 +1,6 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCfVxIJI9N5VxOQ90PyDUYOVz/FzpR+tVg0FlFcvxo5njJKFwabHv7GgQ8rY3y0GSkahFn/okjjVtV3t0lgPJbkir4bHp9eDvRBbI4ryGjhruKepwQ+W4Dw55id1COHGJch84D5XpCCNHPZkxA26vsETf009nN42vfWImNeDLucUiUTf02aiwasUUTcIMcadHR0hsgAiK1wBqv0Q5A2Fiok0xd0AGDiPRvdxx11wQH3QMMC5cluXbMWjIkRRwSpoEBrfb9GF2tSEMvA258G+szWGM1pTxQ+qvmSnLlzUu118a29QKUa/0uwuHaOxTIIUzjZ/7471gfRn1ei5aB9GXHot8CFkkUYiKqeOT9hTZbadmoJ261uqth+y8nDrVX0sZHR5oNO6EhC4Dif+ZSivx1HmJuq0w8aPnatSqTaEn+eQF+P9R25jerC24gjpRzjGaXL6B+Yra+EFZ+9UPpH5+8MIxMT0Cdw+hR/E8HT90j2SCj+daPDOumuXBHQxV6+cKM= ggdb@PC-519179 +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDju8fbvOm6uIe+3jWoaziRjJ1jjP2N13bd/kw+wcmvHFMXWUKgFUFkutpcYi1fy0WIVUgueMVSuT1VhRrtrpv0m1y1s9AcU4MQQyW/osytHEYWkWpiI4hMwDKY/Lksp0mArHS37kYUs2ffGW6ir10JlkLfWO7kroUW/wMGLhii5nnjPrOO7y5k8h4zaivDDiRckrjoW6ohoILGMTc9XqpW/pA8er0QktC63yowVfWPMhXWXKrf5YO3flXHVprvFtbvmSySk0DvbcN5/xQfr4CyYnbMCXH9tnrK24j9PDBTXw7FOtkS/k1Ja/y9RPdD5pP9vZ7AP3lUS7v8gi7BGczlYCqBFoY/tA2ML62gS22lOuHWgMA5nKiwdT9AUoOfW+jLl789Fkhzg7PUgncdyI8clQBCOB6i9McL+fObXE4cFYBvM5hII77Viz8tmdO28WSkcxsZm5HIhgk5yV9MdxpAOdLF9ep2bvZU9+f4/XqjYgrRlDPGMu5yT+1d5h4w91s= escaleira +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDUrOLpYylC9lRlIknpGeda2mzY+mqTYxLDj9Q5t2jerT/aHARSr7DBbkLroqb8bZLsHw3QSHOy9AjF7Y8z5HpkFHGL0do1A/a3MkY+TIX3+FVP8FuvSIb7fNofC2odH5Pj/5kY2TSQhGcsAeYejoYn6qQ0xElNJtWaoqPKkAe825TJkANc31YvokxYCbY9oHfzUPEXtS2nADJrn5drEgc/R8cAwPRNPs2EU/XT2u1m+UP5T9nHbFV9rjv7RhrezB1ynQ5IGsPteOCDIsLswLKpuSQ0JBpuYb6wKjzBlYYyMe1lQF+m9ZWEnywGzCEQncsOxF+GzSbxrrtTLOFgDAbT mark.beierl@canonical.com +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDXkxu28f66txgq0YPgy1zAQtbdio9rauv+3hBLk3YyoHBmURkykxm5smzpaUeoqYD52JLdGo8ZlTC2anxI485ODb51HJXvWtBjI41lSzaHqXiTbv4r1iskvE7Aqu77mDvjiIbwclS17BSwAPHAHZz90adclQqS4FlicstH8P4OxImndD4DS/sEY+2kSKIQZSHeTd+lweiuuszcL/uUcDhNcByT/WijoM333RmGET7aWssjnUzsm3hTNs+789+fRZWR7rohu8bmCGlx9QizGtZzQEaXL/km75c3TDf57PuYOFT/LMsJa1xPOOpb5x2sEI7o6rjBD3mcGyfQBlXrbsjTtDzjK6LNHVpf/caTmgvpWzyqpoE/nBY5ZKHiAn4WCTEkW8ToAwB9Cw5ou3VPfxIXXH/e1lB6oYDhvlpsW8f7SU3pWaVKQSU7niSRcMqkts6ufs7M5Md4BcUq10R4IyHmhqLK5TfS3qlsxLKS4dN1nbVaLP9CqVqGaSYxFFOhnZc= chiara@chiara-ThinkPad-T14-Gen-3 +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDW3mqvR5y+8RLf3hPT8ut1roaU6EGJ8X7Q1FMCW0Z0tEErNpyJzsFev9mWdaR3wz+o2TAauagIsYFclBYuSEEFrEgxmQ3YirRdd03a7hTlrD430hXVoIiLHJEoAjEs+vnigWP/sz5CnWmA+rbFsR1WJeNvcfHTI4UEnVWeCMsOKQVqEbXFn1EA/Q+OgNhlDWnpR1TuzAvODVjyZqRwdFpywFia+W40psCdL6Mmi9YaIJxxFhsssU7pmDFgLQhRj7jprRs6oO+i4eBT2keh+Ll3W1k8IkDosHR0KDDb3+dL/vOhu+sMNcUC+vXlx/hrvXH9Me0AX3NBgzRHs6AwrHs5 Generated-by-Nova +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDf4RAmNBrznLTjzlf8a2SxX6ZWEVBT09z3Fktp1rXa9eBzkiWB/c2x8iJ693coB6GAs70weliDiLUp/OeHuJH7jeCquzRTRBfu4qlkNBlzPeFJgxUqxMnW+s6p8h8nnLmc3noHJJ/t0/Cv2Tq8/PiV84hl3A7bxFxO8oPKPG9LJURCFweDKiv9FELaH7RfG0VEg+O/cmeAcK/zjMZCU6O2JvsZ1v9i+vEMki8s8cmNNzWTgetDOwIU1SUf8dUST7Kzue0OhST3Asidyny6ymkQOGMeiP78qMhU5H6DDQlwsBeJ3DY4SIBcVrZ0bbMp0u9d7Ra4+1qOSOldYDnOfqLnWoQjXAuqEaOe+ivxQ27C8upw39tRAbbYXAy4CUqYDH1q5+D+3YotxHfwo2oAmSMj1cC0BOOCxP+oqxfWXVirOqB4LKkpVvKVHQMyLhBkxg94OiTy1JlRDNGwpZbjZQYgOHZ26g9OSmUKbbHmyiyqWdlKUVykehLBAoUfpA8WQ20= davide@davide-asus diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group10.rc b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group10.rc new file mode 100644 index 00000000..9d686252 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group10.rc @@ -0,0 +1,12 @@ +export OS_AUTH_TYPE=password +export OS_AUTH_URL=http://172.21.247.1:5000/v3 +export OS_DOMAIN_NAME= +export OS_IDENTITY_API_VERSION=3 +export OS_INTERFACE=public +export OS_PASSWORD=hackfest15group-10! +export OS_PROJECT_DOMAIN_NAME= +export OS_PROJECT_NAME=hackfest15group10 +export OS_REGION_NAME=RegionOne +export OS_TENANT_NAME=hackfest15group10 +export OS_USERNAME=hackfest15group10 +export OS_USER_DOMAIN_NAME= diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group6.rc b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group6.rc new file mode 100644 index 00000000..1ae4a9dd --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group6.rc @@ -0,0 +1,12 @@ +export OS_AUTH_TYPE=password +export OS_AUTH_URL=http://172.21.247.1:5000/v3 +export OS_DOMAIN_NAME= +export OS_IDENTITY_API_VERSION=3 +export OS_INTERFACE=public +export OS_PASSWORD=hackfest15group-6! +export OS_PROJECT_DOMAIN_NAME= +export OS_PROJECT_NAME=hackfest15group6 +export OS_REGION_NAME=RegionOne +export OS_TENANT_NAME=hackfest15group6 +export OS_USERNAME=hackfest15group6 +export OS_USER_DOMAIN_NAME= diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group7.rc b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group7.rc new file mode 100644 index 00000000..0a9fb81e --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group7.rc @@ -0,0 +1,12 @@ +export OS_AUTH_TYPE=password +export OS_AUTH_URL=http://172.21.247.1:5000/v3 +export OS_DOMAIN_NAME= +export OS_IDENTITY_API_VERSION=3 +export OS_INTERFACE=public +export OS_PASSWORD=hackfest15group-7! +export OS_PROJECT_DOMAIN_NAME= +export OS_PROJECT_NAME=hackfest15group7 +export OS_REGION_NAME=RegionOne +export OS_TENANT_NAME=hackfest15group7 +export OS_USERNAME=hackfest15group7 +export OS_USER_DOMAIN_NAME= diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group8.rc b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group8.rc new file mode 100644 index 00000000..88fce050 --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group8.rc @@ -0,0 +1,12 @@ +export OS_AUTH_TYPE=password +export OS_AUTH_URL=http://172.21.247.1:5000/v3 +export OS_DOMAIN_NAME= +export OS_IDENTITY_API_VERSION=3 +export OS_INTERFACE=public +export OS_PASSWORD=hackfest15group-8! +export OS_PROJECT_DOMAIN_NAME= +export OS_PROJECT_NAME=hackfest15group8 +export OS_REGION_NAME=RegionOne +export OS_TENANT_NAME=hackfest15group8 +export OS_USERNAME=hackfest15group8 +export OS_USER_DOMAIN_NAME= diff --git a/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group9.rc b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group9.rc new file mode 100644 index 00000000..88e8fc8c --- /dev/null +++ b/Hackfest_Demos/OSM-15/setup_scripts/hackfest15group9.rc @@ -0,0 +1,12 @@ +export OS_AUTH_TYPE=password +export OS_AUTH_URL=http://172.21.247.1:5000/v3 +export OS_DOMAIN_NAME= +export OS_IDENTITY_API_VERSION=3 +export OS_INTERFACE=public +export OS_PASSWORD=hackfest15group-9! +export OS_PROJECT_DOMAIN_NAME= +export OS_PROJECT_NAME=hackfest15group9 +export OS_REGION_NAME=RegionOne +export OS_TENANT_NAME=hackfest15group9 +export OS_USERNAME=hackfest15group9 +export OS_USER_DOMAIN_NAME= diff --git a/Hackfest_Demos/OSM-15/setup_scripts/osm-cloud-init.yaml b/Hackfest_Demos/OSM-15/setup_scripts/osm-cloud-init.yaml index 7384a541..80b6b7b6 100644 --- a/Hackfest_Demos/OSM-15/setup_scripts/osm-cloud-init.yaml +++ b/Hackfest_Demos/OSM-15/setup_scripts/osm-cloud-init.yaml @@ -2,16 +2,3 @@ password: hackfest chpasswd: { expire: False } ssh_pwauth: True - -write_files: -- path: /etc/netplan/99-default-route.yaml - owner: root:root - content: | - network: - version: 2 - ethernets: - ens4: - dhcp4-overrides: - use-routes: false -runcmd: -- reboot \ 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 0fdc763f..4e919700 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-full-setup.sh @@ -5,8 +5,9 @@ echo $0 started at $(date) #./run-create-openstack-vm.sh $@ #./run-vm-initial-setup.sh $@ -./run-install-osm.sh $@ +#sleep 15 +#./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 e33cdbd7..31e781b5 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/run-install-osm.sh @@ -9,7 +9,9 @@ for PARTICIPANT in `seq ${START} ${MAX}` ; do 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-install-osm.sh ubuntu@${IP}: & - ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} ./vm-install-osm.sh 2>&1 | tee -a logs/vm-install-osm-${PARTICIPANT}.log& + scp -o StrictHostKeyChecking=no -i hackfest_rsa ./bundle.yaml ubuntu@${IP}: & + sleep 10 + ssh -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} ". ~/vm-install-osm.sh" 2>&1 | tee -a logs/vm-install-osm-${PARTICIPANT}.log& done wait 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 2114415b..80fbed22 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 @@ -31,8 +31,10 @@ EOF 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}: & + scp -o StrictHostKeyChecking=no -i hackfest_rsa hackfest-k8s.yaml ubuntu@${IP}:~/kubeconfig.yaml & + sleep 10 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} ". .profile;osm k8scluster-add --creds ~/kubeconfig.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" done 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 61971f06..5e4646e1 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 @@ -9,7 +9,9 @@ for PARTICIPANT in `seq ${START} ${MAX}` ; do 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}: & - 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 ./hackfest15admin.pub ubuntu@${IP}: & + sleep 10 + 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/vm-initial-setup.sh b/Hackfest_Demos/OSM-15/setup_scripts/vm-initial-setup.sh index 26fe2e03..c58a643b 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/vm-initial-setup.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/vm-initial-setup.sh @@ -35,6 +35,12 @@ for MDG in common devops IM LCM MON N2VC NBI NG-SA NG-UI osmclient PLA POL RO te done popd +# Create directory for kubeconfig +mkdir $HOME/.kube + +# Add hackfest15admin public keys +cat ~/hackfest15admin.pub >> ~/.ssh/authorized_keys + # Export Module paths cat << 'EOF' > $HOME/osm-vars.sh export GIT_PATH=$HOME/OSM @@ -51,3 +57,5 @@ echo ". $HOME/osm-vars.sh" >> $HOME/.bashrc . $HOME/osm-vars.sh echo $0 $@ complete at $(date) + +sudo reboot diff --git a/Hackfest_Demos/OSM-15/setup_scripts/vm-install-osm.sh b/Hackfest_Demos/OSM-15/setup_scripts/vm-install-osm.sh index eba4e370..512203ec 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/vm-install-osm.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/vm-install-osm.sh @@ -15,35 +15,28 @@ plain-http = true EOF sudo systemctl restart snap.microk8s.daemon-containerd.service -sudo microk8s.enable storage +sudo microk8s.enable hostpath-storage +sudo usermod -a -G microk8s ubuntu +sudo chown -f -R ubuntu ~/.kube sudo snap alias microk8s.kubectl kubectl wget https://osm-download.etsi.org/ftp/osm-13.0-thirteen/install_osm.sh chmod +x ./install_osm.sh -./install_osm.sh --charmed -R testing-daily -t testing-daily -r testing -y 2>&1 | tee charmed_install_log.txt +./install_osm.sh --charmed --bundle ~/bundle.yaml -R testing-daily -t testing-daily -r testing -y 2>&1 | tee charmed_install_log.txt # Set our environment to talk to the new OSM grep '^export OSM' ~/charmed_install_log.txt >> ~/.bashrc +grep '^export OSM' ~/charmed_install_log.txt >> ~/.profile while [ 1 ] ; do - osm version + . .profile;osm version if [ $? -eq 0 ]; then break ; fi done - -# Expose our services -sudo sed -i "s/127.0.0.1 /127.0.0.1 nbi.osm ui.osm grafana.osm prometheus.osm /" /etc/hosts - -juju config -m osm grafana site_url=https://grafana.osm -juju config -m osm prometheus site_url=https://prometheus.osm -juju config -m osm nbi external-hostname=nbi.osm -juju config -m osm ng-ui external-hostname=ui.osm - -echo "export OSM_HOSTNAME=nbi.osm:443" >> .bashrc -echo "export OSM_HOSTNAME=nbi.osm:443" >> .profile -echo "export OSM_PASSWORD=hackfest" >> .bashrc -echo "export OSM_PASSWORD=hackfest" >> .profile +. .profile; osm user-update admin --password admin +echo "export OSM_PASSWORD=admin" >> .bashrc +echo "export OSM_PASSWORD=admin" >> .profile # Set some sane defaults for LXD lxc profile set default limits.memory 1GB -- GitLab From 9b7b3527fd595c87cd24c6548464de783dca386b Mon Sep 17 00:00:00 2001 From: Gulsum Atici Date: Thu, 8 Jun 2023 17:35:58 +0300 Subject: [PATCH 9/9] Renaming one script and removing log files Signed-off-by: Gulsum Atici --- Hackfest_Demos/OSM-15/setup_scripts/README.md | 4 +- .../setup_scripts/create-openstack-vm.sh | 2 +- .../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 ------- ...tack-vm.sh => run-create-openstack-vms.sh} | 0 ...tack-vm.sh => run-delete-openstack-vms.sh} | 0 .../OSM-15/setup_scripts/run-full-setup.sh | 8 +- 8 files changed, 7 insertions(+), 1985 deletions(-) delete mode 100644 Hackfest_Demos/OSM-15/setup_scripts/logs/create-openstack-user-and-project-5.log delete mode 100644 Hackfest_Demos/OSM-15/setup_scripts/logs/vm-initial-setup-5.log delete mode 100644 Hackfest_Demos/OSM-15/setup_scripts/logs/vm-install-osm-5.log rename Hackfest_Demos/OSM-15/setup_scripts/{run-create-openstack-vm.sh => run-create-openstack-vms.sh} (100%) rename Hackfest_Demos/OSM-15/setup_scripts/{run-delete-openstack-vm.sh => run-delete-openstack-vms.sh} (100%) diff --git a/Hackfest_Demos/OSM-15/setup_scripts/README.md b/Hackfest_Demos/OSM-15/setup_scripts/README.md index 9a4a90af..dcb51548 100644 --- a/Hackfest_Demos/OSM-15/setup_scripts/README.md +++ b/Hackfest_Demos/OSM-15/setup_scripts/README.md @@ -20,7 +20,7 @@ FOCAL: Image to install VMs This script creates the VMs in required project ``` -./run-create-openstack-vm.sh +./run-create-openstack-vms.sh ``` @@ -48,7 +48,7 @@ Add VIM and ks8cluster to OSM instance ## Full Flow ``` -./run-create-openstack-user-and-project.sh +./run-create-openstack-vms.sh ./run-vm-initial-setup.sh ./run-install-osm.sh ./run-osm-vim-k8scluster-add.sh 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 d72945aa..2c4fc656 100755 --- a/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh +++ b/Hackfest_Demos/OSM-15/setup_scripts/create-openstack-vm.sh @@ -23,7 +23,7 @@ echo "Waiting for OSM VM to be ready" 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]\+'` while [ 1 ] ; do sleep 10 - ALIVE=$(ssh -T -o ConnectTimeout=1 -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} "cloud-init status --wait" | tail -1 2> /dev/null) + ALIVE=$(ssh -T -o ConnectTimeout=5 -o StrictHostKeyChecking=no -i hackfest_rsa ubuntu@${IP} "cloud-init status --wait" | tail -1 2> /dev/null) echo $ALIVE if [ "${ALIVE}" == "status: done" ] ; then break ; fi done 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 deleted file mode 100644 index a649cd14..00000000 --- a/Hackfest_Demos/OSM-15/setup_scripts/logs/create-openstack-user-and-project-5.log +++ /dev/null @@ -1,143 +0,0 @@ -./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 deleted file mode 100644 index 0d0d0277..00000000 --- a/Hackfest_Demos/OSM-15/setup_scripts/logs/vm-initial-setup-5.log +++ /dev/null @@ -1,1286 +0,0 @@ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -@ 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 deleted file mode 100644 index 60c2258c..00000000 --- a/Hackfest_Demos/OSM-15/setup_scripts/logs/vm-install-osm-5.log +++ /dev/null @@ -1,549 +0,0 @@ -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 -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/run-create-openstack-vm.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-create-openstack-vms.sh similarity index 100% rename from Hackfest_Demos/OSM-15/setup_scripts/run-create-openstack-vm.sh rename to Hackfest_Demos/OSM-15/setup_scripts/run-create-openstack-vms.sh diff --git a/Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vm.sh b/Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vms.sh similarity index 100% rename from Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vm.sh rename to Hackfest_Demos/OSM-15/setup_scripts/run-delete-openstack-vms.sh 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 4e919700..b3bebad7 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 $@ -#sleep 15 -#./run-install-osm.sh $@ +./run-create-openstack-vms.sh $@ +./run-vm-initial-setup.sh $@ +sleep 15 +./run-install-osm.sh $@ wait ./run-osm-vim-k8scluster-add.sh $@ -- GitLab