[LXD 4.11] Can't get /tmp/.x11-unix/X0 in my container via proxy on a kiosk-like setup. pls help

I’m trying to get kiosk-like setup with LXC 4.11 where X app is run within a container (similar https://blog.simos.info/running-x11-software-in-lxd-containers/ but without DE on host):

  • host is server Ubuntu 20.10 without Desktop Environment, but with Xorg/startX - xterm, glxgears runs just fine.
  • container is also Ubuntu 20.10 (cloud).

The problem that I encounter is that none of glxinfo/xclock works and it may be due to fact that /tmp/.X11-unix is empty in a container.

What may be the reason for that?

Strange symptom is that if I keep “environment.DISPLAY: :0” in x11 profile, then packages from that profile (x11-apps, mesa-utils) are not installed.
Packages specified for cloud-init from other profiles are installed, no visible traces of errors in cloud-init/output, at the same time - nothing mentioning X0 or X11.
I’ve tried to “launch”/“exec” from xterm running in X - makes no difference. Ensured that users are in tty group…

Hosts: ls -al /tmp/.X11-unix/

total 8
drwxrwxrwt  2 root   root   4096 Mar  6 03:08 .
drwxrwxrwt 11 root   root   4096 Mar  6 03:08 ..
srwxrwxrwx  1 ubuntu ubuntu    0 Mar  6 03:08 X0

whereis container’s is empty

total 0
drwxrwxrwt 1 root root   0 Mar  6 02:53 .
drwxrwxrwt 1 root root 896 Mar  6 03:10 ..

container was created via lxc launch images:ubuntu/20.10/cloud --profile default --profile net --profile x11 game-container. I’ve also tried ubuntu:20.10 - it made no difference.

lxc config show -e c:

ubuntu@homesrv:~$ lxc config show -e game-container
architecture: aarch64
config:
  boot.autostart: "false"
  environment.DISPLAY: :0
  image.architecture: arm64
  image.description: Ubuntu groovy arm64 (20210305_09:17)
  image.os: Ubuntu
  image.release: groovy
  image.serial: "20210305_09:17"
  image.type: squashfs
  image.variant: cloud
  user.network-config: |
    version: 1
    config:
      - type: physical
        name: eth0-int
        subnets:
          - type: dhcp
            ipv4: true
      - type: physical
        name: eth1-ext
        subnets:
          - type: dhcp
            ipv4: true
  user.user-data: |
    #cloud-config
    packages:
      - alsa-utils
  volatile.apply_template: create
  volatile.base_image: e2b4b88c300ad9143c36fc18cf2fd67f3cf2587a420715c7b3ed3675917exxee
  volatile.eth0.hwaddr: 00:16:3e:b6:xx:xx
  volatile.eth1.hwaddr: 00:16:3e:fb:xx:xx
  volatile.idmap.base: "0"
  volatile.idmap.next: '[{"Isuid":true,"Isgid":false,"Hostid":1000000,"Nsid":0,"Maprange":1000000000},{"Isuid":false,"Isgid":true,"Hostid":1000000,"Nsid":0,"Maprange":1000000000}]'
  volatile.last_state.idmap: '[]'
devices:
  X0:
    bind: container
    connect: unix:@/tmp/.X11-unix/X0
    listen: unix:@/tmp/.X11-unix/X0
    security.gid: "1000"
    security.uid: "1000"
    type: proxy
  controlC0:
    gid: "29"
    path: /dev/snd/controlC0
    type: unix-char
  controlC1:
    gid: "29"
    path: /dev/snd/controlC1
    type: unix-char
  eth0:
    name: eth0-int
    nictype: bridged
    parent: lxdbr0
    type: nic
  eth1:
    name: eth1-ext
    nictype: macvlan
    parent: wlan0
    type: nic
  mygpu:
    gid: "44"
    type: gpu
  pcmC0D0p:
    gid: "29"
    path: /dev/snd/pcmC0D0p
    type: unix-char
  pcmC1D0p:
    gid: "29"
    path: /dev/snd/pcmC1D0p
    type: unix-char
  root:
    path: /
    pool: default
    type: disk
  seq:
    gid: "29"
    path: /dev/snd/seq
    type: unix-char
  timer:
    gid: "29"
    path: /dev/snd/timer
    type: unix-char
ephemeral: false
profiles:
- default
- x11
- net
- audio-alsa
stateful: false
description: ""

Please advise how can I diagnose it?

Hi!

The segment in the x11 LXD profile for the X11 socket is

  X0:
    bind: container
    connect: unix:@/tmp/.X11-unix/X1
    listen: unix:@/tmp/.X11-unix/X0
    security.gid: "1000"
    security.uid: "1000"
    type: proxy

The @ in @/tmp/.X11-unix/X0 means that it uses the abstract Unix socket and not an actual file in /tmp/.X11-unix/. The /tmp/.X11-unix/ is just the name, and they use it because the X server by default creates both the Unix socket at /tmp/.X11-unix/X0 and an _abstract Unix socket with the name /tmp/.X11-unix/.

You are using Ubuntu 20.10 on the host, which by default still is based on X11 and not on Wayland (which would have meant extra work). Although not related, I would suggest to stick to Ubuntu 20.04 LTS due to the 5-year support; Ubuntu 20.10 is a development version with 9 month support only.

The default profile in my tutorial mentions an /tmp/.X11-unix/X1 on the host, which is consistent if you have two GPUs on the host. Have you adapted it for your case if you have just a X0 on the host?

The part that I do not know is how do you get to launch the X server on the host, since you do not have a desktop environment. The parameter -nolisten local disables the abstract Unix socket.

If you do not use the abstract Unix sockets, then you can remove the @ from the LXD profile and use the Unix sockets.

Maybe I’m wrong, but I think when I’ve tried to setup same config on Ubuntu Desktop I have seen X0 in container’s /tmp/.X11-unix/ thus I thought it should be here as well, that’s why I treated lack of it as a sympthom of an error.

In general, if I run glxinfo/xclock in a container (executed in xterm session where I do see $DISPLAY), I get No protocol specified Error: Can't open display: :0

noted, tnx, though 20.10, I think, contains newer version of mesa that may be beneficial for me at least during tests.

My host’s $DISPLAY is :0, so should use X0, if I understood your guide correctly

I use `startx xterm’ or ‘startx glxgears’ and that startx single window.

That’s hard part for me as I don’t understand pros/cons/percularities, but I will try. Thank you!

BTW, I’ve tried to set export DISPLAY=:0 in a container - no luck.

Okay, can you run the following on the host when you have, let’s say, an xterm running?

sudo lsof -U | grep X11

It should show many lines like the following. You can verify here that there are Unix sockets.

Xorg 3371 root   61u  unix 0xffffa0ff463f8000 0t0  60488 @/tmp/.X11-unix/X0 type=STREAM
Xorg 6713 root    3u  unix 0xffffa0ff1b0dfc00 0t0  70658 @/tmp/.X11-unix/X1 type=STREAM
Xorg 6713 root    7u  unix 0xffffa0ff4125f800 0t0  67454 @/tmp/.X11-unix/X1 type=STREAM
Xorg 6713 root    8u  unix 0xffffa0ff4125d400 0t0  67455 /tmp/.X11-unix/X1 type=STREAM

yep, there are

Xorg       2533           ubuntu    5u  unix 0xffff6dab275aac00      0t0  67066 @/tmp/.X11-unix/X0 type=STREAM
Xorg       2533           ubuntu    6u  unix 0xffff6dab275a9c00      0t0  67067 /tmp/.X11-unix/X0 type=STREAM
Xorg       2533           ubuntu    7u  unix 0xffff6dab275ab000      0t0  66292 @/tmp/.X11-unix/X0 type=STREAM
Xorg       2533           ubuntu   27u  unix 0xffff6dab2f9fcc00      0t0  69325 @/tmp/.X11-unix/X0 type=STREAM
Xorg       2533           ubuntu   31u  unix 0xffff6dab2f9fd800      0t0  69333 @/tmp/.X11-unix/X0 type=STREAM

tried to remove @ / switch to unix sockets - nothing has changed.

It’s the window manager that manages the placement of more than one window.

When you run startx xterm, are you able to launch another X11 application? Does glxgears manage to start from within startx xterm?

Yep, glxgears works just fine if to run from xterm

I’ve also tried to delete/add X0 and mygpu via “lxc config device add game-container X0 proxy listen=unix:@/tmp/.X11-unix/X0 connect=unix:@/tmp/.X11-unix/X0 security.gid=“1000” security.uid=“1000” bind=instance” (both with abstract/@ and “regular” socket) and “lxc config device add game-container mygpu gpu”

I do get X0 under container’s /tmp/.X11-unix , but altogether with “export DISPLAY=:0” it doesn’t change anything at least visually. Regardless if I’m sudo/regular, I still get “No protocol specified Error: unable to open dispay :0”.

BTW, dunno if that’s important, but as of proxy devices, https://linuxcontainers.org/lxd/docs/master/instances#type-proxy documentation mentions “host/instance” (host is default) as valid options for “bind” property, though I had “container” previously. Anyway, I’ve tried with both “container” and “instance” - makes no difference

what bugs me is that for some reason, I don’t see warnings/errors (or I don’t undersatand how to look for them) in logs apart from [FAILED] Failed to start Remount Root and Kernel File Systems. and [UNSUPP] Starting of Arbitrary Executable Fi…tem Automount Point not supported., the rest is [OK]

lxc console --show-log game-container

Console log:

systemd 245.4-4ubuntu3.4 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Detected virtualization lxc.
Detected architecture arm64.

Welcome to Ubuntu 20.04.2 LTS!

Set hostname to <game-container>.
Initializing machine ID from random generator.
/lib/systemd/system/dbus.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/dbus/system_bus_socket → /run/dbus/system_bus_socket; please update the unit file accordingly.
[  OK  ] Created slice system-modprobe.slice.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
[UNSUPP] Starting of Arbitrary Executable Fi…tem Automount Point not supported.
[  OK  ] Reached target User and Group Name Lookups.
[  OK  ] Reached target Slices.
[  OK  ] Reached target Swap.
[  OK  ] Listening on Device-mapper event daemon FIFOs.
[  OK  ] Listening on LVM2 poll daemon socket.
[  OK  ] Listening on multipathd control socket.
[  OK  ] Listening on Syslog Socket.
[  OK  ] Listening on fsck to fsckd communication Socket.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[  OK  ] Listening on udev Control Socket.
[  OK  ] Listening on udev Kernel Socket.
systemd-journald.service: Attaching egress BPF program to cgroup /sys/fs/cgroup/unified/system.slice/systemd-journald.service failed: Invalid argument
         Starting Journal Service...
         Starting Set the console keyboard layout...
         Starting Remount Root and Kernel File Systems...
         Starting Apply Kernel Variables...
         Starting udev Coldplug all Devices...
         Starting Uncomplicated firewall...
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Uncomplicated firewall.
[  OK  ] Started Journal Service.
[FAILED] Failed to start Remount Root and Kernel File Systems.
See 'systemctl status systemd-remount-fs.service' for details.
         Starting Flush Journal to Persistent Storage...
         Starting Create System Users...
[  OK  ] Finished Set the console keyboard layout.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished udev Coldplug all Devices.
         Starting udev Wait for Complete Device Initialization...
[  OK  ] Finished Create System Users.
         Starting Create Static Device Nodes in /dev...
[  OK  ] Finished Create Static Device Nodes in /dev.
         Starting udev Kernel Device Manager...
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Reached target Local Encrypted Volumes.
[  OK  ] Finished udev Wait for Complete Device Initialization.
[  OK  ] Reached target Local File Systems (Pre).
         Mounting Ensure that the snap directory shares mount events....
[  OK  ] Mounted Ensure that the snap directory shares mount events..
         Mounting Mount unit for core18, revision 1990...
         Mounting Mount unit for lxd, revision 19206...
         Mounting Mount unit for snapd, revision 11043...
[  OK  ] Mounted Mount unit for core18, revision 1990.
[  OK  ] Mounted Mount unit for lxd, revision 19206.
[  OK  ] Mounted Mount unit for snapd, revision 11043.
[  OK  ] Reached target Local File Systems.
         Starting Load AppArmor profiles...
         Starting Set console font and keymap...
         Starting Create final runtime dir for shutdown pivot root...
         Starting Initial cloud-init job (pre-networking)...
         Starting Tell Plymouth To Write Out Runtime Data...
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Set console font and keymap.
[  OK  ] Finished Create final runtime dir for shutdown pivot root.
[  OK  ] Finished Tell Plymouth To Write Out Runtime Data.
[  OK  ] Finished Create Volatile Files and Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Reached target System Time Synchronized.
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Finished Update UTMP about System Boot/Shutdown.
[  OK  ] Finished Load AppArmor profiles.
         Starting Load AppArmor profiles managed internally by snapd...
[  OK  ] Finished Load AppArmor profiles managed internally by snapd.
[36963.276050] cloud-init[168]: Cloud-init v. 20.4.1-0ubuntu1~20.04.1 running 'init-local' at Sat, 06 Mar 2021 12:22:53 +0000. Up 4.86 seconds.
[  OK  ] Finished Initial cloud-init job (pre-networking).
[  OK  ] Reached target Network (Pre).
         Starting Network Service...
[  OK  ] Started Network Service.
         Starting Wait for Network to be Configured...
         Starting Network Name Resolution...
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
[  OK  ] Finished Wait for Network to be Configured.
         Starting Initial cloud-init job (metadata service crawler)...
[36966.312905] cloud-init[198]: Cloud-init v. 20.4.1-0ubuntu1~20.04.1 running 'init' at Sat, 06 Mar 2021 12:22:57 +0000. Up 8.65 seconds.
[36966.313330] cloud-init[198]: ci-info: +++++++++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++++++++
[36966.313537] cloud-init[198]: ci-info: +--------+------+-------------------------------------------+---------------+--------+-------------------+
[36966.313714] cloud-init[198]: ci-info: | Device |  Up  |                  Address                  |      Mask     | Scope  |     Hw-Address    |
[36966.313875] cloud-init[198]: ci-info: +--------+------+-------------------------------------------+---------------+--------+-------------------+
[36966.314015] cloud-init[198]: ci-info: |  eth0  | True |               10.184.104.80               | 255.255.255.0 | global | 00:16:3e:8d:9b:xx |
[36966.314179] cloud-init[198]: ci-info: |  eth0  | True | fd42:dc06:e72d:aa7b:216:3eff:fe8d:xxxx/64 |       .       | global | 00:16:3e:8d:9b:xx |
[36966.314314] cloud-init[198]: ci-info: |  eth0  | True |        fe80::216:3eff:fe8d:xxxx/64        |       .       |  link  | 00:16:3e:8d:9b:xx |
[36966.314461] cloud-init[198]: ci-info: |   lo   | True |                 127.0.0.1                 |   255.0.0.0   |  host  |         .         |
[36966.314592] cloud-init[198]: ci-info: |   lo   | True |                  ::1/128                  |       .       |  host  |         .         |
[36966.314743] cloud-init[198]: ci-info: +--------+------+-------------------------------------------+---------------+--------+-------------------+
[36966.314896] cloud-init[198]: ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
[36966.315127] cloud-init[198]: ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
[36966.315317] cloud-init[198]: ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
[36966.315474] cloud-init[198]: ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
[36966.315620] cloud-init[198]: ci-info: |   0   |   0.0.0.0    | 10.184.104.1 |     0.0.0.0     |    eth0   |   UG  |
[36966.315779] cloud-init[198]: ci-info: |   1   | 10.184.104.0 |   0.0.0.0    |  255.255.255.0  |    eth0   |   U   |
[36966.315951] cloud-init[198]: ci-info: |   2   | 10.184.104.1 |   0.0.0.0    | 255.255.255.255 |    eth0   |   UH  |
[36966.316169] cloud-init[198]: ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
[36966.316335] cloud-init[198]: ci-info: ++++++++++++++++++++++++++++++++++Route IPv6 info++++++++++++++++++++++++++++++++++
[36966.316653] cloud-init[198]: ci-info: +-------+--------------------------+--------------------------+-----------+-------+
[36966.316927] cloud-init[198]: ci-info: | Route |       Destination        |         Gateway          | Interface | Flags |
[36966.317136] cloud-init[198]: ci-info: +-------+--------------------------+--------------------------+-----------+-------+
[36966.317294] cloud-init[198]: ci-info: |   0   | fd42:dc06:e72d:xxxx::/64 |            ::            |    eth0   |   Ue  |
[36966.317438] cloud-init[198]: ci-info: |   1   | fd42:dc06:e72d:xxxx::/64 |            ::            |    eth0   |   Ue  |
[36966.317621] cloud-init[198]: ci-info: |   2   |        fe80::/64         |            ::            |    eth0   |   U   |
[36966.317779] cloud-init[198]: ci-info: |   3   |           ::/0           | fe80::216:3eff:fe37:xxxx |    eth0   |  UGe  |
[36966.317972] cloud-init[198]: ci-info: |   5   |          local           |            ::            |    eth0   |   U   |
[36966.318172] cloud-init[198]: ci-info: |   6   |          local           |            ::            |    eth0   |   U   |
[36966.318428] cloud-init[198]: ci-info: |   7   |         ff00::/8         |            ::            |    eth0   |   U   |
[36966.318633] cloud-init[198]: ci-info: +-------+--------------------------+--------------------------+-----------+-------+
[36968.716966] cloud-init[198]: Generating public/private rsa key pair.
[36968.717361] cloud-init[198]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key
[36968.717596] cloud-init[198]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub
[36968.717961] cloud-init[198]: The key fingerprint is:
[36968.718247] cloud-init[198]: SHA256:gVfRtHLk3m7m2MMraZ8HOtNKrNBWLlHr+FGqQqkQixx root@game-container
[36968.718492] cloud-init[198]: The key's randomart image is:
[36968.718781] cloud-init[198]: +---[RSA 3072]----+
[36968.719041] cloud-init[198]: |          o+o    |
[36968.719297] cloud-init[198]: |       . . o..   |
[36968.719533] cloud-init[198]: |   . .. o . =    |
[36968.719757] cloud-init[198]: |  . o  . . = o   |
[36968.719960] cloud-init[198]: | o   .  S.. + o  |
[36968.720307] cloud-init[198]: |E       o. B +.  |
[36968.720577] cloud-init[198]: |     . o. = A=+. |
[36968.720786] cloud-init[198]: |      . .o *AA+..|
[36968.721042] cloud-init[198]: |         .o.+**+ |
[36968.721297] cloud-init[198]: +----[SHA256]-----+
[36968.721503] cloud-init[198]: Generating public/private dsa key pair.
[36968.721747] cloud-init[198]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key
[36968.721936] cloud-init[198]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub
[36968.722197] cloud-init[198]: The key fingerprint is:
[36968.722400] cloud-init[198]: SHA256:5w+wy3oetCCRyGRq/ov5+z3KHPGZShAXfmLjNk04EoI root@game-container
[36968.722654] cloud-init[198]: The key's randomart image is:
[36968.722884] cloud-init[198]: +---[DSA 1024]----+
[36968.723140] cloud-init[198]: |..o. .           |
[36968.723364] cloud-init[198]: |M=..o.o          |
[36968.723761] cloud-init[198]: |...ooO o         |
[36968.724480] cloud-init[198]: |o   *.A          |
[36968.725091] cloud-init[198]: | . ..=..A .      |
[36968.725617] cloud-init[198]: |  . o.+oo*       |
[36968.726107] cloud-init[198]: |   . o ++ o      |
[36968.726589] cloud-init[198]: |  o = +o.o o     |
[36968.727239] cloud-init[198]: | o.+o*o==   .    |
[36968.727774] cloud-init[198]: +----[SHA256]-----+
[36968.728409] cloud-init[198]: Generating public/private ecdsa key pair.
[36968.729133] cloud-init[198]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key
[36968.729673] cloud-init[198]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub
[36968.730158] cloud-init[198]: The key fingerprint is:
[36968.730795] cloud-init[198]: SHA256:xUduxSd6s/pfR/FrLFxTs0fMhNUq5MzDp6jHGNye5U4 root@game-container
[36968.731410] cloud-init[198]: The key's randomart image is:
[36968.731902] cloud-init[198]: +---[ECDSA 256]---+
[36968.732587] cloud-init[198]: |            ...o+|
[36968.733076] cloud-init[198]: |         . o..++o|
[36968.733694] cloud-init[198]: |          o*+. *=|
[36968.734155] cloud-init[198]: |         . oO =.*|
[36968.734720] cloud-init[198]: |           . * *+|
[36968.735254] cloud-init[198]: |        o o + +.+|
[36968.735848] cloud-init[198]: |         * +E+ +o|
[36968.736564] cloud-init[198]: |        o =.o o o|
[36968.737164] cloud-init[198]: |         . ......|
[36968.737723] cloud-init[198]: +----[SHA256]-----+
[36968.738229] cloud-init[198]: Generating public/private ed25519 key pair.
[36968.738797] cloud-init[198]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key
[36968.739446] cloud-init[198]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub
[36968.739964] cloud-init[198]: The key fingerprint is:
[36968.740431] cloud-init[198]: SHA256:GSrVxlmaCx1l/bREwn4jVY05/CFy7lGegXzZ2C4jZgc root@game-container
[36968.740967] cloud-init[198]: The key's randomart image is:
[36968.741411] cloud-init[198]: +--[ED25519 256]--+
[36968.741990] cloud-init[198]: |        ..+oooo*=|
[36968.742444] cloud-init[198]: |       + B .E*X*+|
[36968.742831] cloud-init[198]: |      o X  .+*==+|
[36968.743334] cloud-init[198]: |    .  +    *oOoo|
[36968.743877] cloud-init[198]: |    . . S  o.=.+ |
[36968.744502] cloud-init[198]: |     .       .   |
[36968.745057] cloud-init[198]: |                 |
[36968.745490] cloud-init[198]: |                 |
[36968.745936] cloud-init[198]: |                 |
[36968.746458] cloud-init[198]: +----[SHA256]-----+
[  OK  ] Finished Initial cloud-init job (metadata service crawler).
[  OK  ] Reached target Cloud-config availability.
[  OK  ] Reached target Network is Online.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily apt download activities.
[  OK  ] Started Daily apt upgrade and clean activities.
[  OK  ] Started Periodic ext4 Online Metadata Check for All Filesystems.
[  OK  ] Started Refresh fwupd metadata regularly.
[  OK  ] Started Daily rotation of log files.
[  OK  ] Started Daily man-db regeneration.
[  OK  ] Started Message of the Day.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target Paths.
[  OK  ] Reached target Timers.
[  OK  ] Listening on Unix socket for apport crash forwarding.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Listening on Open-iSCSI iscsid Socket.
         Starting Socket activation for snappy daemon.
[  OK  ] Listening on UUID daemon activation socket.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
         Starting Availability of block devices...
[  OK  ] Listening on Socket activation for snappy daemon.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting Accounts Service...
         Starting LSB: automatic crash report generation...
         Starting Deferred execution scheduler...
[  OK  ] Started Regular background program processing daemon.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Save initial kernel messages after boot.
         Starting Remove Stale Online ext4 Metadata Check Snapshots...
         Starting Dispatcher daemon for systemd-networkd...
         Starting System Logging Service...
         Starting Snap Daemon...
         Starting OpenBSD Secure Shell server...
         Starting Login Service...
         Starting Permit User Sessions...
[  OK  ] Finished Availability of block devices.
[  OK  ] Started Deferred execution scheduler.
[  OK  ] Started System Logging Service.
[  OK  ] Finished Permit User Sessions.
         Starting Hold until boot process finishes up...
         Starting Terminate Plymouth Boot Screen...
[  OK  ] Finished Hold until boot process finishes up.
[  OK  ] Started Console Getty.
[  OK  ] Created slice system-getty.slice.
[  OK  ] Reached target Login Prompts.
[  OK  ] Started LSB: automatic crash report generation.
[  OK  ] Finished Remove Stale Online ext4 Metadata Check Snapshots.
[  OK  ] Finished Terminate Plymouth Boot Screen.
[  OK  ] Started OpenBSD Secure Shell server.
[  OK  ] Started Login Service.
         Starting Hostname Service...
[  OK  ] Started Unattended Upgrades Shutdown.
         Starting Authorization Manager...
[  OK  ] Started Authorization Manager.
[  OK  ] Started Accounts Service.
[  OK  ] Started Hostname Service.
[  OK  ] Started Dispatcher daemon for systemd-networkd.
[  OK  ] Started Snap Daemon.
         Starting Wait until snapd is fully seeded...
[  OK  ] Listening on Socket unix for snap application lxd.daemon.
         Starting Service for snap application lxd.activate...

Ubuntu 20.04.2 LTS game-container console

game-container login: [36980.743910] cloud-init[754]: Cloud-init v. 20.4.1-0ubuntu1~20.04.1 running 'modules:config' at Sat, 06 Mar 2021 12:23:10 +0000. Up 21.12 seconds.
[36982.523215] cloud-init[767]: Hit:1 http://ports.ubuntu.com/ubuntu-ports focal InRelease
[36982.542095] cloud-init[767]: Get:2 http://ports.ubuntu.com/ubuntu-ports focal-updates InRelease [114 kB]
[36982.717681] cloud-init[767]: Get:3 http://ports.ubuntu.com/ubuntu-ports focal-backports InRelease [101 kB]
[36982.886524] cloud-init[767]: Get:4 http://ports.ubuntu.com/ubuntu-ports focal-security InRelease [109 kB]
[36982.995866] cloud-init[767]: Get:5 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 Packages [8458 kB]
[36987.596829] cloud-init[767]: Get:6 http://ports.ubuntu.com/ubuntu-ports focal/universe Translation-en [5124 kB]
[36989.477181] cloud-init[767]: Get:7 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 c-n-f Metadata [255 kB]
[36989.572912] cloud-init[767]: Get:8 http://ports.ubuntu.com/ubuntu-ports focal/multiverse arm64 Packages [114 kB]
[36989.612389] cloud-init[767]: Get:9 http://ports.ubuntu.com/ubuntu-ports focal/multiverse Translation-en [104 kB]
[36989.646498] cloud-init[767]: Get:10 http://ports.ubuntu.com/ubuntu-ports focal/multiverse arm64 c-n-f Metadata [8024 B]
[36989.651078] cloud-init[767]: Get:11 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 Packages [672 kB]
[36989.871353] cloud-init[767]: Get:12 http://ports.ubuntu.com/ubuntu-ports focal-updates/main Translation-en [201 kB]
[36989.938893] cloud-init[767]: Get:13 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 c-n-f Metadata [12.4 kB]
[36989.944197] cloud-init[767]: Get:14 http://ports.ubuntu.com/ubuntu-ports focal-updates/restricted arm64 Packages [2288 B]
[36989.944832] cloud-init[767]: Get:15 http://ports.ubuntu.com/ubuntu-ports focal-updates/restricted Translation-en [23.2 kB]
[36989.958465] cloud-init[767]: Get:16 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 Packages [695 kB]
[36990.254303] cloud-init[767]: Get:17 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe Translation-en [155 kB]
[36990.309129] cloud-init[767]: Get:18 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 c-n-f Metadata [14.3 kB]
[36990.317664] cloud-init[767]: Get:19 http://ports.ubuntu.com/ubuntu-ports focal-updates/multiverse arm64 Packages [4512 B]
[36990.321199] cloud-init[767]: Get:20 http://ports.ubuntu.com/ubuntu-ports focal-updates/multiverse Translation-en [5508 B]
[36990.329836] cloud-init[767]: Get:21 http://ports.ubuntu.com/ubuntu-ports focal-updates/multiverse arm64 c-n-f Metadata [260 B]
[36990.330803] cloud-init[767]: Get:22 http://ports.ubuntu.com/ubuntu-ports focal-backports/main arm64 c-n-f Metadata [112 B]
[36990.331640] cloud-init[767]: Get:23 http://ports.ubuntu.com/ubuntu-ports focal-backports/restricted arm64 c-n-f Metadata [116 B]
[36990.332481] cloud-init[767]: Get:24 http://ports.ubuntu.com/ubuntu-ports focal-backports/universe arm64 Packages [4028 B]
[36990.333311] cloud-init[767]: Get:25 http://ports.ubuntu.com/ubuntu-ports focal-backports/universe Translation-en [1448 B]
[36990.333972] cloud-init[767]: Get:26 http://ports.ubuntu.com/ubuntu-ports focal-backports/universe arm64 c-n-f Metadata [224 B]
[36990.372710] cloud-init[767]: Get:27 http://ports.ubuntu.com/ubuntu-ports focal-backports/multiverse arm64 c-n-f Metadata [116 B]
[36990.374124] cloud-init[767]: Get:28 http://ports.ubuntu.com/ubuntu-ports focal-security/main arm64 Packages [368 kB]
[36990.514474] cloud-init[767]: Get:29 http://ports.ubuntu.com/ubuntu-ports focal-security/main Translation-en [112 kB]
[36990.554555] cloud-init[767]: Get:30 http://ports.ubuntu.com/ubuntu-ports focal-security/main arm64 c-n-f Metadata [6736 B]
[36990.555713] cloud-init[767]: Get:31 http://ports.ubuntu.com/ubuntu-ports focal-security/restricted arm64 Packages [2088 B]
[36990.560422] cloud-init[767]: Get:32 http://ports.ubuntu.com/ubuntu-ports focal-security/restricted Translation-en [19.5 kB]
[36990.571092] cloud-init[767]: Get:33 http://ports.ubuntu.com/ubuntu-ports focal-security/universe arm64 Packages [492 kB]
[36990.713737] cloud-init[767]: Get:34 http://ports.ubuntu.com/ubuntu-ports focal-security/universe Translation-en [77.9 kB]
[36990.753402] cloud-init[767]: Get:35 http://ports.ubuntu.com/ubuntu-ports focal-security/universe arm64 c-n-f Metadata [8476 B]
[36990.754819] cloud-init[767]: Get:36 http://ports.ubuntu.com/ubuntu-ports focal-security/multiverse arm64 Packages [1188 B]
[36990.755806] cloud-init[767]: Get:37 http://ports.ubuntu.com/ubuntu-ports focal-security/multiverse Translation-en [3160 B]
[36990.759744] cloud-init[767]: Get:38 http://ports.ubuntu.com/ubuntu-ports focal-security/multiverse arm64 c-n-f Metadata [116 B]
[37005.714588] cloud-init[767]: Fetched 17.3 MB in 10s (1724 kB/s)
[37007.487659] cloud-init[767]: Reading package lists...
[37007.758466] cloud-init[767]: Reading package lists...
[37008.105826] cloud-init[767]: Building dependency tree...
[37008.107422] cloud-init[767]: Reading state information...
[37008.793456] cloud-init[767]: The following additional packages will be installed:
[37008.794476] cloud-init[767]:   fontconfig-config fonts-dejavu-core libdrm-amdgpu1 libdrm-nouveau2
[37008.795292] cloud-init[767]:   libdrm-radeon1 libfontconfig1 libfreetype6 libgl1 libgl1-mesa-dri
[37008.796172] cloud-init[767]:   libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libice6 libllvm11
[37008.797082] cloud-init[767]:   libsensors-config libsensors5 libsm6 libx11-xcb1 libxaw7 libxcb-dri2-0
[37008.797929] cloud-init[767]:   libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-sync1 libxcb-xfixes0
[37008.798693] cloud-init[767]:   libxcursor1 libxdamage1 libxfixes3 libxft2 libxkbfile1 libxmu6 libxpm4
[37008.799421] cloud-init[767]:   libxrender1 libxshmfence1 libxt6 libxxf86vm1 x11-common xbitmaps
[37008.803069] cloud-init[767]: Suggested packages:
[37008.804200] cloud-init[767]:   lm-sensors
[37008.943762] cloud-init[767]: The following NEW packages will be installed:
[37008.945024] cloud-init[767]:   fontconfig-config fonts-dejavu-core libdrm-amdgpu1 libdrm-nouveau2
[37008.945835] cloud-init[767]:   libdrm-radeon1 libfontconfig1 libfreetype6 libgl1 libgl1-mesa-dri
[37008.947016] cloud-init[767]:   libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libice6 libllvm11
[37008.948076] cloud-init[767]:   libsensors-config libsensors5 libsm6 libx11-xcb1 libxaw7 libxcb-dri2-0
[37008.948791] cloud-init[767]:   libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-sync1 libxcb-xfixes0
[37008.949350] cloud-init[767]:   libxcursor1 libxdamage1 libxfixes3 libxft2 libxkbfile1 libxmu6 libxpm4
[37008.950081] cloud-init[767]:   libxrender1 libxshmfence1 libxt6 libxxf86vm1 mesa-utils x11-apps x11-common
[37008.950941] cloud-init[767]:   xbitmaps
[37009.157063] cloud-init[767]: 0 upgraded, 41 newly installed, 0 to remove and 13 not upgraded.
[37009.157650] cloud-init[767]: Need to get 24.3 MB of archives.
[37009.158011] cloud-init[767]: After this operation, 718 MB of additional disk space will be used.
[37009.158315] cloud-init[767]: Get:1 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 fonts-dejavu-core all 2.37-1 [1041 kB]
[37009.695760] cloud-init[767]: Get:2 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 fontconfig-config all 2.13.1-2ubuntu3 [28.8 kB]
[37009.707235] cloud-init[767]: Get:3 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libdrm-amdgpu1 arm64 2.4.102-1ubuntu1~20.04.1 [17.7 kB]
[37009.713433] cloud-init[767]: Get:4 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libdrm-nouveau2 arm64 2.4.102-1ubuntu1~20.04.1 [15.7 kB]
[37009.724487] cloud-init[767]: Get:5 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libdrm-radeon1 arm64 2.4.102-1ubuntu1~20.04.1 [18.7 kB]
[37009.732982] cloud-init[767]: Get:6 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libfreetype6 arm64 2.10.1-2ubuntu0.1 [316 kB]
[37009.855052] cloud-init[767]: Get:7 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libfontconfig1 arm64 2.13.1-2ubuntu3 [111 kB]
[37009.889697] cloud-init[767]: Get:8 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libglapi-mesa arm64 20.2.6-0ubuntu0.20.04.1 [36.1 kB]
[37009.913428] cloud-init[767]: Get:9 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libllvm11 arm64 1:11.0.0-2~ubuntu20.04.1 [14.5 MB]
[37016.283222] cloud-init[767]: Get:10 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libsensors-config all 1:3.6.0-2ubuntu1 [6092 B]
[37016.284326] cloud-init[767]: Get:11 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libsensors5 arm64 1:3.6.0-2ubuntu1 [26.1 kB]
[37016.304375] cloud-init[767]: Get:12 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libgl1-mesa-dri arm64 20.2.6-0ubuntu0.20.04.1 [6533 kB]
[37019.035115] cloud-init[767]: Get:13 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libx11-xcb1 arm64 2:1.6.9-2ubuntu1.1 [9232 B]
[37019.036382] cloud-init[767]: Get:14 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxcb-dri2-0 arm64 1.14-2 [6872 B]
[37019.038389] cloud-init[767]: Get:15 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxcb-dri3-0 arm64 1.14-2 [6556 B]
[37019.039865] cloud-init[767]: Get:16 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxcb-glx0 arm64 1.14-2 [22.1 kB]
[37019.056167] cloud-init[767]: Get:17 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxcb-present0 arm64 1.14-2 [5484 B]
[37019.057354] cloud-init[767]: Get:18 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxcb-sync1 arm64 1.14-2 [8824 B]
[37019.058838] cloud-init[767]: Get:19 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxcb-xfixes0 arm64 1.14-2 [9268 B]
[37019.061004] cloud-init[767]: Get:20 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxdamage1 arm64 1:1.1.5-2 [6820 B]
[37019.063134] cloud-init[767]: Get:21 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxfixes3 arm64 1:5.0.3-2 [10.8 kB]
[37019.080585] cloud-init[767]: Get:22 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxshmfence1 arm64 1.3-1 [4868 B]
[37019.105531] cloud-init[767]: Get:23 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxxf86vm1 arm64 1:1.1.4-1build1 [9908 B]
[37019.110631] cloud-init[767]: Get:24 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libglx-mesa0 arm64 20.2.6-0ubuntu0.20.04.1 [143 kB]
[37019.171160] cloud-init[767]: Get:25 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 x11-common all 1:7.7+19ubuntu14 [22.3 kB]
[37019.179845] cloud-init[767]: Get:26 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libice6 arm64 2:1.0.10-0ubuntu1 [37.7 kB]
[37019.196168] cloud-init[767]: Get:27 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libsm6 arm64 2:1.2.3-1 [15.1 kB]
[37019.202529] cloud-init[767]: Get:28 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxt6 arm64 1:1.1.5-1 [128 kB]
[37019.265816] cloud-init[767]: Get:29 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxmu6 arm64 2:1.1.3-0ubuntu1 [42.9 kB]
[37019.284865] cloud-init[767]: Get:30 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxpm4 arm64 1:3.5.12-1 [28.8 kB]
[37019.303002] cloud-init[767]: Get:31 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxaw7 arm64 2:1.0.13-1 [137 kB]
[37019.346807] cloud-init[767]: Get:32 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxrender1 arm64 1:0.9.10-1 [16.1 kB]
[37019.352097] cloud-init[767]: Get:33 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxcursor1 arm64 1:1.2.0-2 [19.2 kB]
[37019.367120] cloud-init[767]: Get:34 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxft2 arm64 2.3.3-0ubuntu1 [35.9 kB]
[37019.375557] cloud-init[767]: Get:35 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libxkbfile1 arm64 1:1.1.0-1 [61.1 kB]
[37019.394061] cloud-init[767]: Get:36 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 x11-apps arm64 7.7+8 [614 kB]
[37019.586821] cloud-init[767]: Get:37 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 xbitmaps all 1.1.1-2 [28.1 kB]
[37019.597739] cloud-init[767]: Get:38 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libglvnd0 arm64 1.3.2-1~ubuntu0.20.04.1 [42.5 kB]
[37019.609018] cloud-init[767]: Get:39 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libglx0 arm64 1.3.2-1~ubuntu0.20.04.1 [29.6 kB]
[37019.618893] cloud-init[767]: Get:40 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libgl1 arm64 1.3.2-1~ubuntu0.20.04.1 [88.5 kB]
[37019.647876] cloud-init[767]: Get:41 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 mesa-utils arm64 8.4.0-1build1 [32.4 kB]
[37020.664235] cloud-init[767]: Fetched 24.3 MB in 11s (2275 kB/s)
[37020.710002] cloud-init[767]: Selecting previously unselected package fonts-dejavu-core.
(Reading database ... 31484 files and directories currently installed.)
[37020.801702] cloud-init[767]: Preparing to unpack .../00-fonts-dejavu-core_2.37-1_all.deb ...
[37020.802928] cloud-init[767]: Unpacking fonts-dejavu-core (2.37-1) ...
[37020.990764] cloud-init[767]: Selecting previously unselected package fontconfig-config.
[37021.011242] cloud-init[767]: Preparing to unpack .../01-fontconfig-config_2.13.1-2ubuntu3_all.deb ...
[37021.012599] cloud-init[767]: Unpacking fontconfig-config (2.13.1-2ubuntu3) ...
[37021.084949] cloud-init[767]: Selecting previously unselected package libdrm-amdgpu1:arm64.
[37021.108351] cloud-init[767]: Preparing to unpack .../02-libdrm-amdgpu1_2.4.102-1ubuntu1~20.04.1_arm64.deb ...
[37021.109907] cloud-init[767]: Unpacking libdrm-amdgpu1:arm64 (2.4.102-1ubuntu1~20.04.1) ...
[37021.163795] cloud-init[767]: Selecting previously unselected package libdrm-nouveau2:arm64.
[37021.184726] cloud-init[767]: Preparing to unpack .../03-libdrm-nouveau2_2.4.102-1ubuntu1~20.04.1_arm64.deb ...
[37021.185842] cloud-init[767]: Unpacking libdrm-nouveau2:arm64 (2.4.102-1ubuntu1~20.04.1) ...
[37021.242453] cloud-init[767]: Selecting previously unselected package libdrm-radeon1:arm64.
[37021.265493] cloud-init[767]: Preparing to unpack .../04-libdrm-radeon1_2.4.102-1ubuntu1~20.04.1_arm64.deb ...
[37021.266660] cloud-init[767]: Unpacking libdrm-radeon1:arm64 (2.4.102-1ubuntu1~20.04.1) ...
[37021.320559] cloud-init[767]: Selecting previously unselected package libfreetype6:arm64.
[37021.341969] cloud-init[767]: Preparing to unpack .../05-libfreetype6_2.10.1-2ubuntu0.1_arm64.deb ...
[37021.343115] cloud-init[767]: Unpacking libfreetype6:arm64 (2.10.1-2ubuntu0.1) ...
[37021.433304] cloud-init[767]: Selecting previously unselected package libfontconfig1:arm64.
[37021.454937] cloud-init[767]: Preparing to unpack .../06-libfontconfig1_2.13.1-2ubuntu3_arm64.deb ...
[37021.455988] cloud-init[767]: Unpacking libfontconfig1:arm64 (2.13.1-2ubuntu3) ...
[37021.523756] cloud-init[767]: Selecting previously unselected package libglapi-mesa:arm64.
[37021.544685] cloud-init[767]: Preparing to unpack .../07-libglapi-mesa_20.2.6-0ubuntu0.20.04.1_arm64.deb ...
[37021.545715] cloud-init[767]: Unpacking libglapi-mesa:arm64 (20.2.6-0ubuntu0.20.04.1) ...
[37021.604031] cloud-init[767]: Selecting previously unselected package libllvm11:arm64.
[37021.625514] cloud-init[767]: Preparing to unpack .../08-libllvm11_1%3a11.0.0-2~ubuntu20.04.1_arm64.deb ...
[37021.626573] cloud-init[767]: Unpacking libllvm11:arm64 (1:11.0.0-2~ubuntu20.04.1) ...
[37023.760093] cloud-init[767]: Selecting previously unselected package libsensors-config.
[37023.781020] cloud-init[767]: Preparing to unpack .../09-libsensors-config_1%3a3.6.0-2ubuntu1_all.deb ...
[37023.782625] cloud-init[767]: Unpacking libsensors-config (1:3.6.0-2ubuntu1) ...
[37023.843186] cloud-init[767]: Selecting previously unselected package libsensors5:arm64.
[37023.864994] cloud-init[767]: Preparing to unpack .../10-libsensors5_1%3a3.6.0-2ubuntu1_arm64.deb ...
[37024.049197] cloud-init[767]: Unpacking libsensors5:arm64 (1:3.6.0-2ubuntu1) ...
[37024.106106] cloud-init[767]: Selecting previously unselected package libgl1-mesa-dri:arm64.
[37024.127422] cloud-init[767]: Preparing to unpack .../11-libgl1-mesa-dri_20.2.6-0ubuntu0.20.04.1_arm64.deb ...
[37024.147985] cloud-init[767]: Unpacking libgl1-mesa-dri:arm64 (20.2.6-0ubuntu0.20.04.1) ...
[37025.115839] cloud-init[767]: Selecting previously unselected package libx11-xcb1:arm64.
[37025.136164] cloud-init[767]: Preparing to unpack .../12-libx11-xcb1_2%3a1.6.9-2ubuntu1.1_arm64.deb ...
[37025.137321] cloud-init[767]: Unpacking libx11-xcb1:arm64 (2:1.6.9-2ubuntu1.1) ...
[37025.191011] cloud-init[767]: Selecting previously unselected package libxcb-dri2-0:arm64.
[37025.214341] cloud-init[767]: Preparing to unpack .../13-libxcb-dri2-0_1.14-2_arm64.deb ...
[37025.215394] cloud-init[767]: Unpacking libxcb-dri2-0:arm64 (1.14-2) ...
[37025.266247] cloud-init[767]: Selecting previously unselected package libxcb-dri3-0:arm64.
[37025.287667] cloud-init[767]: Preparing to unpack .../14-libxcb-dri3-0_1.14-2_arm64.deb ...
[37025.288731] cloud-init[767]: Unpacking libxcb-dri3-0:arm64 (1.14-2) ...
[37025.341258] cloud-init[767]: Selecting previously unselected package libxcb-glx0:arm64.
[37025.363122] cloud-init[767]: Preparing to unpack .../15-libxcb-glx0_1.14-2_arm64.deb ...
[37025.364188] cloud-init[767]: Unpacking libxcb-glx0:arm64 (1.14-2) ...
[37025.417626] cloud-init[767]: Selecting previously unselected package libxcb-present0:arm64.
[37025.439096] cloud-init[767]: Preparing to unpack .../16-libxcb-present0_1.14-2_arm64.deb ...
[37025.440176] cloud-init[767]: Unpacking libxcb-present0:arm64 (1.14-2) ...
[37025.493315] cloud-init[767]: Selecting previously unselected package libxcb-sync1:arm64.
[37025.517073] cloud-init[767]: Preparing to unpack .../17-libxcb-sync1_1.14-2_arm64.deb ...
[37025.518123] cloud-init[767]: Unpacking libxcb-sync1:arm64 (1.14-2) ...
[37025.569741] cloud-init[767]: Selecting previously unselected package libxcb-xfixes0:arm64.
[37025.590899] cloud-init[767]: Preparing to unpack .../18-libxcb-xfixes0_1.14-2_arm64.deb ...
[37025.591942] cloud-init[767]: Unpacking libxcb-xfixes0:arm64 (1.14-2) ...
[37025.644773] cloud-init[767]: Selecting previously unselected package libxdamage1:arm64.
[37025.666936] cloud-init[767]: Preparing to unpack .../19-libxdamage1_1%3a1.1.5-2_arm64.deb ...
[37025.668067] cloud-init[767]: Unpacking libxdamage1:arm64 (1:1.1.5-2) ...
[37025.720745] cloud-init[767]: Selecting previously unselected package libxfixes3:arm64.
[37025.745140] cloud-init[767]: Preparing to unpack .../20-libxfixes3_1%3a5.0.3-2_arm64.deb ...
[37025.746256] cloud-init[767]: Unpacking libxfixes3:arm64 (1:5.0.3-2) ...
[37025.797470] cloud-init[767]: Selecting previously unselected package libxshmfence1:arm64.
[37025.819057] cloud-init[767]: Preparing to unpack .../21-libxshmfence1_1.3-1_arm64.deb ...
[37025.820180] cloud-init[767]: Unpacking libxshmfence1:arm64 (1.3-1) ...
[37025.873651] cloud-init[767]: Selecting previously unselected package libxxf86vm1:arm64.
[37025.897556] cloud-init[767]: Preparing to unpack .../22-libxxf86vm1_1%3a1.1.4-1build1_arm64.deb ...
[37025.898632] cloud-init[767]: Unpacking libxxf86vm1:arm64 (1:1.1.4-1build1) ...
[37025.950504] cloud-init[767]: Selecting previously unselected package libglx-mesa0:arm64.
[37025.972054] cloud-init[767]: Preparing to unpack .../23-libglx-mesa0_20.2.6-0ubuntu0.20.04.1_arm64.deb ...
[37025.973121] cloud-init[767]: Unpacking libglx-mesa0:arm64 (20.2.6-0ubuntu0.20.04.1) ...
[37026.047604] cloud-init[767]: Selecting previously unselected package x11-common.
[37026.071047] cloud-init[767]: Preparing to unpack .../24-x11-common_1%3a7.7+19ubuntu14_all.deb ...
[37026.105662] cloud-init[767]: dpkg-query: no packages found matching nux-tools
[37026.132816] cloud-init[767]: Unpacking x11-common (1:7.7+19ubuntu14) ...
[37026.195273] cloud-init[767]: Selecting previously unselected package libice6:arm64.
[37026.219419] cloud-init[767]: Preparing to unpack .../25-libice6_2%3a1.0.10-0ubuntu1_arm64.deb ...
[37026.220360] cloud-init[767]: Unpacking libice6:arm64 (2:1.0.10-0ubuntu1) ...
[37026.277753] cloud-init[767]: Selecting previously unselected package libsm6:arm64.
[37026.299384] cloud-init[767]: Preparing to unpack .../26-libsm6_2%3a1.2.3-1_arm64.deb ...
[37026.300471] cloud-init[767]: Unpacking libsm6:arm64 (2:1.2.3-1) ...
[37026.356167] cloud-init[767]: Selecting previously unselected package libxt6:arm64.
[37026.379681] cloud-init[767]: Preparing to unpack .../27-libxt6_1%3a1.1.5-1_arm64.deb ...
[37026.380928] cloud-init[767]: Unpacking libxt6:arm64 (1:1.1.5-1) ...
[37026.449724] cloud-init[767]: Selecting previously unselected package libxmu6:arm64.
[37026.471311] cloud-init[767]: Preparing to unpack .../28-libxmu6_2%3a1.1.3-0ubuntu1_arm64.deb ...
[37026.472285] cloud-init[767]: Unpacking libxmu6:arm64 (2:1.1.3-0ubuntu1) ...
[37026.533061] cloud-init[767]: Selecting previously unselected package libxpm4:arm64.
[37026.554361] cloud-init[767]: Preparing to unpack .../29-libxpm4_1%3a3.5.12-1_arm64.deb ...
[37026.555415] cloud-init[767]: Unpacking libxpm4:arm64 (1:3.5.12-1) ...
[37026.613602] cloud-init[767]: Selecting previously unselected package libxaw7:arm64.
[37026.637931] cloud-init[767]: Preparing to unpack .../30-libxaw7_2%3a1.0.13-1_arm64.deb ...
[37026.638969] cloud-init[767]: Unpacking libxaw7:arm64 (2:1.0.13-1) ...
[37026.707885] cloud-init[767]: Selecting previously unselected package libxrender1:arm64.
[37026.730224] cloud-init[767]: Preparing to unpack .../31-libxrender1_1%3a0.9.10-1_arm64.deb ...
[37026.731138] cloud-init[767]: Unpacking libxrender1:arm64 (1:0.9.10-1) ...
[37026.787438] cloud-init[767]: Selecting previously unselected package libxcursor1:arm64.
[37026.811730] cloud-init[767]: Preparing to unpack .../32-libxcursor1_1%3a1.2.0-2_arm64.deb ...
[37026.812858] cloud-init[767]: Unpacking libxcursor1:arm64 (1:1.2.0-2) ...
[37026.869584] cloud-init[767]: Selecting previously unselected package libxft2:arm64.
[37026.894412] cloud-init[767]: Preparing to unpack .../33-libxft2_2.3.3-0ubuntu1_arm64.deb ...
[37026.895431] cloud-init[767]: Unpacking libxft2:arm64 (2.3.3-0ubuntu1) ...
[37026.955313] cloud-init[767]: Selecting previously unselected package libxkbfile1:arm64.
[37026.979219] cloud-init[767]: Preparing to unpack .../34-libxkbfile1_1%3a1.1.0-1_arm64.deb ...
[37026.980530] cloud-init[767]: Unpacking libxkbfile1:arm64 (1:1.1.0-1) ...
[37027.039169] cloud-init[767]: Selecting previously unselected package x11-apps.
[37027.061566] cloud-init[767]: Preparing to unpack .../35-x11-apps_7.7+8_arm64.deb ...
[37027.062602] cloud-init[767]: Unpacking x11-apps (7.7+8) ...
[37027.233783] cloud-init[767]: Selecting previously unselected package xbitmaps.
[37027.255854] cloud-init[767]: Preparing to unpack .../36-xbitmaps_1.1.1-2_all.deb ...
[37027.257108] cloud-init[767]: Unpacking xbitmaps (1.1.1-2) ...
[37027.338881] cloud-init[767]: Selecting previously unselected package libglvnd0:arm64.
[37027.363509] cloud-init[767]: Preparing to unpack .../37-libglvnd0_1.3.2-1~ubuntu0.20.04.1_arm64.deb ...
[37027.364733] cloud-init[767]: Unpacking libglvnd0:arm64 (1.3.2-1~ubuntu0.20.04.1) ...
[37027.440373] cloud-init[767]: Selecting previously unselected package libglx0:arm64.
[37027.464675] cloud-init[767]: Preparing to unpack .../38-libglx0_1.3.2-1~ubuntu0.20.04.1_arm64.deb ...
[37027.465769] cloud-init[767]: Unpacking libglx0:arm64 (1.3.2-1~ubuntu0.20.04.1) ...
[37027.526945] cloud-init[767]: Selecting previously unselected package libgl1:arm64.
[37027.549629] cloud-init[767]: Preparing to unpack .../39-libgl1_1.3.2-1~ubuntu0.20.04.1_arm64.deb ...
[37027.550974] cloud-init[767]: Unpacking libgl1:arm64 (1.3.2-1~ubuntu0.20.04.1) ...
[37027.621702] cloud-init[767]: Selecting previously unselected package mesa-utils.
[37027.643906] cloud-init[767]: Preparing to unpack .../40-mesa-utils_8.4.0-1build1_arm64.deb ...
[37027.644969] cloud-init[767]: Unpacking mesa-utils (8.4.0-1build1) ...
[37027.738842] cloud-init[767]: Setting up libxcb-dri3-0:arm64 (1.14-2) ...
[37027.740858] cloud-init[767]: Setting up libx11-xcb1:arm64 (2:1.6.9-2ubuntu1.1) ...
[37027.742488] cloud-init[767]: Setting up libdrm-nouveau2:arm64 (2.4.102-1ubuntu1~20.04.1) ...
[37027.744190] cloud-init[767]: Setting up libxdamage1:arm64 (1:1.1.5-2) ...
[37027.745757] cloud-init[767]: Setting up libxcb-xfixes0:arm64 (1.14-2) ...
[37027.747330] cloud-init[767]: Setting up libxpm4:arm64 (1:3.5.12-1) ...
[37027.749112] cloud-init[767]: Setting up libxrender1:arm64 (1:0.9.10-1) ...
[37027.750747] cloud-init[767]: Setting up libdrm-radeon1:arm64 (2.4.102-1ubuntu1~20.04.1) ...
[37027.752430] cloud-init[767]: Setting up libglvnd0:arm64 (1.3.2-1~ubuntu0.20.04.1) ...
[37027.754028] cloud-init[767]: Setting up libxcb-glx0:arm64 (1.14-2) ...
[37027.755592] cloud-init[767]: Setting up x11-common (1:7.7+19ubuntu14) ...
[37028.057433] cloud-init[767]: update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
[37029.124687] cloud-init[767]: Setting up libsensors-config (1:3.6.0-2ubuntu1) ...
[37029.127467] cloud-init[767]: Setting up libxxf86vm1:arm64 (1:1.1.4-1build1) ...
[37029.130150] cloud-init[767]: Setting up libxcb-present0:arm64 (1.14-2) ...
[37029.132203] cloud-init[767]: Setting up libllvm11:arm64 (1:11.0.0-2~ubuntu20.04.1) ...
[37029.134294] cloud-init[767]: Setting up libfreetype6:arm64 (2.10.1-2ubuntu0.1) ...
[37029.136429] cloud-init[767]: Setting up libxfixes3:arm64 (1:5.0.3-2) ...
[37029.138720] cloud-init[767]: Setting up libxcb-sync1:arm64 (1.14-2) ...
[37029.140597] cloud-init[767]: Setting up fonts-dejavu-core (2.37-1) ...
[37029.151433] cloud-init[767]: Setting up libsensors5:arm64 (1:3.6.0-2ubuntu1) ...
[37029.153256] cloud-init[767]: Setting up libglapi-mesa:arm64 (20.2.6-0ubuntu0.20.04.1) ...
[37029.154962] cloud-init[767]: Setting up libxcb-dri2-0:arm64 (1.14-2) ...
[37029.156746] cloud-init[767]: Setting up libxshmfence1:arm64 (1.3-1) ...
[37029.158449] cloud-init[767]: Setting up libxkbfile1:arm64 (1:1.1.0-1) ...
[37029.160489] cloud-init[767]: Setting up xbitmaps (1.1.1-2) ...
[37029.162039] cloud-init[767]: Setting up libdrm-amdgpu1:arm64 (2.4.102-1ubuntu1~20.04.1) ...
[37029.164059] cloud-init[767]: Setting up libice6:arm64 (2:1.0.10-0ubuntu1) ...
[37029.165554] cloud-init[767]: Setting up fontconfig-config (2.13.1-2ubuntu3) ...
[37029.217825] cloud-init[767]: Setting up libxcursor1:arm64 (1:1.2.0-2) ...
[37029.219860] cloud-init[767]: Setting up libgl1-mesa-dri:arm64 (20.2.6-0ubuntu0.20.04.1) ...
[37029.243234] cloud-init[767]: Setting up libfontconfig1:arm64 (2.13.1-2ubuntu3) ...
[37029.245580] cloud-init[767]: Setting up libsm6:arm64 (2:1.2.3-1) ...
[37029.247535] cloud-init[767]: Setting up libxft2:arm64 (2.3.3-0ubuntu1) ...
[37029.249563] cloud-init[767]: Setting up libglx-mesa0:arm64 (20.2.6-0ubuntu0.20.04.1) ...
[37029.251519] cloud-init[767]: Setting up libglx0:arm64 (1.3.2-1~ubuntu0.20.04.1) ...
[37029.253522] cloud-init[767]: Setting up libgl1:arm64 (1.3.2-1~ubuntu0.20.04.1) ...
[37029.255338] cloud-init[767]: Setting up mesa-utils (8.4.0-1build1) ...
[37029.256910] cloud-init[767]: Setting up libxt6:arm64 (1:1.1.5-1) ...
[37029.258469] cloud-init[767]: Setting up libxmu6:arm64 (2:1.1.3-0ubuntu1) ...
[37029.260164] cloud-init[767]: Setting up libxaw7:arm64 (2:1.0.13-1) ...
[37029.282696] cloud-init[767]: Setting up x11-apps (7.7+8) ...
[37029.311920] cloud-init[767]: Processing triggers for man-db (2.9.1-1) ...
[37029.938694] cloud-init[767]: Processing triggers for libc-bin (2.31-0ubuntu9.2) ...
[37033.716860] cloud-init[767]: Processing triggers for systemd (245.4-4ubuntu3.4) ...
ci-info: no authorized SSH keys fingerprints found for user ubuntu.
<14>Mar  6 12:24:09 ec2:
<14>Mar  6 12:24:09 ec2: #############################################################
<14>Mar  6 12:24:09 ec2: -----BEGIN SSH HOST KEY FINGERPRINTS-----
<14>Mar  6 12:24:09 ec2: 1024 SHA256:5w+xxxoetCCRyGRq/ov5+z3KHPGZShAXfmLjNk04EoI root@game-container (DSA)
<14>Mar  6 12:24:09 ec2: 256 SHA256:xUduxSd6s/xxx/FrLxxTs0fMhNUq5MzDp6jHGNye5U4 root@game-container (ECDSA)
<14>Mar  6 12:24:09 ec2: 256 SHA256:GSrxxlmaCx1l/bxEwx4jVY05/CFy7lGegXzZ2C4jZgc root@game-container (ED25519)
<14>Mar  6 12:24:09 ec2: 3072 SHA256:gVxRtHLk2m7m2MMraZ8HOtNKrNBWLlHr+FGqQqkQixx root@game-container (RSA)
<14>Mar  6 12:24:09 ec2: -----END SSH HOST KEY FINGERPRINTS-----
<14>Mar  6 12:24:09 ec2: #############################################################
-----BEGIN SSH HOST KEY KEYS-----
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzzxczxcyNTYAAAAIbmlzdHAyNTYAAABBBLcMc/fSO/KWZYy4dab2i7hU5+4lVt6/eHeIwbyB0DujBc+5pVdLOpyD43v0PaUOehu3SaTAnBISZ232yC8997c= root@game-container
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK74qm5BYKEasdasdadGgFmBTBLU6HZVq7Hs1uNQW2SJeluvY root@game-container
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpAd7oej2bGRaSqrUZ/3aLasdasdJqAiVA2BX21jDO/GmsV32LnO88FQDM13tooGxd69ZKeXamMw3Fdg8zvpvyodpE81Yn7KQM/QTsEj2/y9Yhc0CM6yxrYk/8+ljmpxn1KwqHwzaIylZqj2Bg4e62SKGRr7r5sllRb7w6EV+1TaFc6ndBNlFrT6a38rk7ILkb3PJ4MmRS3iNKUn8I79WNiSBbKjg+cYDjs/VS/b3OoHtaz1pGrbbO5HrfAQeuRkOJ478NKH+FXH/iGtfLTsq7b5axsJV/LHJqM6FkFzF2GhA6UrokvCdO+jVnmt7X6sK6VaHLSij5V7TngbasdasdvorYhIU1WSwOFasdasdLAbtByr1LbMlbHHz7GWsLUOTCmKJLMenuvjYXsuHx+Jz43Iv8b7VPRzoxl8SPKymbeYobUIiwZZzfxhNQOaOCK9FSWK7P9Z3WO0zJQYEKyBVD9EfHgIKoVJ5cKNDKq6wnotqjAsbY2skfqT8M+lYxp6a76gXNFclqv0= root@game-container
-----END SSH HOST KEY KEYS-----
[37038.348407] cloud-init[767]: Cloud-init v. 20.4.1-0ubuntu1~20.04.1 running 'modules:final' at Sat, 06 Mar 2021 12:23:13 +0000. Up 24.51 seconds.
[37038.349028] cloud-init[767]: ci-info: no authorized SSH keys fingerprints found for user ubuntu.
[37038.349451] cloud-init[767]: Cloud-init v. 20.4.1-0ubuntu1~20.04.1 finished at Sat, 06 Mar 2021 12:24:10 +0000. Datasource DataSourceNoCloud [seed=/var/lib/cloud/seed/nocloud-net][dsmode=net].  Up 80.99 seconds
[  OK  ] Finished Execute cloud user/final scripts.
[  OK  ] Reached target Cloud-init target.
[  OK  ] Removed slice system-getty.slice.
[  OK  ] Removed slice system-modprobe.slice.
[  OK  ] Stopped target Cloud-init target.
[  OK  ] Stopped target Graphical Interface.
[  OK  ] Stopped target Host and Network Name Lookups.
[  OK  ] Stopped target Timers.
[  OK  ] Stopped Daily apt upgrade and clean activities.
[  OK  ] Stopped Daily apt download activities.
[  OK  ] Stopped Periodic ext4 Online Metadata Check for All Filesystems.
[  OK  ] Stopped Refresh fwupd metadata regularly.
[  OK  ] Stopped Daily rotation of log files.
[  OK  ] Stopped Daily man-db regeneration.
[  OK  ] Stopped Message of the Day.
[  OK  ] Stopped Daily Cleanup of Temporary Directories.
[  OK  ] Stopped target System Time Synchronized.
[  OK  ] Stopped target System Time Set.
[  OK  ] Closed LVM2 poll daemon socket.
         Stopping Accounts Service...
         Stopping Availability of block devices...
[  OK  ] Stopped Execute cloud user/final scripts.
[  OK  ] Stopped target Multi-User System.
[  OK  ] Stopped target Login Prompts.
         Stopping LSB: automatic crash report generation...
         Stopping Deferred execution scheduler...
[  OK  ] Stopped Apply the settings specified in cloud-config.
[  OK  ] Stopped target Cloud-config availability.
[  OK  ] Stopped target Network is Online.
         Stopping Console Getty...
         Stopping Regular background program processing daemon...
         Stopping D-Bus System Message Bus...
         Stopping Create final runtime dir for shutdown pivot root...
         Stopping Dispatcher daemon for systemd-networkd...
         Stopping Authorization Manager...
         Stopping System Logging Service...
[  OK  ] Stopped Wait until snapd is fully seeded.
         Stopping Snap Daemon...
         Stopping OpenBSD Secure Shell server...
         Stopping Unattended Upgrades Shutdown...
[  OK  ] Stopped Accounts Service.
[  OK  ] Stopped Regular background program processing daemon.
[  OK  ] Stopped Dispatcher daemon for systemd-networkd.
[  OK  ] Stopped System Logging Service.
[  OK  ] Stopped Snap Daemon.
[  OK  ] Stopped Deferred execution scheduler.
[  OK  ] Stopped OpenBSD Secure Shell server.
[  OK  ] Stopped Console Getty.
[  OK  ] Stopped Authorization Manager.
[  OK  ] Stopped Unattended Upgrades Shutdown.
[  OK  ] Stopped D-Bus System Message Bus.
[  OK  ] Stopped Create final runtime dir for shutdown pivot root.
         Stopping Login Service...
         Stopping Permit User Sessions...
[  OK  ] Stopped Login Service.
[  OK  ] Stopped Permit User Sessions.
[  OK  ] Stopped LSB: automatic crash report generation.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Network.
[  OK  ] Stopped target User and Group Name Lookups.
[  OK  ] Stopped target Paths.
[  OK  ] Stopped target Remote File Systems.
[  OK  ] Stopped target Remote File Systems (Pre).
[  OK  ] Stopped target Slices.
[  OK  ] Removed slice User and Session Slice.
[  OK  ] Stopped target Sockets.
[  OK  ] Closed Unix socket for apport crash forwarding.
[  OK  ] Closed D-Bus System Message Bus Socket.
[  OK  ] Closed Open-iSCSI iscsid Socket.
[  OK  ] Closed Socket unix for snap application lxd.daemon.
[  OK  ] Closed Socket activation for snappy daemon.
[  OK  ] Closed Syslog Socket.
[  OK  ] Closed UUID daemon activation socket.
[  OK  ] Stopped target System Initialization.
[  OK  ] Stopped target Local Encrypted Volumes.
[  OK  ] Stopped Dispatch Password Requests to Console Directory Watch.
[  OK  ] Stopped Forward Password Requests to Wall Directory Watch.
[  OK  ] Stopped Initial cloud-init job (metadata service crawler).
[  OK  ] Stopped Wait for Network to be Configured.
         Stopping Network Name Resolution...
         Stopping Update UTMP about System Boot/Shutdown...
[  OK  ] Stopped Network Name Resolution.
         Stopping Network Service...
[  OK  ] Stopped Update UTMP about System Boot/Shutdown.
[  OK  ] Stopped Create Volatile Files and Directories.
[  OK  ] Stopped target Local File Systems.
         Unmounting /run/snapd/ns/lxd.mnt...
         Unmounting Mount unit for core18, revision 1990...
         Unmounting Mount unit for lxd, revision 19206...
         Unmounting Mount unit for snapd, revision 11043...
[  OK  ] Stopped Network Service.
[  OK  ] Unmounted /run/snapd/ns/lxd.mnt.
[  OK  ] Unmounted Mount unit for core18, revision 1990.
[  OK  ] Unmounted Mount unit for lxd, revision 19206.
[  OK  ] Unmounted Mount unit for snapd, revision 11043.
[  OK  ] Stopped target Network (Pre).
         Unmounting /run/snapd/ns...
         Unmounting Ensure that the snap directory shares mount events....
[  OK  ] Stopped Initial cloud-init job (pre-networking).
[  OK  ] Stopped Apply Kernel Variables.
[  OK  ] Unmounted /run/snapd/ns.
[  OK  ] Unmounted Ensure that the snap directory shares mount events..
[  OK  ] Stopped target Local File Systems (Pre).
[  OK  ] Stopped target Swap.
[  OK  ] Reached target Unmount All Filesystems.
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Stopped Create System Users.
[  OK  ] Stopped Availability of block devices.
[  OK  ] Reached target Shutdown.
[  OK  ] Reached target Final Step.
         Starting Halt...

cat cloud-init.log

2021-03-06 13:56:01,983 - util.py[DEBUG]: Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 13:56:01 +0000. Up 46.60 seconds.
2021-03-06 13:56:02,035 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2021-03-06 13:56:02,037 - stages.py[DEBUG]: Running module emit_upstart (<module 'cloudinit.config.cc_emit_upstart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_emit_upstart.py'>) with frequency always
2021-03-06 13:56:02,038 - handlers.py[DEBUG]: start: modules-config/config-emit_upstart: running config-emit_upstart with frequency always
2021-03-06 13:56:02,039 - helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0xffffa42da370>)
2021-03-06 13:56:02,039 - cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
2021-03-06 13:56:02,039 - cc_emit_upstart.py[DEBUG]: not upstart system, 'emit_upstart' disabled
2021-03-06 13:56:02,039 - handlers.py[DEBUG]: finish: modules-config/config-emit_upstart: SUCCESS: config-emit_upstart ran successfully
2021-03-06 13:56:02,039 - stages.py[DEBUG]: Running module snap (<module 'cloudinit.config.cc_snap' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snap.py'>) with frequency once-per-instance
2021-03-06 13:56:02,040 - handlers.py[DEBUG]: start: modules-config/config-snap: running config-snap with frequency once-per-instance
2021-03-06 13:56:02,040 - helpers.py[DEBUG]: config-snap already ran (freq=once-per-instance)
2021-03-06 13:56:02,041 - handlers.py[DEBUG]: finish: modules-config/config-snap: SUCCESS: config-snap previously ran
2021-03-06 13:56:02,041 - stages.py[DEBUG]: Running module ssh-import-id (<module 'cloudinit.config.cc_ssh_import_id' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_import_id.py'>) with frequency once-per-instance
2021-03-06 13:56:02,041 - handlers.py[DEBUG]: start: modules-config/config-ssh-import-id: running config-ssh-import-id with frequency once-per-instance
2021-03-06 13:56:02,042 - helpers.py[DEBUG]: config-ssh-import-id already ran (freq=once-per-instance)
2021-03-06 13:56:02,042 - handlers.py[DEBUG]: finish: modules-config/config-ssh-import-id: SUCCESS: config-ssh-import-id previously ran
2021-03-06 13:56:02,042 - stages.py[DEBUG]: Running module locale (<module 'cloudinit.config.cc_locale' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_locale.py'>) with frequency once-per-instance
2021-03-06 13:56:02,043 - handlers.py[DEBUG]: start: modules-config/config-locale: running config-locale with frequency once-per-instance
2021-03-06 13:56:02,043 - helpers.py[DEBUG]: config-locale already ran (freq=once-per-instance)
2021-03-06 13:56:02,043 - handlers.py[DEBUG]: finish: modules-config/config-locale: SUCCESS: config-locale previously ran
2021-03-06 13:56:02,044 - stages.py[DEBUG]: Running module set-passwords (<module 'cloudinit.config.cc_set_passwords' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_passwords.py'>) with frequency once-per-instance
2021-03-06 13:56:02,044 - handlers.py[DEBUG]: start: modules-config/config-set-passwords: running config-set-passwords with frequency once-per-instance
2021-03-06 13:56:02,044 - helpers.py[DEBUG]: config-set-passwords already ran (freq=once-per-instance)
2021-03-06 13:56:02,045 - handlers.py[DEBUG]: finish: modules-config/config-set-passwords: SUCCESS: config-set-passwords previously ran
2021-03-06 13:56:02,045 - stages.py[DEBUG]: Running module grub-dpkg (<module 'cloudinit.config.cc_grub_dpkg' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_grub_dpkg.py'>) with frequency once-per-instance
2021-03-06 13:56:02,046 - handlers.py[DEBUG]: start: modules-config/config-grub-dpkg: running config-grub-dpkg with frequency once-per-instance
2021-03-06 13:56:02,046 - helpers.py[DEBUG]: config-grub-dpkg already ran (freq=once-per-instance)
2021-03-06 13:56:02,046 - handlers.py[DEBUG]: finish: modules-config/config-grub-dpkg: SUCCESS: config-grub-dpkg previously ran
2021-03-06 13:56:02,047 - stages.py[DEBUG]: Running module apt-pipelining (<module 'cloudinit.config.cc_apt_pipelining' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_pipelining.py'>) with frequency once-per-instance
2021-03-06 13:56:02,047 - handlers.py[DEBUG]: start: modules-config/config-apt-pipelining: running config-apt-pipelining with frequency once-per-instance
2021-03-06 13:56:02,047 - helpers.py[DEBUG]: config-apt-pipelining already ran (freq=once-per-instance)
2021-03-06 13:56:02,048 - handlers.py[DEBUG]: finish: modules-config/config-apt-pipelining: SUCCESS: config-apt-pipelining previously ran
2021-03-06 13:56:02,048 - stages.py[DEBUG]: Running module apt-configure (<module 'cloudinit.config.cc_apt_configure' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_configure.py'>) with frequency once-per-instance
2021-03-06 13:56:02,048 - handlers.py[DEBUG]: start: modules-config/config-apt-configure: running config-apt-configure with frequency once-per-instance
2021-03-06 13:56:02,049 - helpers.py[DEBUG]: config-apt-configure already ran (freq=once-per-instance)
2021-03-06 13:56:02,049 - handlers.py[DEBUG]: finish: modules-config/config-apt-configure: SUCCESS: config-apt-configure previously ran
2021-03-06 13:56:02,049 - stages.py[DEBUG]: Running module ubuntu-advantage (<module 'cloudinit.config.cc_ubuntu_advantage' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ubuntu_advantage.py'>) with frequency once-per-instance
2021-03-06 13:56:02,050 - handlers.py[DEBUG]: start: modules-config/config-ubuntu-advantage: running config-ubuntu-advantage with frequency once-per-instance
2021-03-06 13:56:02,050 - helpers.py[DEBUG]: config-ubuntu-advantage already ran (freq=once-per-instance)
2021-03-06 13:56:02,051 - handlers.py[DEBUG]: finish: modules-config/config-ubuntu-advantage: SUCCESS: config-ubuntu-advantage previously ran
2021-03-06 13:56:02,051 - stages.py[DEBUG]: Running module ntp (<module 'cloudinit.config.cc_ntp' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ntp.py'>) with frequency once-per-instance
2021-03-06 13:56:02,051 - handlers.py[DEBUG]: start: modules-config/config-ntp: running config-ntp with frequency once-per-instance
2021-03-06 13:56:02,052 - helpers.py[DEBUG]: config-ntp already ran (freq=once-per-instance)
2021-03-06 13:56:02,052 - handlers.py[DEBUG]: finish: modules-config/config-ntp: SUCCESS: config-ntp previously ran
2021-03-06 13:56:02,052 - stages.py[DEBUG]: Running module timezone (<module 'cloudinit.config.cc_timezone' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_timezone.py'>) with frequency once-per-instance
2021-03-06 13:56:02,053 - handlers.py[DEBUG]: start: modules-config/config-timezone: running config-timezone with frequency once-per-instance
2021-03-06 13:56:02,053 - helpers.py[DEBUG]: config-timezone already ran (freq=once-per-instance)
2021-03-06 13:56:02,053 - handlers.py[DEBUG]: finish: modules-config/config-timezone: SUCCESS: config-timezone previously ran
2021-03-06 13:56:02,053 - stages.py[DEBUG]: Running module disable-ec2-metadata (<module 'cloudinit.config.cc_disable_ec2_metadata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disable_ec2_metadata.py'>) with frequency always
2021-03-06 13:56:02,054 - handlers.py[DEBUG]: start: modules-config/config-disable-ec2-metadata: running config-disable-ec2-metadata with frequency always
2021-03-06 13:56:02,054 - helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0xffffa42de430>)
2021-03-06 13:56:02,054 - cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
2021-03-06 13:56:02,054 - handlers.py[DEBUG]: finish: modules-config/config-disable-ec2-metadata: SUCCESS: config-disable-ec2-metadata ran successfully
2021-03-06 13:56:02,055 - stages.py[DEBUG]: Running module runcmd (<module 'cloudinit.config.cc_runcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_runcmd.py'>) with frequency once-per-instance
2021-03-06 13:56:02,055 - handlers.py[DEBUG]: start: modules-config/config-runcmd: running config-runcmd with frequency once-per-instance
2021-03-06 13:56:02,056 - helpers.py[DEBUG]: config-runcmd already ran (freq=once-per-instance)
2021-03-06 13:56:02,056 - handlers.py[DEBUG]: finish: modules-config/config-runcmd: SUCCESS: config-runcmd previously ran
2021-03-06 13:56:02,056 - stages.py[DEBUG]: Running module byobu (<module 'cloudinit.config.cc_byobu' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_byobu.py'>) with frequency once-per-instance
2021-03-06 13:56:02,057 - handlers.py[DEBUG]: start: modules-config/config-byobu: running config-byobu with frequency once-per-instance
2021-03-06 13:56:02,057 - helpers.py[DEBUG]: config-byobu already ran (freq=once-per-instance)
2021-03-06 13:56:02,058 - handlers.py[DEBUG]: finish: modules-config/config-byobu: SUCCESS: config-byobu previously ran
2021-03-06 13:56:02,058 - main.py[DEBUG]: Ran 14 modules with 0 failures
2021-03-06 13:56:02,059 - atomic_helper.py[DEBUG]: Atomically writing to file /var/lib/cloud/data/status.json (via temporary file /var/lib/cloud/data/tmpsec7j1fb) - w: [644] 579 bytes/chars
2021-03-06 13:56:02,060 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2021-03-06 13:56:02,061 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2021-03-06 13:56:02,061 - util.py[DEBUG]: cloud-init mode 'modules' took 0.257 seconds (0.26)
2021-03-06 13:56:02,062 - handlers.py[DEBUG]: finish: modules-config: SUCCESS: running modules for config
2021-03-06 13:56:46,672 - util.py[DEBUG]: Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 13:56:46 +0000. Up 60.69 seconds.
2021-03-06 13:56:46,720 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2021-03-06 13:56:46,722 - stages.py[DEBUG]: Running module package-update-upgrade-install (<module 'cloudinit.config.cc_package_update_upgrade_install' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_package_update_upgrade_install.py'>) with frequency once-per-instance
2021-03-06 13:56:46,723 - handlers.py[DEBUG]: start: modules-final/config-package-update-upgrade-install: running config-package-update-upgrade-install with frequency once-per-instance
2021-03-06 13:56:46,723 - helpers.py[DEBUG]: config-package-update-upgrade-install already ran (freq=once-per-instance)
2021-03-06 13:56:46,723 - handlers.py[DEBUG]: finish: modules-final/config-package-update-upgrade-install: SUCCESS: config-package-update-upgrade-install previously ran
2021-03-06 13:56:46,723 - stages.py[DEBUG]: Running module fan (<module 'cloudinit.config.cc_fan' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_fan.py'>) with frequency once-per-instance
2021-03-06 13:56:46,724 - handlers.py[DEBUG]: start: modules-final/config-fan: running config-fan with frequency once-per-instance
2021-03-06 13:56:46,724 - helpers.py[DEBUG]: config-fan already ran (freq=once-per-instance)
2021-03-06 13:56:46,724 - handlers.py[DEBUG]: finish: modules-final/config-fan: SUCCESS: config-fan previously ran
2021-03-06 13:56:46,724 - stages.py[DEBUG]: Running module landscape (<module 'cloudinit.config.cc_landscape' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_landscape.py'>) with frequency once-per-instance
2021-03-06 13:56:46,725 - handlers.py[DEBUG]: start: modules-final/config-landscape: running config-landscape with frequency once-per-instance
2021-03-06 13:56:46,725 - helpers.py[DEBUG]: config-landscape already ran (freq=once-per-instance)
2021-03-06 13:56:46,725 - handlers.py[DEBUG]: finish: modules-final/config-landscape: SUCCESS: config-landscape previously ran
2021-03-06 13:56:46,725 - stages.py[DEBUG]: Running module lxd (<module 'cloudinit.config.cc_lxd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_lxd.py'>) with frequency once-per-instance
2021-03-06 13:56:46,726 - handlers.py[DEBUG]: start: modules-final/config-lxd: running config-lxd with frequency once-per-instance
2021-03-06 13:56:46,726 - helpers.py[DEBUG]: config-lxd already ran (freq=once-per-instance)
2021-03-06 13:56:46,726 - handlers.py[DEBUG]: finish: modules-final/config-lxd: SUCCESS: config-lxd previously ran
2021-03-06 13:56:46,726 - stages.py[DEBUG]: Running module ubuntu-drivers (<module 'cloudinit.config.cc_ubuntu_drivers' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ubuntu_drivers.py'>) with frequency once-per-instance
2021-03-06 13:56:46,727 - handlers.py[DEBUG]: start: modules-final/config-ubuntu-drivers: running config-ubuntu-drivers with frequency once-per-instance
2021-03-06 13:56:46,727 - helpers.py[DEBUG]: config-ubuntu-drivers already ran (freq=once-per-instance)
2021-03-06 13:56:46,727 - handlers.py[DEBUG]: finish: modules-final/config-ubuntu-drivers: SUCCESS: config-ubuntu-drivers previously ran
2021-03-06 13:56:46,727 - stages.py[DEBUG]: Running module puppet (<module 'cloudinit.config.cc_puppet' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_puppet.py'>) with frequency once-per-instance
2021-03-06 13:56:46,727 - handlers.py[DEBUG]: start: modules-final/config-puppet: running config-puppet with frequency once-per-instance
2021-03-06 13:56:46,728 - helpers.py[DEBUG]: config-puppet already ran (freq=once-per-instance)
2021-03-06 13:56:46,728 - handlers.py[DEBUG]: finish: modules-final/config-puppet: SUCCESS: config-puppet previously ran
2021-03-06 13:56:46,728 - stages.py[DEBUG]: Running module chef (<module 'cloudinit.config.cc_chef' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_chef.py'>) with frequency always
2021-03-06 13:56:46,728 - handlers.py[DEBUG]: start: modules-final/config-chef: running config-chef with frequency always
2021-03-06 13:56:46,729 - helpers.py[DEBUG]: Running config-chef using lock (<cloudinit.helpers.DummyLock object at 0xffff9a016430>)
2021-03-06 13:56:46,729 - cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
2021-03-06 13:56:46,729 - handlers.py[DEBUG]: finish: modules-final/config-chef: SUCCESS: config-chef ran successfully
2021-03-06 13:56:46,729 - stages.py[DEBUG]: Running module mcollective (<module 'cloudinit.config.cc_mcollective' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mcollective.py'>) with frequency once-per-instance
2021-03-06 13:56:46,730 - handlers.py[DEBUG]: start: modules-final/config-mcollective: running config-mcollective with frequency once-per-instance
2021-03-06 13:56:46,730 - helpers.py[DEBUG]: config-mcollective already ran (freq=once-per-instance)
2021-03-06 13:56:46,730 - handlers.py[DEBUG]: finish: modules-final/config-mcollective: SUCCESS: config-mcollective previously ran
2021-03-06 13:56:46,730 - stages.py[DEBUG]: Running module salt-minion (<module 'cloudinit.config.cc_salt_minion' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_salt_minion.py'>) with frequency once-per-instance
2021-03-06 13:56:46,731 - handlers.py[DEBUG]: start: modules-final/config-salt-minion: running config-salt-minion with frequency once-per-instance
2021-03-06 13:56:46,731 - helpers.py[DEBUG]: config-salt-minion already ran (freq=once-per-instance)
2021-03-06 13:56:46,731 - handlers.py[DEBUG]: finish: modules-final/config-salt-minion: SUCCESS: config-salt-minion previously ran
2021-03-06 13:56:46,731 - stages.py[DEBUG]: Running module reset_rmc (<module 'cloudinit.config.cc_reset_rmc' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_reset_rmc.py'>) with frequency once-per-instance
2021-03-06 13:56:46,731 - handlers.py[DEBUG]: start: modules-final/config-reset_rmc: running config-reset_rmc with frequency once-per-instance
2021-03-06 13:56:46,732 - helpers.py[DEBUG]: config-reset_rmc already ran (freq=once-per-instance)
2021-03-06 13:56:46,732 - handlers.py[DEBUG]: finish: modules-final/config-reset_rmc: SUCCESS: config-reset_rmc previously ran
2021-03-06 13:56:46,732 - stages.py[DEBUG]: Running module refresh_rmc_and_interface (<module 'cloudinit.config.cc_refresh_rmc_and_interface' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_refresh_rmc_and_interface.py'>) with frequency always
2021-03-06 13:56:46,732 - handlers.py[DEBUG]: start: modules-final/config-refresh_rmc_and_interface: running config-refresh_rmc_and_interface with frequency always
2021-03-06 13:56:46,732 - helpers.py[DEBUG]: Running config-refresh_rmc_and_interface using lock (<cloudinit.helpers.DummyLock object at 0xffff99fa3580>)
2021-03-06 13:56:46,733 - cc_refresh_rmc_and_interface.py[DEBUG]: No 'rmcctrl' in path, disabled
2021-03-06 13:56:46,733 - handlers.py[DEBUG]: finish: modules-final/config-refresh_rmc_and_interface: SUCCESS: config-refresh_rmc_and_interface ran successfully
2021-03-06 13:56:46,733 - stages.py[DEBUG]: Running module rightscale_userdata (<module 'cloudinit.config.cc_rightscale_userdata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rightscale_userdata.py'>) with frequency once-per-instance
2021-03-06 13:56:46,734 - handlers.py[DEBUG]: start: modules-final/config-rightscale_userdata: running config-rightscale_userdata with frequency once-per-instance
2021-03-06 13:56:46,734 - helpers.py[DEBUG]: config-rightscale_userdata already ran (freq=once-per-instance)
2021-03-06 13:56:46,734 - handlers.py[DEBUG]: finish: modules-final/config-rightscale_userdata: SUCCESS: config-rightscale_userdata previously ran
2021-03-06 13:56:46,734 - stages.py[DEBUG]: Running module scripts-vendor (<module 'cloudinit.config.cc_scripts_vendor' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_vendor.py'>) with frequency once-per-instance
2021-03-06 13:56:46,734 - handlers.py[DEBUG]: start: modules-final/config-scripts-vendor: running config-scripts-vendor with frequency once-per-instance
2021-03-06 13:56:46,735 - helpers.py[DEBUG]: config-scripts-vendor already ran (freq=once-per-instance)
2021-03-06 13:56:46,735 - handlers.py[DEBUG]: finish: modules-final/config-scripts-vendor: SUCCESS: config-scripts-vendor previously ran
2021-03-06 13:56:46,735 - stages.py[DEBUG]: Running module scripts-per-once (<module 'cloudinit.config.cc_scripts_per_once' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_once.py'>) with frequency once
2021-03-06 13:56:46,735 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-once: running config-scripts-per-once with frequency once
2021-03-06 13:56:46,735 - helpers.py[DEBUG]: config-scripts-per-once already ran (freq=once)
2021-03-06 13:56:46,736 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-once: SUCCESS: config-scripts-per-once previously ran
2021-03-06 13:56:46,736 - stages.py[DEBUG]: Running module scripts-per-boot (<module 'cloudinit.config.cc_scripts_per_boot' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_boot.py'>) with frequency always
2021-03-06 13:56:46,736 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-boot: running config-scripts-per-boot with frequency always
2021-03-06 13:56:46,736 - helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0xffff99fd8130>)
2021-03-06 13:56:46,737 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-boot: SUCCESS: config-scripts-per-boot ran successfully
2021-03-06 13:56:46,738 - stages.py[DEBUG]: Running module scripts-per-instance (<module 'cloudinit.config.cc_scripts_per_instance' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_instance.py'>) with frequency once-per-instance
2021-03-06 13:56:46,738 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-instance: running config-scripts-per-instance with frequency once-per-instance
2021-03-06 13:56:46,738 - helpers.py[DEBUG]: config-scripts-per-instance already ran (freq=once-per-instance)
2021-03-06 13:56:46,739 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-instance: SUCCESS: config-scripts-per-instance previously ran
2021-03-06 13:56:46,739 - stages.py[DEBUG]: Running module scripts-user (<module 'cloudinit.config.cc_scripts_user' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_user.py'>) with frequency once-per-instance
2021-03-06 13:56:46,739 - handlers.py[DEBUG]: start: modules-final/config-scripts-user: running config-scripts-user with frequency once-per-instance
2021-03-06 13:56:46,739 - helpers.py[DEBUG]: config-scripts-user already ran (freq=once-per-instance)
2021-03-06 13:56:46,740 - handlers.py[DEBUG]: finish: modules-final/config-scripts-user: SUCCESS: config-scripts-user previously ran
2021-03-06 13:56:46,740 - stages.py[DEBUG]: Running module ssh-authkey-fingerprints (<module 'cloudinit.config.cc_ssh_authkey_fingerprints' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_authkey_fingerprints.py'>) with frequency once-per-instance
2021-03-06 13:56:46,740 - handlers.py[DEBUG]: start: modules-final/config-ssh-authkey-fingerprints: running config-ssh-authkey-fingerprints with frequency once-per-instance
2021-03-06 13:56:46,740 - helpers.py[DEBUG]: config-ssh-authkey-fingerprints already ran (freq=once-per-instance)
2021-03-06 13:56:46,741 - handlers.py[DEBUG]: finish: modules-final/config-ssh-authkey-fingerprints: SUCCESS: config-ssh-authkey-fingerprints previously ran
2021-03-06 13:56:46,741 - stages.py[DEBUG]: Running module keys-to-console (<module 'cloudinit.config.cc_keys_to_console' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_keys_to_console.py'>) with frequency once-per-instance
2021-03-06 13:56:46,741 - handlers.py[DEBUG]: start: modules-final/config-keys-to-console: running config-keys-to-console with frequency once-per-instance
2021-03-06 13:56:46,741 - helpers.py[DEBUG]: config-keys-to-console already ran (freq=once-per-instance)
2021-03-06 13:56:46,741 - handlers.py[DEBUG]: finish: modules-final/config-keys-to-console: SUCCESS: config-keys-to-console previously ran
2021-03-06 13:56:46,741 - stages.py[DEBUG]: Running module phone-home (<module 'cloudinit.config.cc_phone_home' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_phone_home.py'>) with frequency once-per-instance
2021-03-06 13:56:46,742 - handlers.py[DEBUG]: start: modules-final/config-phone-home: running config-phone-home with frequency once-per-instance
2021-03-06 13:56:46,742 - helpers.py[DEBUG]: config-phone-home already ran (freq=once-per-instance)
2021-03-06 13:56:46,742 - handlers.py[DEBUG]: finish: modules-final/config-phone-home: SUCCESS: config-phone-home previously ran
2021-03-06 13:56:46,742 - stages.py[DEBUG]: Running module final-message (<module 'cloudinit.config.cc_final_message' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_final_message.py'>) with frequency always
2021-03-06 13:56:46,743 - handlers.py[DEBUG]: start: modules-final/config-final-message: running config-final-message with frequency always
2021-03-06 13:56:46,743 - helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0xffff99fd8070>)
2021-03-06 13:56:46,743 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2021-03-06 13:56:46,743 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2021-03-06 13:56:46,750 - util.py[DEBUG]: Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 13:56:46 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 60.91 seconds
2021-03-06 13:56:46,750 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [644] 69 bytes
2021-03-06 13:56:46,751 - handlers.py[DEBUG]: finish: modules-final/config-final-message: SUCCESS: config-final-message ran successfully
2021-03-06 13:56:46,752 - stages.py[DEBUG]: Running module power-state-change (<module 'cloudinit.config.cc_power_state_change' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_power_state_change.py'>) with frequency once-per-instance
2021-03-06 13:56:46,752 - handlers.py[DEBUG]: start: modules-final/config-power-state-change: running config-power-state-change with frequency once-per-instance
2021-03-06 13:56:46,752 - helpers.py[DEBUG]: config-power-state-change already ran (freq=once-per-instance)
2021-03-06 13:56:46,753 - handlers.py[DEBUG]: finish: modules-final/config-power-state-change: SUCCESS: config-power-state-change previously ran
2021-03-06 13:56:46,753 - main.py[DEBUG]: Ran 22 modules with 0 failures
2021-03-06 13:56:46,754 - atomic_helper.py[DEBUG]: Atomically writing to file /var/lib/cloud/data/status.json (via temporary file /var/lib/cloud/data/tmpdkto8nwg) - w: [644] 607 bytes/chars
2021-03-06 13:56:46,755 - atomic_helper.py[DEBUG]: Atomically writing to file /var/lib/cloud/data/result.json (via temporary file /var/lib/cloud/data/tmpq9__zt9z) - w: [644] 102 bytes/chars
2021-03-06 13:56:46,755 - util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
2021-03-06 13:56:46,755 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2021-03-06 13:56:46,756 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2021-03-06 13:56:46,756 - util.py[DEBUG]: cloud-init mode 'modules' took 0.234 seconds (0.23)
2021-03-06 13:56:46,756 - handlers.py[DEBUG]: finish: modules-final: SUCCESS: running modules for final
2021-03-06 14:23:48,313 - util.py[DEBUG]: Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 06 Mar 2021 14:23:48 +0000. Up 13.33 seconds.
2021-03-06 14:23:48,314 - main.py[DEBUG]: No kernel command line url found.
2021-03-06 14:23:48,315 - main.py[DEBUG]: Closing stdin.
2021-03-06 14:23:48,321 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2021-03-06 14:23:48,323 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2021-03-06 14:23:48,323 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2021-03-06 14:23:48,324 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2021-03-06 14:23:48,324 - handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
2021-03-06 14:23:48,324 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2021-03-06 14:23:48,325 - util.py[DEBUG]: Read 11634 bytes from /var/lib/cloud/instance/obj.pkl
2021-03-06 14:23:48,334 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
2021-03-06 14:23:48,335 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
2021-03-06 14:23:48,335 - stages.py[DEBUG]: cache invalid in datasource: DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net]
2021-03-06 14:23:48,335 - handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: cache invalid in datasource: DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net]
2021-03-06 14:23:48,336 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2021-03-06 14:23:48,338 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2021-03-06 14:23:48,339 - __init__.py[DEBUG]: Looking for data source in: ['NoCloud', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2021-03-06 14:23:48,341 - __init__.py[DEBUG]: Searching for local data source in: ['DataSourceNoCloud']
2021-03-06 14:23:48,342 - handlers.py[DEBUG]: start: init-local/search-NoCloud: searching for local data from DataSourceNoCloud
2021-03-06 14:23:48,342 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloud'>
2021-03-06 14:23:48,342 - __init__.py[DEBUG]: Update datasource metadata and network config due to events: New instance first boot
2021-03-06 14:23:48,342 - dmi.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_serial
2021-03-06 14:23:48,342 - dmi.py[DEBUG]: did not find /sys/class/dmi/id/product_serial
2021-03-06 14:23:48,343 - subp.py[DEBUG]: Running command ['/usr/sbin/dmidecode', '--string', 'system-serial-number'] with allowed return codes [0] (shell=False, capture=True)
2021-03-06 14:23:48,349 - dmi.py[DEBUG]: dmidecode returned '' for 'system-serial-number'
2021-03-06 14:23:48,350 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
2021-03-06 14:23:48,350 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
2021-03-06 14:23:48,350 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
2021-03-06 14:23:48,350 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/network-config (quiet=False)
2021-03-06 14:23:48,350 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
2021-03-06 14:23:48,351 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
2021-03-06 14:23:48,351 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
2021-03-06 14:23:48,351 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/network-config (quiet=False)
2021-03-06 14:23:48,351 - subp.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2021-03-06 14:23:48,419 - subp.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2021-03-06 14:23:48,438 - subp.py[DEBUG]: Running command ['blkid', '-tLABEL=SYSTEM-BOOT', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2021-03-06 14:23:48,455 - subp.py[DEBUG]: Running command ['blkid', '-tLABEL=system-boot', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2021-03-06 14:23:48,472 - subp.py[DEBUG]: Running command ['blkid', '-tLABEL_FATBOOT=system-boot', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2021-03-06 14:23:48,490 - DataSourceNoCloud.py[DEBUG]: Attempting to use data from /dev/mmcblk0p1
2021-03-06 14:23:48,490 - util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
2021-03-06 14:23:48,491 - util.py[DEBUG]: Read 2689 bytes from /proc/mounts
2021-03-06 14:23:48,491 - util.py[DEBUG]: Fetched {'sysfs': {'fstype': 'sysfs', 'mountpoint': '/sys', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'proc': {'fstype': 'proc', 'mountpoint': '/proc', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'udev': {'fstype': 'devtmpfs', 'mountpoint': '/dev', 'opts': 'rw,nosuid,noexec,relatime,size=3627832k,nr_inodes=906958,mode=755'}, 'devpts': {'fstype': 'devpts', 'mountpoint': '/dev/pts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000'}, 'tmpfs': {'fstype': 'tmpfs', 'mountpoint': '/sys/fs/cgroup', 'opts': 'ro,nosuid,nodev,noexec,size=4096k,nr_inodes=1024,mode=755'}, '/dev/mmcblk0p2': {'fstype': 'ext4', 'mountpoint': '/', 'opts': 'rw,relatime'}, 'securityfs': {'fstype': 'securityfs', 'mountpoint': '/sys/kernel/security', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'cgroup2': {'fstype': 'cgroup2', 'mountpoint': '/sys/fs/cgroup/unified', 'opts': 'rw,nosuid,nodev,noexec,relatime,nsdelegate'}, 'cgroup': {'fstype': 'cgroup', 'mountpoint': '/sys/fs/cgroup/cpuset', 'opts': 'rw,nosuid,nodev,noexec,relatime,cpuset'}, 'pstore': {'fstype': 'pstore', 'mountpoint': '/sys/fs/pstore', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'none': {'fstype': 'bpf', 'mountpoint': '/sys/fs/bpf', 'opts': 'rw,nosuid,nodev,noexec,relatime,mode=700'}, 'systemd-1': {'fstype': 'autofs', 'mountpoint': '/proc/sys/fs/binfmt_misc', 'opts': 'rw,relatime,fd=28,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=41900'}, 'mqueue': {'fstype': 'mqueue', 'mountpoint': '/dev/mqueue', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'debugfs': {'fstype': 'debugfs', 'mountpoint': '/sys/kernel/debug', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'tracefs': {'fstype': 'tracefs', 'mountpoint': '/sys/kernel/tracing', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'fusectl': {'fstype': 'fusectl', 'mountpoint': '/sys/fs/fuse/connections', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'configfs': {'fstype': 'configfs', 'mountpoint': '/sys/kernel/config', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, '/dev/loop0': {'fstype': 'squashfs', 'mountpoint': '/snap/core18/1888', 'opts': 'ro,nodev,relatime'}, '/dev/loop1': {'fstype': 'squashfs', 'mountpoint': '/snap/snapd/11043', 'opts': 'ro,nodev,relatime'}, '/dev/loop2': {'fstype': 'squashfs', 'mountpoint': '/snap/lxd/19573', 'opts': 'ro,nodev,relatime'}, '/dev/loop3': {'fstype': 'squashfs', 'mountpoint': '/snap/core18/1990', 'opts': 'ro,nodev,relatime'}, '/dev/loop4': {'fstype': 'squashfs', 'mountpoint': '/snap/lxd/19390', 'opts': 'ro,nodev,relatime'}, '/dev/loop5': {'fstype': 'squashfs', 'mountpoint': '/snap/snapd/11115', 'opts': 'ro,nodev,relatime'}, '/dev/mmcblk0p1': {'fstype': 'vfat', 'mountpoint': '/boot/firmware', 'opts': 'rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro'}} mounts from proc
2021-03-06 14:23:48,492 - util.py[DEBUG]: Reading from /boot/firmware//user-data (quiet=False)
2021-03-06 14:23:48,493 - util.py[DEBUG]: Read 2114 bytes from /boot/firmware//user-data
2021-03-06 14:23:48,493 - util.py[DEBUG]: Reading from /boot/firmware//meta-data (quiet=False)
2021-03-06 14:23:48,494 - util.py[DEBUG]: Read 240 bytes from /boot/firmware//meta-data
2021-03-06 14:23:48,494 - util.py[DEBUG]: Reading from /boot/firmware//vendor-data (quiet=False)
2021-03-06 14:23:48,494 - util.py[DEBUG]: Reading from /boot/firmware//network-config (quiet=False)
2021-03-06 14:23:48,495 - util.py[DEBUG]: Read 1389 bytes from /boot/firmware//network-config
2021-03-06 14:23:48,495 - util.py[DEBUG]: Attempting to load yaml from string of length 240 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,497 - util.py[DEBUG]: Attempting to load yaml from string of length 1389 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,503 - DataSourceNoCloud.py[DEBUG]: Using data from /dev/mmcblk0p1
2021-03-06 14:23:48,503 - util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
2021-03-06 14:23:48,504 - util.py[DEBUG]: Read 239 bytes from /etc/hosts
2021-03-06 14:23:48,507 - atomic_helper.py[DEBUG]: Atomically writing to file /run/cloud-init/instance-data-sensitive.json (via temporary file /run/cloud-init/tmp7mmmfx6o) - w: [600] 4762 bytes/chars
2021-03-06 14:23:48,508 - atomic_helper.py[DEBUG]: Atomically writing to file /run/cloud-init/instance-data.json (via temporary file /run/cloud-init/tmp2gvvptau) - w: [644] 1419 bytes/chars
2021-03-06 14:23:48,509 - handlers.py[DEBUG]: finish: init-local/search-NoCloud: SUCCESS: found local data from DataSourceNoCloud
2021-03-06 14:23:48,509 - stages.py[INFO]: Loaded datasource DataSourceNoCloud - DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net]
2021-03-06 14:23:48,509 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2021-03-06 14:23:48,509 - util.py[DEBUG]: Read 3618 bytes from /etc/cloud/cloud.cfg
2021-03-06 14:23:48,510 - util.py[DEBUG]: Attempting to load yaml from string of length 3618 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,537 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg (quiet=False)
2021-03-06 14:23:48,537 - util.py[DEBUG]: Read 119 bytes from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg
2021-03-06 14:23:48,537 - util.py[DEBUG]: Attempting to load yaml from string of length 119 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,539 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2021-03-06 14:23:48,539 - util.py[DEBUG]: Read 285 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2021-03-06 14:23:48,539 - util.py[DEBUG]: Attempting to load yaml from string of length 285 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,543 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2021-03-06 14:23:48,543 - util.py[DEBUG]: Read 2070 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2021-03-06 14:23:48,543 - util.py[DEBUG]: Attempting to load yaml from string of length 2070 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,551 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2021-03-06 14:23:48,551 - util.py[DEBUG]: Read 35 bytes from /run/cloud-init/cloud.cfg
2021-03-06 14:23:48,551 - util.py[DEBUG]: Attempting to load yaml from string of length 35 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,552 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,552 - util.py[DEBUG]: loaded blob returned None, returning default.
2021-03-06 14:23:48,553 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2021-03-06 14:23:48,554 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/nocloud'
2021-03-06 14:23:48,555 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/nocloud/datasource (quiet=False)
2021-03-06 14:23:48,556 - util.py[DEBUG]: Read 71 bytes from /var/lib/cloud/instances/nocloud/datasource
2021-03-06 14:23:48,557 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/nocloud/datasource - wb: [644] 71 bytes
2021-03-06 14:23:48,558 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [644] 71 bytes
2021-03-06 14:23:48,559 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2021-03-06 14:23:48,560 - util.py[DEBUG]: Read 8 bytes from /var/lib/cloud/data/instance-id
2021-03-06 14:23:48,561 - stages.py[DEBUG]: previous iid found to be nocloud
2021-03-06 14:23:48,561 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [644] 8 bytes
2021-03-06 14:23:48,562 - util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [644] 8 bytes
2021-03-06 14:23:48,563 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [644] 8 bytes
2021-03-06 14:23:48,565 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 7882 bytes
2021-03-06 14:23:48,567 - main.py[DEBUG]: [local] init will now be targeting instance id: nocloud. new=False
2021-03-06 14:23:48,567 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2021-03-06 14:23:48,567 - util.py[DEBUG]: Read 3618 bytes from /etc/cloud/cloud.cfg
2021-03-06 14:23:48,567 - util.py[DEBUG]: Attempting to load yaml from string of length 3618 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,594 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg (quiet=False)
2021-03-06 14:23:48,594 - util.py[DEBUG]: Read 119 bytes from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg
2021-03-06 14:23:48,594 - util.py[DEBUG]: Attempting to load yaml from string of length 119 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,596 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2021-03-06 14:23:48,596 - util.py[DEBUG]: Read 285 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2021-03-06 14:23:48,597 - util.py[DEBUG]: Attempting to load yaml from string of length 285 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,600 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2021-03-06 14:23:48,600 - util.py[DEBUG]: Read 2070 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2021-03-06 14:23:48,601 - util.py[DEBUG]: Attempting to load yaml from string of length 2070 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,608 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2021-03-06 14:23:48,608 - util.py[DEBUG]: Read 35 bytes from /run/cloud-init/cloud.cfg
2021-03-06 14:23:48,608 - util.py[DEBUG]: Attempting to load yaml from string of length 35 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,609 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,609 - util.py[DEBUG]: loaded blob returned None, returning default.
2021-03-06 14:23:48,610 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2021-03-06 14:23:48,610 - util.py[DEBUG]: Read 124 bytes from /var/lib/cloud/instance/cloud-config.txt
2021-03-06 14:23:48,610 - util.py[DEBUG]: Attempting to load yaml from string of length 124 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:48,614 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2021-03-06 14:23:48,617 - util.py[DEBUG]: Reading from /sys/class/net/wlan0/address (quiet=False)
2021-03-06 14:23:48,617 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/wlan0/address
2021-03-06 14:23:48,617 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2021-03-06 14:23:48,617 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2021-03-06 14:23:48,617 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2021-03-06 14:23:48,618 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2021-03-06 14:23:48,618 - __init__.py[DEBUG]: Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net] not updated for events: System boot
2021-03-06 14:23:48,618 - stages.py[DEBUG]: No network config applied. Neither a new instance nor datasource network update on 'System boot' event
2021-03-06 14:23:48,618 - stages.py[DEBUG]: applying net config names for {'version': 2, 'ethernets': {'eth0': {'match': {'driver': 'bcmgenet smsc95xx lan78xx'}, 'set-name': 'eth0', 'dhcp4': True, 'optional': True}}}
2021-03-06 14:23:48,619 - __init__.py[DEBUG]: no interfaces to rename
2021-03-06 14:23:48,619 - main.py[DEBUG]: [local] Exiting. datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net] not in local mode.
2021-03-06 14:23:48,619 - atomic_helper.py[DEBUG]: Atomically writing to file /var/lib/cloud/data/status.json (via temporary file /var/lib/cloud/data/tmpcnc5gyfo) - w: [644] 524 bytes/chars
2021-03-06 14:23:48,620 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2021-03-06 14:23:48,620 - util.py[DEBUG]: Read 12 bytes from /proc/uptime
2021-03-06 14:23:48,620 - util.py[DEBUG]: cloud-init mode 'init' took 0.447 seconds (0.44)
2021-03-06 14:23:48,621 - handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
2021-03-06 14:23:50,009 - util.py[DEBUG]: Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 06 Mar 2021 14:23:49 +0000. Up 15.03 seconds.
2021-03-06 14:23:50,009 - main.py[DEBUG]: No kernel command line url found.
2021-03-06 14:23:50,010 - main.py[DEBUG]: Closing stdin.
2021-03-06 14:23:50,014 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2021-03-06 14:23:50,016 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2021-03-06 14:23:50,017 - subp.py[DEBUG]: Running command ['ip', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2021-03-06 14:23:50,055 - subp.py[DEBUG]: Running command ['ip', '-o', 'route', 'list'] with allowed return codes [0] (shell=False, capture=True)
2021-03-06 14:23:50,065 - subp.py[DEBUG]: Running command ['ip', '--oneline', '-6', 'route', 'list', 'table', 'all'] with allowed return codes [0, 1] (shell=False, capture=True)
2021-03-06 14:23:50,076 - main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2021-03-06 14:23:50,076 - main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
2021-03-06 14:23:50,077 - handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
2021-03-06 14:23:50,077 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2021-03-06 14:23:50,078 - util.py[DEBUG]: Read 7882 bytes from /var/lib/cloud/instance/obj.pkl
2021-03-06 14:23:50,083 - util.py[DEBUG]: Reading from /run/cloud-init/.instance-id (quiet=False)
2021-03-06 14:23:50,084 - util.py[DEBUG]: Read 8 bytes from /run/cloud-init/.instance-id
2021-03-06 14:23:50,084 - stages.py[DEBUG]: restored from cache with run check: DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net]
2021-03-06 14:23:50,084 - handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: restored from cache with run check: DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net]
2021-03-06 14:23:50,085 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2021-03-06 14:23:50,085 - util.py[DEBUG]: Read 3618 bytes from /etc/cloud/cloud.cfg
2021-03-06 14:23:50,085 - util.py[DEBUG]: Attempting to load yaml from string of length 3618 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,115 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg (quiet=False)
2021-03-06 14:23:50,115 - util.py[DEBUG]: Read 119 bytes from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg
2021-03-06 14:23:50,115 - util.py[DEBUG]: Attempting to load yaml from string of length 119 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,117 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2021-03-06 14:23:50,117 - util.py[DEBUG]: Read 285 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2021-03-06 14:23:50,117 - util.py[DEBUG]: Attempting to load yaml from string of length 285 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,121 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2021-03-06 14:23:50,121 - util.py[DEBUG]: Read 2070 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2021-03-06 14:23:50,121 - util.py[DEBUG]: Attempting to load yaml from string of length 2070 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,129 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2021-03-06 14:23:50,129 - util.py[DEBUG]: Read 35 bytes from /run/cloud-init/cloud.cfg
2021-03-06 14:23:50,129 - util.py[DEBUG]: Attempting to load yaml from string of length 35 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,130 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,130 - util.py[DEBUG]: loaded blob returned None, returning default.
2021-03-06 14:23:50,131 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2021-03-06 14:23:50,131 - util.py[DEBUG]: Read 124 bytes from /var/lib/cloud/instance/cloud-config.txt
2021-03-06 14:23:50,131 - util.py[DEBUG]: Attempting to load yaml from string of length 124 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,134 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2021-03-06 14:23:50,134 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/nocloud'
2021-03-06 14:23:50,135 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/nocloud/datasource (quiet=False)
2021-03-06 14:23:50,136 - util.py[DEBUG]: Read 71 bytes from /var/lib/cloud/instances/nocloud/datasource
2021-03-06 14:23:50,136 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/nocloud/datasource - wb: [644] 71 bytes
2021-03-06 14:23:50,137 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [644] 71 bytes
2021-03-06 14:23:50,138 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2021-03-06 14:23:50,139 - util.py[DEBUG]: Read 8 bytes from /var/lib/cloud/data/instance-id
2021-03-06 14:23:50,139 - stages.py[DEBUG]: previous iid found to be nocloud
2021-03-06 14:23:50,139 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [644] 8 bytes
2021-03-06 14:23:50,140 - util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [644] 8 bytes
2021-03-06 14:23:50,141 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [644] 8 bytes
2021-03-06 14:23:50,143 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 7934 bytes
2021-03-06 14:23:50,145 - main.py[DEBUG]: [net] init will now be targeting instance id: nocloud. new=False
2021-03-06 14:23:50,145 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2021-03-06 14:23:50,146 - util.py[DEBUG]: Read 3618 bytes from /etc/cloud/cloud.cfg
2021-03-06 14:23:50,146 - util.py[DEBUG]: Attempting to load yaml from string of length 3618 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,172 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg (quiet=False)
2021-03-06 14:23:50,173 - util.py[DEBUG]: Read 119 bytes from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg
2021-03-06 14:23:50,173 - util.py[DEBUG]: Attempting to load yaml from string of length 119 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,174 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2021-03-06 14:23:50,175 - util.py[DEBUG]: Read 285 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2021-03-06 14:23:50,175 - util.py[DEBUG]: Attempting to load yaml from string of length 285 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,179 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2021-03-06 14:23:50,179 - util.py[DEBUG]: Read 2070 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2021-03-06 14:23:50,179 - util.py[DEBUG]: Attempting to load yaml from string of length 2070 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,186 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2021-03-06 14:23:50,186 - util.py[DEBUG]: Read 35 bytes from /run/cloud-init/cloud.cfg
2021-03-06 14:23:50,187 - util.py[DEBUG]: Attempting to load yaml from string of length 35 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,188 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,188 - util.py[DEBUG]: loaded blob returned None, returning default.
2021-03-06 14:23:50,188 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2021-03-06 14:23:50,189 - util.py[DEBUG]: Read 124 bytes from /var/lib/cloud/instance/cloud-config.txt
2021-03-06 14:23:50,189 - util.py[DEBUG]: Attempting to load yaml from string of length 124 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,193 - util.py[DEBUG]: Reading from /sys/class/net/wlan0/address (quiet=False)
2021-03-06 14:23:50,193 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/wlan0/address
2021-03-06 14:23:50,193 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2021-03-06 14:23:50,194 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2021-03-06 14:23:50,194 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2021-03-06 14:23:50,194 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2021-03-06 14:23:50,194 - __init__.py[DEBUG]: Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net] not updated for events: System boot
2021-03-06 14:23:50,194 - stages.py[DEBUG]: No network config applied. Neither a new instance nor datasource network update on 'System boot' event
2021-03-06 14:23:50,195 - stages.py[DEBUG]: applying net config names for {'version': 2, 'ethernets': {'eth0': {'match': {'driver': 'bcmgenet smsc95xx lan78xx'}, 'set-name': 'eth0', 'dhcp4': True, 'optional': True}}}
2021-03-06 14:23:50,196 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2021-03-06 14:23:50,196 - __init__.py[DEBUG]: no interfaces to rename
2021-03-06 14:23:50,197 - handlers.py[DEBUG]: start: init-network/setup-datasource: setting up datasource
2021-03-06 14:23:50,197 - handlers.py[DEBUG]: finish: init-network/setup-datasource: SUCCESS: setting up datasource
2021-03-06 14:23:50,197 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/nocloud/user-data.txt - wb: [600] 2114 bytes
2021-03-06 14:23:50,199 - util.py[DEBUG]: Attempting to load yaml from string of length 2114 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,210 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/nocloud/user-data.txt.i - wb: [600] 2419 bytes
2021-03-06 14:23:50,212 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/nocloud/vendor-data.txt - wb: [600] 0 bytes
2021-03-06 14:23:50,214 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/nocloud/vendor-data.txt.i - wb: [600] 308 bytes
2021-03-06 14:23:50,218 - helpers.py[DEBUG]: consume_data already ran (freq=once-per-instance)
2021-03-06 14:23:50,218 - handlers.py[DEBUG]: start: init-network/consume-user-data: reading and applying user-data
2021-03-06 14:23:50,220 - stages.py[DEBUG]: Added default handler for {'text/cloud-config', 'text/cloud-config-jsonp'} from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2021-03-06 14:23:50,221 - stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
2021-03-06 14:23:50,221 - stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
2021-03-06 14:23:50,221 - stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
2021-03-06 14:23:50,221 - stages.py[DEBUG]: Added default handler for {'text/jinja2'} from JinjaTemplatePartHandler: [['text/jinja2']]
2021-03-06 14:23:50,221 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency always
2021-03-06 14:23:50,222 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency always
2021-03-06 14:23:50,222 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency always
2021-03-06 14:23:50,222 - __init__.py[DEBUG]: Calling handler JinjaTemplatePartHandler: [['text/jinja2']] (__begin__, None, 3) with frequency always
2021-03-06 14:23:50,222 - __init__.py[DEBUG]: {'MIME-Version': '1.0', 'Content-Type': 'text/cloud-config', 'Content-Disposition': 'attachment; filename="part-001"'}
2021-03-06 14:23:50,222 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (text/cloud-config, part-001, 3) with frequency always
2021-03-06 14:23:50,222 - util.py[DEBUG]: Attempting to load yaml from string of length 2114 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,229 - cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
2021-03-06 14:23:50,230 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency always
2021-03-06 14:23:50,231 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/nocloud/cloud-config.txt - wb: [600] 124 bytes
2021-03-06 14:23:50,234 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency always
2021-03-06 14:23:50,234 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency always
2021-03-06 14:23:50,234 - __init__.py[DEBUG]: Calling handler JinjaTemplatePartHandler: [['text/jinja2']] (__end__, None, 3) with frequency always
2021-03-06 14:23:50,234 - handlers.py[DEBUG]: finish: init-network/consume-user-data: SUCCESS: reading and applying user-data
2021-03-06 14:23:50,234 - handlers.py[DEBUG]: start: init-network/consume-vendor-data: reading and applying vendor-data
2021-03-06 14:23:50,235 - stages.py[DEBUG]: no vendordata from datasource
2021-03-06 14:23:50,235 - handlers.py[DEBUG]: finish: init-network/consume-vendor-data: SUCCESS: reading and applying vendor-data
2021-03-06 14:23:50,235 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2021-03-06 14:23:50,236 - util.py[DEBUG]: Read 3618 bytes from /etc/cloud/cloud.cfg
2021-03-06 14:23:50,236 - util.py[DEBUG]: Attempting to load yaml from string of length 3618 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,263 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg (quiet=False)
2021-03-06 14:23:50,263 - util.py[DEBUG]: Read 119 bytes from /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg
2021-03-06 14:23:50,263 - util.py[DEBUG]: Attempting to load yaml from string of length 119 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,265 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2021-03-06 14:23:50,265 - util.py[DEBUG]: Read 285 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2021-03-06 14:23:50,265 - util.py[DEBUG]: Attempting to load yaml from string of length 285 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,269 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2021-03-06 14:23:50,269 - util.py[DEBUG]: Read 2070 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2021-03-06 14:23:50,270 - util.py[DEBUG]: Attempting to load yaml from string of length 2070 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,277 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2021-03-06 14:23:50,277 - util.py[DEBUG]: Read 35 bytes from /run/cloud-init/cloud.cfg
2021-03-06 14:23:50,277 - util.py[DEBUG]: Attempting to load yaml from string of length 35 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,278 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,278 - util.py[DEBUG]: loaded blob returned None, returning default.
2021-03-06 14:23:50,279 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2021-03-06 14:23:50,279 - util.py[DEBUG]: Read 124 bytes from /var/lib/cloud/instance/cloud-config.txt
2021-03-06 14:23:50,279 - util.py[DEBUG]: Attempting to load yaml from string of length 124 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,283 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2021-03-06 14:23:50,283 - util.py[DEBUG]: Read 124 bytes from /var/lib/cloud/instance/cloud-config.txt
2021-03-06 14:23:50,283 - util.py[DEBUG]: Attempting to load yaml from string of length 124 with allowed root types (<class 'dict'>,)
2021-03-06 14:23:50,290 - handlers.py[DEBUG]: start: init-network/activate-datasource: activating datasource
2021-03-06 14:23:50,292 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 11634 bytes
2021-03-06 14:23:50,294 - handlers.py[DEBUG]: finish: init-network/activate-datasource: SUCCESS: activating datasource
2021-03-06 14:23:50,295 - main.py[DEBUG]: no di_report found in config.
2021-03-06 14:23:50,341 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2021-03-06 14:23:50,343 - stages.py[DEBUG]: Running module migrator (<module 'cloudinit.config.cc_migrator' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_migrator.py'>) with frequency always
2021-03-06 14:23:50,343 - handlers.py[DEBUG]: start: init-network/config-migrator: running config-migrator with frequency always
2021-03-06 14:23:50,343 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0xffffa91bd4f0>)
2021-03-06 14:23:50,346 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2021-03-06 14:23:50,348 - handlers.py[DEBUG]: finish: init-network/config-migrator: SUCCESS: config-migrator ran successfully
2021-03-06 14:23:50,348 - stages.py[DEBUG]: Running module seed_random (<module 'cloudinit.config.cc_seed_random' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_seed_random.py'>) with frequency once-per-instance
2021-03-06 14:23:50,348 - handlers.py[DEBUG]: start: init-network/config-seed_random: running config-seed_random with frequency once-per-instance
2021-03-06 14:23:50,349 - helpers.py[DEBUG]: config-seed_random already ran (freq=once-per-instance)
2021-03-06 14:23:50,349 - handlers.py[DEBUG]: finish: init-network/config-seed_random: SUCCESS: config-seed_random previously ran
2021-03-06 14:23:50,349 - stages.py[DEBUG]: Running module bootcmd (<module 'cloudinit.config.cc_bootcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_bootcmd.py'>) with frequency always
2021-03-06 14:23:50,349 - handlers.py[DEBUG]: start: init-network/config-bootcmd: running config-bootcmd with frequency always
2021-03-06 14:23:50,349 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0xffffa91bd940>)
2021-03-06 14:23:50,350 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2021-03-06 14:23:50,350 - handlers.py[DEBUG]: finish: init-network/config-bootcmd: SUCCESS: config-bootcmd ran successfully
2021-03-06 14:23:50,350 - stages.py[DEBUG]: Running module write-files (<module 'cloudinit.config.cc_write_files' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_write_files.py'>) with frequency once-per-instance
2021-03-06 14:23:50,350 - handlers.py[DEBUG]: start: init-network/config-write-files: running config-write-files with frequency once-per-instance
2021-03-06 14:23:50,350 - helpers.py[DEBUG]: config-write-files already ran (freq=once-per-instance)
2021-03-06 14:23:50,351 - handlers.py[DEBUG]: finish: init-network/config-write-files: SUCCESS: config-write-files previously ran
2021-03-06 14:23:50,351 - stages.py[DEBUG]: Running module growpart (<module 'cloudinit.config.cc_growpart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_growpart.py'>) with frequency always
2021-03-06 14:23:50,351 - handlers.py[DEBUG]: start: init-network/config-growpart: running config-growpart with frequency always
2021-03-06 14:23:50,351 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0xffffa91bd4f0>)
2021-03-06 14:23:50,351 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg.  Using default: {'mode': 'auto', 'devices': ['/'], 'ignore_growroot_disabled': False}
2021-03-06 14:23:50,352 - subp.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2021-03-06 14:23:50,364 - util.py[DEBUG]: Reading from /proc/1671/mountinfo (quiet=False)
2021-03-06 14:23:50,365 - util.py[DEBUG]: Read 3543 bytes from /proc/1671/mountinfo
2021-03-06 14:23:50,365 - util.py[DEBUG]: Reading from /sys/class/block/mmcblk0p2/partition (quiet=False)
2021-03-06 14:23:50,366 - util.py[DEBUG]: Read 2 bytes from /sys/class/block/mmcblk0p2/partition
2021-03-06 14:23:50,366 - util.py[DEBUG]: Reading from /sys/devices/platform/emmc2bus/fe340000.emmc2/mmc_host/mmc0/mmc0:aaaa/block/mmcblk0/dev (quiet=False)
2021-03-06 14:23:50,366 - util.py[DEBUG]: Read 6 bytes from /sys/devices/platform/emmc2bus/fe340000.emmc2/mmc_host/mmc0/mmc0:aaaa/block/mmcblk0/dev
2021-03-06 14:23:50,367 - subp.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/mmcblk0', '2'] with allowed return codes [0] (shell=False, capture=True)
2021-03-06 14:23:50,518 - util.py[DEBUG]: resize_devices took 0.154 seconds
2021-03-06 14:23:50,518 - cc_growpart.py[DEBUG]: '/' NOCHANGE: no change necessary (/dev/mmcblk0, 2)
2021-03-06 14:23:50,519 - handlers.py[DEBUG]: finish: init-network/config-growpart: SUCCESS: config-growpart ran successfully
2021-03-06 14:23:50,519 - stages.py[DEBUG]: Running module resizefs (<module 'cloudinit.config.cc_resizefs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_resizefs.py'>) with frequency always
2021-03-06 14:23:50,519 - handlers.py[DEBUG]: start: init-network/config-resizefs: running config-resizefs with frequency always
2021-03-06 14:23:50,520 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0xffffa91bdc40>)
2021-03-06 14:23:50,632 - util.py[DEBUG]: Reading from /proc/1671/mountinfo (quiet=False)
2021-03-06 14:23:50,632 - util.py[DEBUG]: Read 3543 bytes from /proc/1671/mountinfo
2021-03-06 14:23:50,633 - cc_resizefs.py[DEBUG]: resize_info: dev=/dev/mmcblk0p2 mnt_point=/ path=/
2021-03-06 14:23:50,633 - cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/mmcblk0p2
2021-03-06 14:23:50,633 - subp.py[DEBUG]: Running command ('resize2fs', '/dev/mmcblk0p2') with allowed return codes [0] (shell=False, capture=True)
2021-03-06 14:23:50,687 - util.py[DEBUG]: Resizing took 0.053 seconds
2021-03-06 14:23:50,687 - cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
2021-03-06 14:23:50,688 - handlers.py[DEBUG]: finish: init-network/config-resizefs: SUCCESS: config-resizefs ran successfully
2021-03-06 14:23:50,689 - stages.py[DEBUG]: Running module disk_setup (<module 'cloudinit.config.cc_disk_setup' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disk_setup.py'>) with frequency once-per-instance
2021-03-06 14:23:50,690 - handlers.py[DEBUG]: start: init-network/config-disk_setup: running config-disk_setup with frequency once-per-instance
2021-03-06 14:23:50,691 - helpers.py[DEBUG]: config-disk_setup already ran (freq=once-per-instance)
2021-03-06 14:23:50,691 - handlers.py[DEBUG]: finish: init-network/config-disk_setup: SUCCESS: config-disk_setup previously ran
2021-03-06 14:23:50,691 - stages.py[DEBUG]: Running module mounts (<module 'cloudinit.config.cc_mounts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mounts.py'>) with frequency once-per-instance
2021-03-06 14:23:50,692 - handlers.py[DEBUG]: start: init-network/config-mounts: running config-mounts with frequency once-per-instance
2021-03-06 14:23:50,692 - helpers.py[DEBUG]: config-mounts already ran (freq=once-per-instance)
2021-03-06 14:23:50,693 - handlers.py[DEBUG]: finish: init-network/config-mounts: SUCCESS: config-mounts previously ran
2021-03-06 14:23:50,693 - stages.py[DEBUG]: Running module set_hostname (<module 'cloudinit.config.cc_set_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_hostname.py'>) with frequency once-per-instance
2021-03-06 14:23:50,694 - handlers.py[DEBUG]: start: init-network/config-set_hostname: running config-set_hostname with frequency once-per-instance
2021-03-06 14:23:50,694 - helpers.py[DEBUG]: config-set_hostname already ran (freq=once-per-instance)
2021-03-06 14:23:50,694 - handlers.py[DEBUG]: finish: init-network/config-set_hostname: SUCCESS: config-set_hostname previously ran
2021-03-06 14:23:50,695 - stages.py[DEBUG]: Running module update_hostname (<module 'cloudinit.config.cc_update_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_hostname.py'>) with frequency always
2021-03-06 14:23:50,695 - handlers.py[DEBUG]: start: init-network/config-update_hostname: running config-update_hostname with frequency always
2021-03-06 14:23:50,696 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0xffffa91bd640>)
2021-03-06 14:23:50,696 - cc_update_hostname.py[DEBUG]: Configuration option 'preserve_hostname' is set, not updating the hostname in module update_hostname
2021-03-06 14:23:50,697 - handlers.py[DEBUG]: finish: init-network/config-update_hostname: SUCCESS: config-update_hostname ran successfully
2021-03-06 14:23:50,697 - stages.py[DEBUG]: Running module update_etc_hosts (<module 'cloudinit.config.cc_update_etc_hosts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_etc_hosts.py'>) with frequency always
2021-03-06 14:23:50,698 - handlers.py[DEBUG]: start: init-network/config-update_etc_hosts: running config-update_etc_hosts with frequency always
2021-03-06 14:23:50,698 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0xffffa91bd4f0>)
2021-03-06 14:23:50,698 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2021-03-06 14:23:50,698 - handlers.py[DEBUG]: finish: init-network/config-update_etc_hosts: SUCCESS: config-update_etc_hosts ran successfully
2021-03-06 14:23:50,699 - stages.py[DEBUG]: Running module ca-certs (<module 'cloudinit.config.cc_ca_certs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ca_certs.py'>) with frequency once-per-instance
2021-03-06 14:23:50,699 - handlers.py[DEBUG]: start: init-network/config-ca-certs: running config-ca-certs with frequency once-per-instance
2021-03-06 14:23:50,700 - helpers.py[DEBUG]: config-ca-certs already ran (freq=once-per-instance)
2021-03-06 14:23:50,700 - handlers.py[DEBUG]: finish: init-network/config-ca-certs: SUCCESS: config-ca-certs previously ran
2021-03-06 14:23:50,700 - stages.py[DEBUG]: Running module rsyslog (<module 'cloudinit.config.cc_rsyslog' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rsyslog.py'>) with frequency once-per-instance
2021-03-06 14:23:50,701 - handlers.py[DEBUG]: start: init-network/config-rsyslog: running config-rsyslog with frequency once-per-instance
2021-03-06 14:23:50,701 - helpers.py[DEBUG]: config-rsyslog already ran (freq=once-per-instance)
2021-03-06 14:23:50,702 - handlers.py[DEBUG]: finish: init-network/config-rsyslog: SUCCESS: config-rsyslog previously ran
2021-03-06 14:23:50,702 - stages.py[DEBUG]: Running module users-groups (<module 'cloudinit.config.cc_users_groups' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_users_groups.py'>) with frequency once-per-instance
2021-03-06 14:23:50,702 - handlers.py[DEBUG]: start: init-network/config-users-groups: running config-users-groups with frequency once-per-instance
2021-03-06 14:23:50,702 - helpers.py[DEBUG]: config-users-groups already ran (freq=once-per-instance)
2021-03-06 14:23:50,702 - handlers.py[DEBUG]: finish: init-network/config-users-groups: SUCCESS: config-users-groups previously ran
2021-03-06 14:23:50,702 - stages.py[DEBUG]: Running module ssh (<module 'cloudinit.config.cc_ssh' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh.py'>) with frequency once-per-instance
2021-03-06 14:23:50,703 - handlers.py[DEBUG]: start: init-network/config-ssh: running config-ssh with frequency once-per-instance
2021-03-06 14:23:50,703 - helpers.py[DEBUG]: config-ssh already ran (freq=once-per-instance)
2021-03-06 14:23:50,703 - handlers.py[DEBUG]: finish: init-network/config-ssh: SUCCESS: config-ssh previously ran
2021-03-06 14:23:50,703 - main.py[DEBUG]: Ran 15 modules with 0 failures
2021-03-06 14:23:50,704 - atomic_helper.py[DEBUG]: Atomically writing to file /var/lib/cloud/data/status.json (via temporary file /var/lib/cloud/data/tmpdnv5j8dw) - w: [644] 552 bytes/chars
2021-03-06 14:23:50,705 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2021-03-06 14:23:50,705 - util.py[DEBUG]: Read 12 bytes from /proc/uptime
2021-03-06 14:23:50,706 - util.py[DEBUG]: cloud-init mode 'init' took 0.799 seconds (0.80)
2021-03-06 14:23:50,706 - handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
2021-03-06 14:24:20,684 - util.py[DEBUG]: Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 14:24:20 +0000. Up 45.60 seconds.
2021-03-06 14:24:20,752 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2021-03-06 14:24:20,753 - stages.py[DEBUG]: Running module emit_upstart (<module 'cloudinit.config.cc_emit_upstart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_emit_upstart.py'>) with frequency always
2021-03-06 14:24:20,754 - handlers.py[DEBUG]: start: modules-config/config-emit_upstart: running config-emit_upstart with frequency always
2021-03-06 14:24:20,755 - helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0xffffa59ba370>)
2021-03-06 14:24:20,755 - cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
2021-03-06 14:24:20,755 - cc_emit_upstart.py[DEBUG]: not upstart system, 'emit_upstart' disabled
2021-03-06 14:24:20,755 - handlers.py[DEBUG]: finish: modules-config/config-emit_upstart: SUCCESS: config-emit_upstart ran successfully
2021-03-06 14:24:20,756 - stages.py[DEBUG]: Running module snap (<module 'cloudinit.config.cc_snap' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snap.py'>) with frequency once-per-instance
2021-03-06 14:24:20,756 - handlers.py[DEBUG]: start: modules-config/config-snap: running config-snap with frequency once-per-instance
2021-03-06 14:24:20,757 - helpers.py[DEBUG]: config-snap already ran (freq=once-per-instance)
2021-03-06 14:24:20,757 - handlers.py[DEBUG]: finish: modules-config/config-snap: SUCCESS: config-snap previously ran
2021-03-06 14:24:20,757 - stages.py[DEBUG]: Running module ssh-import-id (<module 'cloudinit.config.cc_ssh_import_id' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_import_id.py'>) with frequency once-per-instance
2021-03-06 14:24:20,758 - handlers.py[DEBUG]: start: modules-config/config-ssh-import-id: running config-ssh-import-id with frequency once-per-instance
2021-03-06 14:24:20,758 - helpers.py[DEBUG]: config-ssh-import-id already ran (freq=once-per-instance)
2021-03-06 14:24:20,758 - handlers.py[DEBUG]: finish: modules-config/config-ssh-import-id: SUCCESS: config-ssh-import-id previously ran
2021-03-06 14:24:20,758 - stages.py[DEBUG]: Running module locale (<module 'cloudinit.config.cc_locale' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_locale.py'>) with frequency once-per-instance
2021-03-06 14:24:20,759 - handlers.py[DEBUG]: start: modules-config/config-locale: running config-locale with frequency once-per-instance
2021-03-06 14:24:20,759 - helpers.py[DEBUG]: config-locale already ran (freq=once-per-instance)
2021-03-06 14:24:20,759 - handlers.py[DEBUG]: finish: modules-config/config-locale: SUCCESS: config-locale previously ran
2021-03-06 14:24:20,759 - stages.py[DEBUG]: Running module set-passwords (<module 'cloudinit.config.cc_set_passwords' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_passwords.py'>) with frequency once-per-instance
2021-03-06 14:24:20,760 - handlers.py[DEBUG]: start: modules-config/config-set-passwords: running config-set-passwords with frequency once-per-instance
2021-03-06 14:24:20,760 - helpers.py[DEBUG]: config-set-passwords already ran (freq=once-per-instance)
2021-03-06 14:24:20,761 - handlers.py[DEBUG]: finish: modules-config/config-set-passwords: SUCCESS: config-set-passwords previously ran
2021-03-06 14:24:20,761 - stages.py[DEBUG]: Running module grub-dpkg (<module 'cloudinit.config.cc_grub_dpkg' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_grub_dpkg.py'>) with frequency once-per-instance
2021-03-06 14:24:20,761 - handlers.py[DEBUG]: start: modules-config/config-grub-dpkg: running config-grub-dpkg with frequency once-per-instance
2021-03-06 14:24:20,761 - helpers.py[DEBUG]: config-grub-dpkg already ran (freq=once-per-instance)
2021-03-06 14:24:20,762 - handlers.py[DEBUG]: finish: modules-config/config-grub-dpkg: SUCCESS: config-grub-dpkg previously ran
2021-03-06 14:24:20,762 - stages.py[DEBUG]: Running module apt-pipelining (<module 'cloudinit.config.cc_apt_pipelining' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_pipelining.py'>) with frequency once-per-instance
2021-03-06 14:24:20,762 - handlers.py[DEBUG]: start: modules-config/config-apt-pipelining: running config-apt-pipelining with frequency once-per-instance
2021-03-06 14:24:20,763 - helpers.py[DEBUG]: config-apt-pipelining already ran (freq=once-per-instance)
2021-03-06 14:24:20,763 - handlers.py[DEBUG]: finish: modules-config/config-apt-pipelining: SUCCESS: config-apt-pipelining previously ran
2021-03-06 14:24:20,763 - stages.py[DEBUG]: Running module apt-configure (<module 'cloudinit.config.cc_apt_configure' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_configure.py'>) with frequency once-per-instance
2021-03-06 14:24:20,763 - handlers.py[DEBUG]: start: modules-config/config-apt-configure: running config-apt-configure with frequency once-per-instance
2021-03-06 14:24:20,764 - helpers.py[DEBUG]: config-apt-configure already ran (freq=once-per-instance)
2021-03-06 14:24:20,764 - handlers.py[DEBUG]: finish: modules-config/config-apt-configure: SUCCESS: config-apt-configure previously ran
2021-03-06 14:24:20,764 - stages.py[DEBUG]: Running module ubuntu-advantage (<module 'cloudinit.config.cc_ubuntu_advantage' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ubuntu_advantage.py'>) with frequency once-per-instance
2021-03-06 14:24:20,765 - handlers.py[DEBUG]: start: modules-config/config-ubuntu-advantage: running config-ubuntu-advantage with frequency once-per-instance
2021-03-06 14:24:20,765 - helpers.py[DEBUG]: config-ubuntu-advantage already ran (freq=once-per-instance)
2021-03-06 14:24:20,766 - handlers.py[DEBUG]: finish: modules-config/config-ubuntu-advantage: SUCCESS: config-ubuntu-advantage previously ran
2021-03-06 14:24:20,766 - stages.py[DEBUG]: Running module ntp (<module 'cloudinit.config.cc_ntp' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ntp.py'>) with frequency once-per-instance
2021-03-06 14:24:20,766 - handlers.py[DEBUG]: start: modules-config/config-ntp: running config-ntp with frequency once-per-instance
2021-03-06 14:24:20,767 - helpers.py[DEBUG]: config-ntp already ran (freq=once-per-instance)
2021-03-06 14:24:20,767 - handlers.py[DEBUG]: finish: modules-config/config-ntp: SUCCESS: config-ntp previously ran
2021-03-06 14:24:20,767 - stages.py[DEBUG]: Running module timezone (<module 'cloudinit.config.cc_timezone' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_timezone.py'>) with frequency once-per-instance
2021-03-06 14:24:20,767 - handlers.py[DEBUG]: start: modules-config/config-timezone: running config-timezone with frequency once-per-instance
2021-03-06 14:24:20,768 - helpers.py[DEBUG]: config-timezone already ran (freq=once-per-instance)
2021-03-06 14:24:20,768 - handlers.py[DEBUG]: finish: modules-config/config-timezone: SUCCESS: config-timezone previously ran
2021-03-06 14:24:20,768 - stages.py[DEBUG]: Running module disable-ec2-metadata (<module 'cloudinit.config.cc_disable_ec2_metadata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disable_ec2_metadata.py'>) with frequency always
2021-03-06 14:24:20,769 - handlers.py[DEBUG]: start: modules-config/config-disable-ec2-metadata: running config-disable-ec2-metadata with frequency always
2021-03-06 14:24:20,769 - helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0xffffa59bf430>)
2021-03-06 14:24:20,769 - cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
2021-03-06 14:24:20,770 - handlers.py[DEBUG]: finish: modules-config/config-disable-ec2-metadata: SUCCESS: config-disable-ec2-metadata ran successfully
2021-03-06 14:24:20,770 - stages.py[DEBUG]: Running module runcmd (<module 'cloudinit.config.cc_runcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_runcmd.py'>) with frequency once-per-instance
2021-03-06 14:24:20,770 - handlers.py[DEBUG]: start: modules-config/config-runcmd: running config-runcmd with frequency once-per-instance
2021-03-06 14:24:20,771 - helpers.py[DEBUG]: config-runcmd already ran (freq=once-per-instance)
2021-03-06 14:24:20,771 - handlers.py[DEBUG]: finish: modules-config/config-runcmd: SUCCESS: config-runcmd previously ran
2021-03-06 14:24:20,771 - stages.py[DEBUG]: Running module byobu (<module 'cloudinit.config.cc_byobu' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_byobu.py'>) with frequency once-per-instance
2021-03-06 14:24:20,772 - handlers.py[DEBUG]: start: modules-config/config-byobu: running config-byobu with frequency once-per-instance
2021-03-06 14:24:20,772 - helpers.py[DEBUG]: config-byobu already ran (freq=once-per-instance)
2021-03-06 14:24:20,772 - handlers.py[DEBUG]: finish: modules-config/config-byobu: SUCCESS: config-byobu previously ran
2021-03-06 14:24:20,772 - main.py[DEBUG]: Ran 14 modules with 0 failures
2021-03-06 14:24:20,773 - atomic_helper.py[DEBUG]: Atomically writing to file /var/lib/cloud/data/status.json (via temporary file /var/lib/cloud/data/tmpz75vz1c_) - w: [644] 580 bytes/chars
2021-03-06 14:24:20,774 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2021-03-06 14:24:20,775 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2021-03-06 14:24:20,775 - util.py[DEBUG]: cloud-init mode 'modules' took 0.267 seconds (0.27)
2021-03-06 14:24:20,775 - handlers.py[DEBUG]: finish: modules-config: SUCCESS: running modules for config
2021-03-06 14:25:04,043 - util.py[DEBUG]: Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 14:25:03 +0000. Up 58.58 seconds.
2021-03-06 14:25:04,093 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2021-03-06 14:25:04,095 - stages.py[DEBUG]: Running module package-update-upgrade-install (<module 'cloudinit.config.cc_package_update_upgrade_install' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_package_update_upgrade_install.py'>) with frequency once-per-instance
2021-03-06 14:25:04,096 - handlers.py[DEBUG]: start: modules-final/config-package-update-upgrade-install: running config-package-update-upgrade-install with frequency once-per-instance
2021-03-06 14:25:04,096 - helpers.py[DEBUG]: config-package-update-upgrade-install already ran (freq=once-per-instance)
2021-03-06 14:25:04,096 - handlers.py[DEBUG]: finish: modules-final/config-package-update-upgrade-install: SUCCESS: config-package-update-upgrade-install previously ran
2021-03-06 14:25:04,096 - stages.py[DEBUG]: Running module fan (<module 'cloudinit.config.cc_fan' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_fan.py'>) with frequency once-per-instance
2021-03-06 14:25:04,097 - handlers.py[DEBUG]: start: modules-final/config-fan: running config-fan with frequency once-per-instance
2021-03-06 14:25:04,097 - helpers.py[DEBUG]: config-fan already ran (freq=once-per-instance)
2021-03-06 14:25:04,097 - handlers.py[DEBUG]: finish: modules-final/config-fan: SUCCESS: config-fan previously ran
2021-03-06 14:25:04,097 - stages.py[DEBUG]: Running module landscape (<module 'cloudinit.config.cc_landscape' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_landscape.py'>) with frequency once-per-instance
2021-03-06 14:25:04,098 - handlers.py[DEBUG]: start: modules-final/config-landscape: running config-landscape with frequency once-per-instance
2021-03-06 14:25:04,098 - helpers.py[DEBUG]: config-landscape already ran (freq=once-per-instance)
2021-03-06 14:25:04,098 - handlers.py[DEBUG]: finish: modules-final/config-landscape: SUCCESS: config-landscape previously ran
2021-03-06 14:25:04,098 - stages.py[DEBUG]: Running module lxd (<module 'cloudinit.config.cc_lxd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_lxd.py'>) with frequency once-per-instance
2021-03-06 14:25:04,099 - handlers.py[DEBUG]: start: modules-final/config-lxd: running config-lxd with frequency once-per-instance
2021-03-06 14:25:04,099 - helpers.py[DEBUG]: config-lxd already ran (freq=once-per-instance)
2021-03-06 14:25:04,099 - handlers.py[DEBUG]: finish: modules-final/config-lxd: SUCCESS: config-lxd previously ran
2021-03-06 14:25:04,099 - stages.py[DEBUG]: Running module ubuntu-drivers (<module 'cloudinit.config.cc_ubuntu_drivers' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ubuntu_drivers.py'>) with frequency once-per-instance
2021-03-06 14:25:04,099 - handlers.py[DEBUG]: start: modules-final/config-ubuntu-drivers: running config-ubuntu-drivers with frequency once-per-instance
2021-03-06 14:25:04,100 - helpers.py[DEBUG]: config-ubuntu-drivers already ran (freq=once-per-instance)
2021-03-06 14:25:04,100 - handlers.py[DEBUG]: finish: modules-final/config-ubuntu-drivers: SUCCESS: config-ubuntu-drivers previously ran
2021-03-06 14:25:04,100 - stages.py[DEBUG]: Running module puppet (<module 'cloudinit.config.cc_puppet' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_puppet.py'>) with frequency once-per-instance
2021-03-06 14:25:04,100 - handlers.py[DEBUG]: start: modules-final/config-puppet: running config-puppet with frequency once-per-instance
2021-03-06 14:25:04,100 - helpers.py[DEBUG]: config-puppet already ran (freq=once-per-instance)
2021-03-06 14:25:04,101 - handlers.py[DEBUG]: finish: modules-final/config-puppet: SUCCESS: config-puppet previously ran
2021-03-06 14:25:04,101 - stages.py[DEBUG]: Running module chef (<module 'cloudinit.config.cc_chef' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_chef.py'>) with frequency always
2021-03-06 14:25:04,101 - handlers.py[DEBUG]: start: modules-final/config-chef: running config-chef with frequency always
2021-03-06 14:25:04,101 - helpers.py[DEBUG]: Running config-chef using lock (<cloudinit.helpers.DummyLock object at 0xffffa26a0430>)
2021-03-06 14:25:04,101 - cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
2021-03-06 14:25:04,102 - handlers.py[DEBUG]: finish: modules-final/config-chef: SUCCESS: config-chef ran successfully
2021-03-06 14:25:04,102 - stages.py[DEBUG]: Running module mcollective (<module 'cloudinit.config.cc_mcollective' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mcollective.py'>) with frequency once-per-instance
2021-03-06 14:25:04,102 - handlers.py[DEBUG]: start: modules-final/config-mcollective: running config-mcollective with frequency once-per-instance
2021-03-06 14:25:04,102 - helpers.py[DEBUG]: config-mcollective already ran (freq=once-per-instance)
2021-03-06 14:25:04,103 - handlers.py[DEBUG]: finish: modules-final/config-mcollective: SUCCESS: config-mcollective previously ran
2021-03-06 14:25:04,103 - stages.py[DEBUG]: Running module salt-minion (<module 'cloudinit.config.cc_salt_minion' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_salt_minion.py'>) with frequency once-per-instance
2021-03-06 14:25:04,103 - handlers.py[DEBUG]: start: modules-final/config-salt-minion: running config-salt-minion with frequency once-per-instance
2021-03-06 14:25:04,103 - helpers.py[DEBUG]: config-salt-minion already ran (freq=once-per-instance)
2021-03-06 14:25:04,103 - handlers.py[DEBUG]: finish: modules-final/config-salt-minion: SUCCESS: config-salt-minion previously ran
2021-03-06 14:25:04,104 - stages.py[DEBUG]: Running module reset_rmc (<module 'cloudinit.config.cc_reset_rmc' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_reset_rmc.py'>) with frequency once-per-instance
2021-03-06 14:25:04,104 - handlers.py[DEBUG]: start: modules-final/config-reset_rmc: running config-reset_rmc with frequency once-per-instance
2021-03-06 14:25:04,104 - helpers.py[DEBUG]: config-reset_rmc already ran (freq=once-per-instance)
2021-03-06 14:25:04,104 - handlers.py[DEBUG]: finish: modules-final/config-reset_rmc: SUCCESS: config-reset_rmc previously ran
2021-03-06 14:25:04,104 - stages.py[DEBUG]: Running module refresh_rmc_and_interface (<module 'cloudinit.config.cc_refresh_rmc_and_interface' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_refresh_rmc_and_interface.py'>) with frequency always
2021-03-06 14:25:04,105 - handlers.py[DEBUG]: start: modules-final/config-refresh_rmc_and_interface: running config-refresh_rmc_and_interface with frequency always
2021-03-06 14:25:04,105 - helpers.py[DEBUG]: Running config-refresh_rmc_and_interface using lock (<cloudinit.helpers.DummyLock object at 0xffffa262d580>)
2021-03-06 14:25:04,106 - cc_refresh_rmc_and_interface.py[DEBUG]: No 'rmcctrl' in path, disabled
2021-03-06 14:25:04,106 - handlers.py[DEBUG]: finish: modules-final/config-refresh_rmc_and_interface: SUCCESS: config-refresh_rmc_and_interface ran successfully
2021-03-06 14:25:04,106 - stages.py[DEBUG]: Running module rightscale_userdata (<module 'cloudinit.config.cc_rightscale_userdata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rightscale_userdata.py'>) with frequency once-per-instance
2021-03-06 14:25:04,106 - handlers.py[DEBUG]: start: modules-final/config-rightscale_userdata: running config-rightscale_userdata with frequency once-per-instance
2021-03-06 14:25:04,107 - helpers.py[DEBUG]: config-rightscale_userdata already ran (freq=once-per-instance)
2021-03-06 14:25:04,107 - handlers.py[DEBUG]: finish: modules-final/config-rightscale_userdata: SUCCESS: config-rightscale_userdata previously ran
2021-03-06 14:25:04,107 - stages.py[DEBUG]: Running module scripts-vendor (<module 'cloudinit.config.cc_scripts_vendor' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_vendor.py'>) with frequency once-per-instance
2021-03-06 14:25:04,107 - handlers.py[DEBUG]: start: modules-final/config-scripts-vendor: running config-scripts-vendor with frequency once-per-instance
2021-03-06 14:25:04,108 - helpers.py[DEBUG]: config-scripts-vendor already ran (freq=once-per-instance)
2021-03-06 14:25:04,108 - handlers.py[DEBUG]: finish: modules-final/config-scripts-vendor: SUCCESS: config-scripts-vendor previously ran
2021-03-06 14:25:04,108 - stages.py[DEBUG]: Running module scripts-per-once (<module 'cloudinit.config.cc_scripts_per_once' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_once.py'>) with frequency once
2021-03-06 14:25:04,108 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-once: running config-scripts-per-once with frequency once
2021-03-06 14:25:04,108 - helpers.py[DEBUG]: config-scripts-per-once already ran (freq=once)
2021-03-06 14:25:04,108 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-once: SUCCESS: config-scripts-per-once previously ran
2021-03-06 14:25:04,108 - stages.py[DEBUG]: Running module scripts-per-boot (<module 'cloudinit.config.cc_scripts_per_boot' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_boot.py'>) with frequency always
2021-03-06 14:25:04,109 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-boot: running config-scripts-per-boot with frequency always
2021-03-06 14:25:04,109 - helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0xffffa2662130>)
2021-03-06 14:25:04,110 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-boot: SUCCESS: config-scripts-per-boot ran successfully
2021-03-06 14:25:04,111 - stages.py[DEBUG]: Running module scripts-per-instance (<module 'cloudinit.config.cc_scripts_per_instance' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_instance.py'>) with frequency once-per-instance
2021-03-06 14:25:04,111 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-instance: running config-scripts-per-instance with frequency once-per-instance
2021-03-06 14:25:04,112 - helpers.py[DEBUG]: config-scripts-per-instance already ran (freq=once-per-instance)
2021-03-06 14:25:04,112 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-instance: SUCCESS: config-scripts-per-instance previously ran
2021-03-06 14:25:04,112 - stages.py[DEBUG]: Running module scripts-user (<module 'cloudinit.config.cc_scripts_user' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_user.py'>) with frequency once-per-instance
2021-03-06 14:25:04,112 - handlers.py[DEBUG]: start: modules-final/config-scripts-user: running config-scripts-user with frequency once-per-instance
2021-03-06 14:25:04,112 - helpers.py[DEBUG]: config-scripts-user already ran (freq=once-per-instance)
2021-03-06 14:25:04,113 - handlers.py[DEBUG]: finish: modules-final/config-scripts-user: SUCCESS: config-scripts-user previously ran
2021-03-06 14:25:04,113 - stages.py[DEBUG]: Running module ssh-authkey-fingerprints (<module 'cloudinit.config.cc_ssh_authkey_fingerprints' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_authkey_fingerprints.py'>) with frequency once-per-instance
2021-03-06 14:25:04,113 - handlers.py[DEBUG]: start: modules-final/config-ssh-authkey-fingerprints: running config-ssh-authkey-fingerprints with frequency once-per-instance
2021-03-06 14:25:04,113 - helpers.py[DEBUG]: config-ssh-authkey-fingerprints already ran (freq=once-per-instance)
2021-03-06 14:25:04,114 - handlers.py[DEBUG]: finish: modules-final/config-ssh-authkey-fingerprints: SUCCESS: config-ssh-authkey-fingerprints previously ran
2021-03-06 14:25:04,114 - stages.py[DEBUG]: Running module keys-to-console (<module 'cloudinit.config.cc_keys_to_console' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_keys_to_console.py'>) with frequency once-per-instance
2021-03-06 14:25:04,114 - handlers.py[DEBUG]: start: modules-final/config-keys-to-console: running config-keys-to-console with frequency once-per-instance
2021-03-06 14:25:04,114 - helpers.py[DEBUG]: config-keys-to-console already ran (freq=once-per-instance)
2021-03-06 14:25:04,114 - handlers.py[DEBUG]: finish: modules-final/config-keys-to-console: SUCCESS: config-keys-to-console previously ran
2021-03-06 14:25:04,114 - stages.py[DEBUG]: Running module phone-home (<module 'cloudinit.config.cc_phone_home' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_phone_home.py'>) with frequency once-per-instance
2021-03-06 14:25:04,115 - handlers.py[DEBUG]: start: modules-final/config-phone-home: running config-phone-home with frequency once-per-instance
2021-03-06 14:25:04,115 - helpers.py[DEBUG]: config-phone-home already ran (freq=once-per-instance)
2021-03-06 14:25:04,115 - handlers.py[DEBUG]: finish: modules-final/config-phone-home: SUCCESS: config-phone-home previously ran
2021-03-06 14:25:04,115 - stages.py[DEBUG]: Running module final-message (<module 'cloudinit.config.cc_final_message' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_final_message.py'>) with frequency always
2021-03-06 14:25:04,116 - handlers.py[DEBUG]: start: modules-final/config-final-message: running config-final-message with frequency always
2021-03-06 14:25:04,116 - helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0xffffa2662070>)
2021-03-06 14:25:04,116 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2021-03-06 14:25:04,116 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2021-03-06 14:25:04,123 - util.py[DEBUG]: Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 14:25:04 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 58.81 seconds
2021-03-06 14:25:04,123 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [644] 69 bytes
2021-03-06 14:25:04,125 - handlers.py[DEBUG]: finish: modules-final/config-final-message: SUCCESS: config-final-message ran successfully
2021-03-06 14:25:04,125 - stages.py[DEBUG]: Running module power-state-change (<module 'cloudinit.config.cc_power_state_change' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_power_state_change.py'>) with frequency once-per-instance
2021-03-06 14:25:04,125 - handlers.py[DEBUG]: start: modules-final/config-power-state-change: running config-power-state-change with frequency once-per-instance
2021-03-06 14:25:04,125 - helpers.py[DEBUG]: config-power-state-change already ran (freq=once-per-instance)
2021-03-06 14:25:04,126 - handlers.py[DEBUG]: finish: modules-final/config-power-state-change: SUCCESS: config-power-state-change previously ran
2021-03-06 14:25:04,126 - main.py[DEBUG]: Ran 22 modules with 0 failures
2021-03-06 14:25:04,128 - atomic_helper.py[DEBUG]: Atomically writing to file /var/lib/cloud/data/status.json (via temporary file /var/lib/cloud/data/tmpbbaccxk7) - w: [644] 608 bytes/chars
2021-03-06 14:25:04,129 - atomic_helper.py[DEBUG]: Atomically writing to file /var/lib/cloud/data/result.json (via temporary file /var/lib/cloud/data/tmpri5q02ge) - w: [644] 102 bytes/chars
2021-03-06 14:25:04,130 - util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
2021-03-06 14:25:04,130 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2021-03-06 14:25:04,130 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2021-03-06 14:25:04,130 - util.py[DEBUG]: cloud-init mode 'modules' took 0.240 seconds (0.24)
2021-03-06 14:25:04,130 - handlers.py[DEBUG]: finish: modules-final: SUCCESS: running modules for final

cat cloud-init-output.log

Cloud-init v. 20.3-15-g6d332e5c-0ubuntu1 running 'init-local' at Thu, 24 Sep 2020 19:27:19 +0000. Up 15.49 seconds.
Cloud-init v. 20.3-15-g6d332e5c-0ubuntu1 running 'init' at Thu, 24 Sep 2020 19:27:22 +0000. Up 18.47 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Generating public/private rsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_rsa_key
Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub
The key fingerprint is:
SHA256:W1TZSma4DCOTv6+GeWcx8SsiIj5mARwOzpaoWSkMAvc root@ubuntu
The key's randomart image is:
+---[RSA 3072]----+
|o .    .   ..o   |
|+o .  + o ..= .  |
|@ o.E  + +.= .   |
|+Oo     ..+ .    |
|o=      S..o     |
|o .     .oo .    |
|   .   o.. o .   |
|  = . + + = .    |
| +.o . +.= .     |
+----[SHA256]-----+
Generating public/private dsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_dsa_key
Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub
The key fingerprint is:
SHA256:m0o76FcTt88VBjVwWpVWPU5DHwCVk7KQKBfYD1ZNxrg root@ubuntu
The key's randomart image is:
+---[DSA 1024]----+
|      o.+.*++=X+*|
|     o * +.+.B B+|
|      + o o +.= +|
|        .E..  o. |
|        So . . . |
|        oo.   .  |
|     ...o. o .   |
|    ..oo    o    |
|   ...o.         |
+----[SHA256]-----+
Generating public/private ecdsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key
Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub
The key fingerprint is:
SHA256:z+K+qgcQP8E381cLW0dAiy3xKyBd/IFx+T+X5pNzXNg root@ubuntu
The key's randomart image is:
+---[ECDSA 256]---+
|   .     .++++.  |
|  . o +. .+*=..  |
|   o o.+o o*+=   |
|  . o  ...o.o..  |
|   . .  S.. .  +.|
|    .    o .  .+E|
|     .  . o   o.=|
|      .. .     =o|
|    .o.o+.      +|
+----[SHA256]-----+
Generating public/private ed25519 key pair.
Your identification has been saved in /etc/ssh/ssh_host_ed25519_key
Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub
The key fingerprint is:
SHA256:ccVjuAKtQ+E5WwbV6Ae53IZ6Kj8vRMFdN6kBY7wDETA root@ubuntu
The key's randomart image is:
+--[ED25519 256]--+
|    Eo=O=*.o+.   |
|     o*+B.+o=.   |
|     .+B+*.= .   |
|      +=Oo*      |
|     ..oS=       |
|      o .        |
|     . o         |
|    . +          |
|     o.+.        |
+----[SHA256]-----+
Cloud-init v. 20.3-15-g6d332e5c-0ubuntu1 running 'modules:config' at Wed, 24 Feb 2021 23:49:15 +0000. Up 30.56 seconds.
Cloud-init v. 20.3-15-g6d332e5c-0ubuntu1 running 'modules:final' at Wed, 24 Feb 2021 23:49:18 +0000. Up 33.25 seconds.
ci-info: no authorized SSH keys fingerprints found for user ubuntu.
Cloud-init v. 20.3-15-g6d332e5c-0ubuntu1 finished at Wed, 24 Feb 2021 23:49:18 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 33.60 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 24 Feb 2021 23:59:52 +0000. Up 15.01 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 24 Feb 2021 23:59:54 +0000. Up 17.04 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 24 Feb 2021 23:59:59 +0000. Up 21.30 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Thu, 25 Feb 2021 00:00:00 +0000. Up 23.00 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Thu, 25 Feb 2021 00:00:01 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 23.36 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Thu, 25 Feb 2021 00:47:04 +0000. Up 13.09 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Thu, 25 Feb 2021 00:47:05 +0000. Up 14.71 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Thu, 25 Feb 2021 00:47:09 +0000. Up 18.56 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Thu, 25 Feb 2021 00:47:10 +0000. Up 19.90 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Thu, 25 Feb 2021 00:47:11 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.13 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Thu, 25 Feb 2021 11:06:23 +0000. Up 13.05 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Thu, 25 Feb 2021 11:06:25 +0000. Up 14.71 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Thu, 25 Feb 2021 11:06:29 +0000. Up 18.47 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Thu, 25 Feb 2021 11:06:30 +0000. Up 20.04 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Thu, 25 Feb 2021 11:06:31 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.26 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 00:37:44 +0000. Up 12.89 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 00:37:46 +0000. Up 14.51 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 00:37:50 +0000. Up 18.29 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 00:37:51 +0000. Up 19.87 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 00:37:52 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.10 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 00:39:40 +0000. Up 12.94 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 00:39:42 +0000. Up 14.57 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 00:39:46 +0000. Up 18.52 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 00:39:47 +0000. Up 20.15 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 00:39:48 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.40 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 00:42:26 +0000. Up 13.04 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 00:42:28 +0000. Up 14.67 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 00:42:32 +0000. Up 18.66 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 00:42:33 +0000. Up 20.28 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 00:42:34 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.51 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 01:20:39 +0000. Up 13.88 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 01:20:41 +0000. Up 15.53 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 01:20:45 +0000. Up 19.53 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 01:20:46 +0000. Up 21.18 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 01:20:46 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 21.40 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 01:35:38 +0000. Up 13.07 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 01:35:40 +0000. Up 14.73 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 01:35:44 +0000. Up 18.74 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 01:35:45 +0000. Up 20.42 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 01:35:46 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.64 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 01:40:05 +0000. Up 13.48 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 01:40:06 +0000. Up 15.11 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 01:40:10 +0000. Up 19.19 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 01:40:12 +0000. Up 20.85 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 01:40:12 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 21.09 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 01:45:31 +0000. Up 13.03 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 01:45:33 +0000. Up 14.65 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 01:45:37 +0000. Up 18.77 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 01:45:38 +0000. Up 20.45 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 01:45:39 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.70 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 01:49:35 +0000. Up 13.17 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 01:49:36 +0000. Up 14.79 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 01:49:41 +0000. Up 19.04 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 01:49:42 +0000. Up 20.74 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 01:49:43 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 21.18 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 22:17:49 +0000. Up 13.23 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 22:17:51 +0000. Up 14.87 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 22:17:55 +0000. Up 19.02 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 22:17:57 +0000. Up 20.65 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 22:17:57 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.87 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 27 Feb 2021 22:22:12 +0000. Up 13.02 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 27 Feb 2021 22:22:14 +0000. Up 14.68 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 27 Feb 2021 22:22:18 +0000. Up 18.70 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 27 Feb 2021 22:22:19 +0000. Up 20.35 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 27 Feb 2021 22:22:20 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.57 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 08:25:47 +0000. Up 12.95 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 08:25:49 +0000. Up 14.58 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 08:25:53 +0000. Up 18.63 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 08:25:54 +0000. Up 20.27 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 08:25:55 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.50 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 08:33:07 +0000. Up 13.09 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 08:33:08 +0000. Up 14.71 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 08:33:12 +0000. Up 18.71 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 08:33:14 +0000. Up 20.39 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 08:33:14 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.61 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 12:25:41 +0000. Up 13.21 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 12:25:43 +0000. Up 14.83 seconds.
ci-info: +++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: | Device |   Up  |  Address  |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: |  eth0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True | 127.0.0.1 | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |  ::1/128  |     .     |  host |         .         |
ci-info: | wlan0  | False |     .     |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+-----------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 12:25:47 +0000. Up 18.91 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 12:25:49 +0000. Up 20.49 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 12:25:49 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.72 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 12:33:42 +0000. Up 13.39 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 12:33:44 +0000. Up 15.07 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 12:33:48 +0000. Up 19.01 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 12:33:50 +0000. Up 20.72 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 12:33:50 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.94 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 12:37:01 +0000. Up 13.25 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 12:37:02 +0000. Up 14.94 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+-----------+-------+-------------------+
ci-info: | Device |   Up  |           Address            |    Mask   | Scope |     Hw-Address    |
ci-info: +--------+-------+------------------------------+-----------+-------+-------------------+
ci-info: |  eth0  | False |              .               |     .     |   .   | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           | 255.0.0.0 |  host |         .         |
ci-info: |   lo   |  True |           ::1/128            |     .     |  host |         .         |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |     .     |  link | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+-----------+-------+-------------------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 12:37:06 +0000. Up 18.95 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 12:37:08 +0000. Up 20.57 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 12:37:08 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.80 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 12:42:35 +0000. Up 13.37 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 12:42:37 +0000. Up 15.04 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 12:42:41 +0000. Up 18.99 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 12:42:43 +0000. Up 20.72 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 12:42:43 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.94 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 12:52:51 +0000. Up 13.50 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 12:52:53 +0000. Up 15.20 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 12:52:57 +0000. Up 19.16 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 12:52:58 +0000. Up 20.83 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 12:52:59 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 21.05 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 13:00:22 +0000. Up 13.25 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 13:00:23 +0000. Up 14.93 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 13:00:27 +0000. Up 18.91 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 13:00:29 +0000. Up 20.59 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 13:00:29 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.82 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 13:02:12 +0000. Up 13.17 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 13:02:13 +0000. Up 14.87 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 13:02:17 +0000. Up 18.82 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 13:02:19 +0000. Up 20.52 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 13:02:19 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.73 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Wed, 03 Mar 2021 14:50:01 +0000. Up 13.07 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Wed, 03 Mar 2021 14:50:02 +0000. Up 14.78 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Wed, 03 Mar 2021 14:50:06 +0000. Up 18.75 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Wed, 03 Mar 2021 14:50:08 +0000. Up 20.44 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Wed, 03 Mar 2021 14:50:08 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 20.67 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Thu, 04 Mar 2021 07:56:30 +0000. Up 13.55 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Thu, 04 Mar 2021 07:56:32 +0000. Up 15.26 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Thu, 04 Mar 2021 07:56:36 +0000. Up 19.30 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Thu, 04 Mar 2021 07:56:38 +0000. Up 20.99 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Thu, 04 Mar 2021 07:56:38 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 21.22 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Fri, 05 Mar 2021 12:48:48 +0000. Up 13.35 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Fri, 05 Mar 2021 12:48:50 +0000. Up 15.02 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Fri, 05 Mar 2021 12:49:17 +0000. Up 42.06 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Fri, 05 Mar 2021 12:50:01 +0000. Up 54.59 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Fri, 05 Mar 2021 12:50:02 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 54.91 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 06 Mar 2021 00:40:23 +0000. Up 13.32 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 06 Mar 2021 00:40:25 +0000. Up 15.00 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 00:40:50 +0000. Up 40.12 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 00:41:34 +0000. Up 53.22 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 00:41:35 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 53.53 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 06 Mar 2021 00:57:58 +0000. Up 13.59 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 06 Mar 2021 00:58:00 +0000. Up 15.30 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 00:58:25 +0000. Up 40.61 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 00:59:19 +0000. Up 63.82 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 00:59:20 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 64.16 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 06 Mar 2021 01:56:37 +0000. Up 13.55 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 06 Mar 2021 01:56:38 +0000. Up 15.22 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 01:57:10 +0000. Up 46.57 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 01:57:50 +0000. Up 54.98 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 01:57:50 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 55.20 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 06 Mar 2021 02:06:34 +0000. Up 13.61 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 06 Mar 2021 02:06:35 +0000. Up 15.29 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 02:07:06 +0000. Up 46.19 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 02:07:53 +0000. Up 62.25 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 02:07:54 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 62.48 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 06 Mar 2021 13:32:27 +0000. Up 13.71 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 06 Mar 2021 13:32:28 +0000. Up 15.42 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
ci-info: +-------+--------------+---------+---------------+-----------+-------+
ci-info: | Route | Destination  | Gateway |    Genmask    | Interface | Flags |
ci-info: +-------+--------------+---------+---------------+-----------+-------+
ci-info: |   0   | 192.168.50.0 | 0.0.0.0 | 255.255.255.0 |   wlan0   |   U   |
ci-info: +-------+--------------+---------+---------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 13:33:00 +0000. Up 46.51 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 13:33:48 +0000. Up 61.85 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 13:33:48 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 62.07 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 06 Mar 2021 13:55:28 +0000. Up 13.30 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 06 Mar 2021 13:55:30 +0000. Up 14.97 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++Route IPv4 info++++++++++++++++++++++++++++
ci-info: +-------+--------------+---------+---------------+-----------+-------+
ci-info: | Route | Destination  | Gateway |    Genmask    | Interface | Flags |
ci-info: +-------+--------------+---------+---------------+-----------+-------+
ci-info: |   0   | 192.168.50.0 | 0.0.0.0 | 255.255.255.0 |   wlan0   |   U   |
ci-info: +-------+--------------+---------+---------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 13:56:01 +0000. Up 46.60 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 13:56:46 +0000. Up 60.69 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 13:56:46 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 60.91 seconds
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init-local' at Sat, 06 Mar 2021 14:23:48 +0000. Up 13.33 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'init' at Sat, 06 Mar 2021 14:23:49 +0000. Up 15.03 seconds.
ci-info: +++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++++
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: | Device |   Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: |  eth0  | False |              .               |       .       |   .    | dc:a6:32:e7:xx:xx |
ci-info: |   lo   |  True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
ci-info: |   lo   |  True |           ::1/128            |       .       |  host  |         .         |
ci-info: | wlan0  |  True |         192.168.50.5         | 255.255.255.0 | global | dc:a6:32:e7:xx:xx |
ci-info: | wlan0  |  True | fe80::dea6:32ff:xxxx:6000/64 |       .       |  link  | dc:a6:32:e7:xx:xx |
ci-info: +--------+-------+------------------------------+---------------+--------+-------------------+
ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: | Route | Destination  |   Gateway    |     Genmask     | Interface | Flags |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: |   0   |   0.0.0.0    | 192.168.50.1 |     0.0.0.0     |   wlan0   |   UG  |
ci-info: |   1   | 192.168.50.0 |   0.0.0.0    |  255.255.255.0  |   wlan0   |   U   |
ci-info: |   2   | 192.168.50.1 |   0.0.0.0    | 255.255.255.255 |   wlan0   |   UH  |
ci-info: +-------+--------------+--------------+-----------------+-----------+-------+
ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: | Route | Destination | Gateway | Interface | Flags |
ci-info: +-------+-------------+---------+-----------+-------+
ci-info: |   1   |  fe80::/64  |    ::   |   wlan0   |   U   |
ci-info: |   3   |    local    |    ::   |   wlan0   |   U   |
ci-info: |   4   |   ff00::/8  |    ::   |   wlan0   |   U   |
ci-info: +-------+-------------+---------+-----------+-------+
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:config' at Sat, 06 Mar 2021 14:24:20 +0000. Up 45.60 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 running 'modules:final' at Sat, 06 Mar 2021 14:25:03 +0000. Up 58.58 seconds.
Cloud-init v. 20.4.1-0ubuntu1~20.10.1 finished at Sat, 06 Mar 2021 14:25:04 +0000. Datasource DataSourceNoCloud [seed=/dev/mmcblk0p1][dsmode=net].  Up 58.81 seconds
'''

I need to re-asses my previous message re “no difference in FPS” between DE (GNOME) and non-DE runs of glxinfo. Once I re-measure, I’ll update for those are looking for same kiosk-like LXD-based setups for X11 apps (from performance point of view).

So, non-DE (srv+Xorg) “vblank_mode=0 glxgears -fullscreen” gives me 180FPS on 1920x1200 screen (24bit depth, as seen from xwininfo -root). HW acceleration enabled as seen in glxinfo -B (RPi 4, mesa 20.2.6).
I will install xfce and will re-check (as LXDE have good chances to become abandonware soon) and wayland is not yet supported by GUI apps I’m going to use.

There are logs for the proxy device, to be found in /var/snap/lxd/common/lxd/logs/mycontainer/.

I tried to test by changing my default systemd target to not load a desktop manager. Apparently, this thing is more complicated nowdays when compounded with UEFI, two GPUs and displays ;-’(.

A kiosk is core software for things like digital signage. You could consider using some existing package. Have a look at https://ubuntu.com/tutorials/electron-kiosk

I planned to have one or more containers for things like RetroPie/StepMania/StarCraft and separate ones for my home infra like MQTT/NodeRed etc running on single RPi. I used “kios-like” to emphasize it’s not pure kiosk but rather hybrid one.

I’ve checked shortly for core+snap+retropie as retro is kinda popular and if there is no snap for Retro, then my chances for relatively easy setup are close to none.

So srv/desktop is kinda straightforward, thanks to your guide. And pure-Xorg is max I can strive for.
But Core is totally gray area so will not go this way.

The kiosk software does not require Ubuntu Core. When I said that A kiosk is core software for things like digital signage, I meant that as being central or typical, not that it requires Ubuntu Core. The URL I gave earlier says so as well when it writes that A “Target Device” from one of the following: and the third option is classic Ubuntu.