nautobot / nautobot-lab

All-in-one Docker container that allows a user to explore Nautobot in a lab environment.
Apache License 2.0
41 stars 12 forks source link

Error on manual build of nautobot-lab #61

Closed joelwking closed 1 year ago

joelwking commented 1 year ago

Running docker build -t nautobot-lab:latest . on a Digital Ocean Droplet running Ubuntu 18.04 (LTS) x64 encounters the following error:

TASK [RUN MAKEMIGRATIONS] ******************************************************
fatal: [localhost]: FAILED! => {"changed": true, "cmd": ["/opt/nautobot/bin/nautobot-server", "makemigrations"], "delta": "0:00:02.240716", "end": "2022-09-14 19:03:14.698676", "msg": "non-zero return code", "rc": 1, "start": "2022-09-14 19:03:12.457960", "stderr": "Traceback (most recent call last):\n  File \"/opt/nautobot/bin/nautobot-server\", line 8, in <module>\n    sys.exit(main())\n  File \"/opt/nautobot/lib/python3.8/site-packages/nautobot/core/cli.py\", line 54, in main\n    run_app(\n  File \"/opt/nautobot/lib/python3.8/site-packages/nautobot/core/runner/runner.py\", line 266, in run_app\n    management.execute_from_command_line([runner_name, command] + command_args)\n  File \"/opt/nautobot/lib/python3.8/site-packages/django/core/management/__init__.py\", line 401, in execute_from_command_line\n    utility.execute()\n  File \"/opt/nautobot/lib/python3.8/site-packages/django/core/management/__init__.py\", line 377, in execute\n    django.setup()\n  File \"/opt/nautobot/lib/python3.8/site-packages/django/__init__.py\", line 24, in setup\n    apps.populate(settings.INSTALLED_APPS)\n  File \"/opt/nautobot/lib/python3.8/site-packages/django/apps/registry.py\", line 114, in populate\n    app_config.import_models()\n  File \"/opt/nautobot/lib/python3.8/site-packages/django/apps/config.py\", line 211, in import_models\n    self.models_module = import_module(models_module_name)\n  File \"/usr/lib/python3.8/importlib/__init__.py\", line 127, in import_module\n    return _bootstrap._gcd_import(name[level:], package, level)\n  File \"<frozen importlib._bootstrap>\", line 1014, in _gcd_import\n  File \"<frozen importlib._bootstrap>\", line 991, in _find_and_load\n  File \"<frozen importlib._bootstrap>\", line 975, in _find_and_load_unlocked\n  File \"<frozen importlib._bootstrap>\", line 671, in _load_unlocked\n  File \"<frozen importlib._bootstrap_external>\", line 848, in exec_module\n  File \"<frozen importlib._bootstrap>\", line 219, in _call_with_frames_removed\n  File \"/opt/nautobot/lib/python3.8/site-packages/django_celery_beat/models.py\", line 246, in <module>\n    class CrontabSchedule(models.Model):\n  File \"/opt/nautobot/lib/python3.8/site-packages/django_celery_beat/models.py\", line 301, in CrontabSchedule\n    timezone = timezone_field.TimeZoneField(\n  File \"/opt/nautobot/lib/python3.8/site-packages/timezone_field/fields.py\", line 88, in __init__\n    super(TimeZoneField, self).__init__(*args, **kwargs)\nTypeError: __init__() got an unexpected keyword argument 'use_pytz'", "stderr_lines": ["Traceback (most recent call last):", "  File \"/opt/nautobot/bin/nautobot-server\", line 8, in <module>", "    sys.exit(main())", "  File \"/opt/nautobot/lib/python3.8/site-packages/nautobot/core/cli.py\", line 54, in main", "    run_app(", "  File \"/opt/nautobot/lib/python3.8/site-packages/nautobot/core/runner/runner.py\", line 266, in run_app", "    management.execute_from_command_line([runner_name, command] + command_args)", "  File \"/opt/nautobot/lib/python3.8/site-packages/django/core/management/__init__.py\", line 401, in execute_from_command_line", "    utility.execute()", "  File \"/opt/nautobot/lib/python3.8/site-packages/django/core/management/__init__.py\", line 377, in execute", "    django.setup()", "  File \"/opt/nautobot/lib/python3.8/site-packages/django/__init__.py\", line 24, in setup", "    apps.populate(settings.INSTALLED_APPS)", "  File \"/opt/nautobot/lib/python3.8/site-packages/django/apps/registry.py\", line 114, in populate", "    app_config.import_models()", "  File \"/opt/nautobot/lib/python3.8/site-packages/django/apps/config.py\", line 211, in import_models", "    self.models_module = import_module(models_module_name)", "  File \"/usr/lib/python3.8/importlib/__init__.py\", line 127, in import_module", "    return _bootstrap._gcd_import(name[level:], package, level)", "  File \"<frozen importlib._bootstrap>\", line 1014, in _gcd_import", "  File \"<frozen importlib._bootstrap>\", line 991, in _find_and_load", "  File \"<frozen importlib._bootstrap>\", line 975, in _find_and_load_unlocked", "  File \"<frozen importlib._bootstrap>\", line 671, in _load_unlocked", "  File \"<frozen importlib._bootstrap_external>\", line 848, in exec_module", "  File \"<frozen importlib._bootstrap>\", line 219, in _call_with_frames_removed", "  File \"/opt/nautobot/lib/python3.8/site-packages/django_celery_beat/models.py\", line 246, in <module>", "    class CrontabSchedule(models.Model):", "  File \"/opt/nautobot/lib/python3.8/site-packages/django_celery_beat/models.py\", line 301, in CrontabSchedule", "    timezone = timezone_field.TimeZoneField(", "  File \"/opt/nautobot/lib/python3.8/site-packages/timezone_field/fields.py\", line 88, in __init__", "    super(TimeZoneField, self).__init__(*args, **kwargs)", "TypeError: __init__() got an unexpected keyword argument 'use_pytz'"], "stdout": "", "stdout_lines": []}

PLAY RECAP *********************************************************************
localhost                  : ok=15   changed=14   unreachable=0    failed=1    skipped=0    rescued=0    ignored=0

The command '/bin/sh -c apt-get update -y &&     apt-get install -y tzdata --no-install-recommends &&     ln -fs /usr/share/zoneinfo/UTC /etc/localtime &&     dpkg-reconfigure -f noninteractive tzdata &&     apt-get install -y python3 python3-psycopg2 python3-pip       python3-venv python3-dev python3-apt postgresql-12       libpq-dev redis-server systemctl git --no-install-recommends &&     pip3 install --no-cache-dir pip --upgrade &&     pip install --no-cache-dir --requirement ./templates/requirements.txt &&     ansible-galaxy collection install community.postgresql &&     ansible-playbook pb_nautobot_install.yml &&     pip uninstall -y ansible &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*' returned a non-zero code: 2
barriejc commented 1 year ago

Having the same issue, but on a MacBook Pro Retina 13-inch late 2013 (2.4GHz Dual-Core i5 / 8GB RAM). Tried both natively in Terminal and also in a Docker Desktop alpine container to see if it made a difference (it did not seem to). Not sure if I should paste here or not (it's a lot and very similar to the above--e.g. the final line only differs in that mine says executor failed running [ and then shows the same command that starts with /bin/sh -c and ends with rm -rf /var/lib/apt/lists/*]: exit code: 2). Will attach as file if anyone is interested.

barriejc commented 1 year ago

OK, so I tried building manually because the "docker run" on-the-fly method yielded a "403 Forbidden" in the browser, but now I tried docker run again with 8000:8000 as the ports (it was 80:8080 before, from another example) and it now works. So I guess I don't need to build manually at the moment.

jtdub commented 1 year ago

@joelwking Is this still an issue for you?

nvallepalli1 commented 1 year ago

The issue still exists. I am using a 2021 Macbook Pro Apple silicon. ERROR: failed to solve: process "/bin/sh -c apt-get update -y && apt-get install -y tzdata vim --no-install-recommends && ln -fs /usr/share/zoneinfo/UTC /etc/localtime && dpkg-reconfigure -f noninteractive tzdata && apt-get install -y python3 python3-psycopg2 python3-pip python3-venv python3-dev python3-apt postgresql-12 libpq-dev redis-server systemctl git --no-install-recommends && pip3 install --no-cache-dir pip setuptools wheel --upgrade && pip3 install --no-cache-dir --requirement ./templates/requirements.txt && ansible-galaxy collection install community.postgresql && ansible-playbook pb_nautobot_install.yml && pip3 uninstall -y ansible && apt-get clean && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 2

jtdub commented 1 year ago

@nvallepalli1 What version of Docker Desktop are you using? Have you made any changes to the Dockerfile? Do you have the latest updates from the repository? Can you provide the full output?

nvallepalli1 commented 1 year ago

@jtdub I am using Docker Desktop version 4.19.0 (106363), and docker engine version is 23.0.5. I cloned the repo today to update pb_nautobot_install.yml to add the "_nautobotssot" plugin and enable it in nautobot_config.py. I also tried building the image without any changes, and the same issue persists. I am using the latest updates from the repo.

Changes

_pb_nautobot_install.yml_

    - name: "INSTALL NAUTOBOT AND PLUGINS"
      ansible.builtin.pip:
        name: "{{ nautobot_item }}"
        virtualenv: "{{ nautobot_root }}"
        virtualenv_command: "python3 -m venv"
      loop:
        - "nautobot=={{ lookup('env', 'NAUTOBOT_VERSION') }}"
        - "nautobot-device-onboarding"
        - "nautobot-circuit-maintenance"
        - "nautobot-data-validation-engine"
        - "nautobot-capacity-metrics"
        - "nautobot-golden-config"
        - "nautobot-plugin-nornir"
        - "nautobot-ssot" 
        - "supervisor"
      loop_control:
        loop_var: "nautobot_item"

_templates/nautobotconfig.py

# Enable installed plugins. Add the name of each plugin to the list.
PLUGINS = [
    "nautobot_device_onboarding",
    "nautobot_circuit_maintenance",
    "nautobot_data_validation_engine",
    "nautobot_capacity_metrics",
    "nautobot_golden_config",
    "nautobot_plugin_nornir",
    "nautobot-ssot"
]

Output

[+] Building 344.5s (9/9) FINISHED                                                                                                                    
 => [internal] load build definition from Dockerfile                                                                                             0.0s
 => => transferring dockerfile: 1.49kB                                                                                                           0.0s
 => [internal] load .dockerignore                                                                                                                0.0s
 => => transferring context: 95B                                                                                                                 0.0s
 => [internal] load metadata for public.ecr.aws/ubuntu/ubuntu:20.04_stable                                                                       3.1s
 => [internal] load build context                                                                                                                0.0s
 => => transferring context: 459B                                                                                                                0.0s
 => [1/5] FROM public.ecr.aws/ubuntu/ubuntu:20.04_stable@sha256:b2bece91a5d47304665f65a1bfc903cbc801986c5696a3a84c1e1d1e028aec8e                 0.0s
 => CACHED [2/5] WORKDIR /opt/nautobot                                                                                                           0.0s
 => CACHED [3/5] COPY pb_nautobot_install.yml .                                                                                                  0.0s
 => CACHED [4/5] COPY templates templates                                                                                                        0.0s
 => ERROR [5/5] RUN apt-get update -y &&     apt-get install -y tzdata --no-install-recommends &&     ln -fs /usr/share/zoneinfo/UTC /etc/loc  341.3s
------                                                                                                                                                
 > [5/5] RUN apt-get update -y &&     apt-get install -y tzdata --no-install-recommends &&     ln -fs /usr/share/zoneinfo/UTC /etc/localtime &&     dpkg-reconfigure -f noninteractive tzdata &&     apt-get install -y python3 python3-psycopg2 python3-pip       python3-venv python3-dev python3-apt postgresql-12       libpq-dev redis-server systemctl git --no-install-recommends &&     pip3 install --no-cache-dir pip setuptools wheel --upgrade &&     pip3 install --no-cache-dir --requirement ./templates/requirements.txt &&     ansible-galaxy collection install community.postgresql &&     ansible-playbook pb_nautobot_install.yml &&     pip3 uninstall -y ansible &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*:                              
#0 1.020 Get:1 http://ports.ubuntu.com/ubuntu-ports focal InRelease [265 kB]
#0 4.883 Get:2 http://ports.ubuntu.com/ubuntu-ports focal-updates InRelease [114 kB]
#0 6.349 Get:3 http://ports.ubuntu.com/ubuntu-ports focal-backports InRelease [108 kB]
#0 7.335 Get:4 http://ports.ubuntu.com/ubuntu-ports focal-security InRelease [114 kB]
#0 8.156 Get:5 http://ports.ubuntu.com/ubuntu-ports focal/restricted arm64 Packages [1317 B]
#0 8.378 Get:6 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 Packages [11.1 MB]
#0 35.10 Get:7 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 Packages [1234 kB]
#0 36.78 Get:8 http://ports.ubuntu.com/ubuntu-ports focal/multiverse arm64 Packages [139 kB]
#0 37.07 Get:9 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 Packages [1245 kB]
#0 37.57 Get:10 http://ports.ubuntu.com/ubuntu-ports focal-updates/restricted arm64 Packages [5435 B]
#0 37.76 Get:11 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 Packages [2355 kB]
#0 38.33 Get:12 http://ports.ubuntu.com/ubuntu-ports focal-updates/multiverse arm64 Packages [9072 B]
#0 38.53 Get:13 http://ports.ubuntu.com/ubuntu-ports focal-backports/universe arm64 Packages [27.8 kB]
#0 38.73 Get:14 http://ports.ubuntu.com/ubuntu-ports focal-backports/main arm64 Packages [54.8 kB]
#0 38.94 Get:15 http://ports.ubuntu.com/ubuntu-ports focal-security/main arm64 Packages [1971 kB]
#0 39.24 Get:16 http://ports.ubuntu.com/ubuntu-ports focal-security/restricted arm64 Packages [5200 B]
#0 39.44 Get:17 http://ports.ubuntu.com/ubuntu-ports focal-security/multiverse arm64 Packages [3260 B]
#0 39.86 Get:18 http://ports.ubuntu.com/ubuntu-ports focal-security/universe arm64 Packages [947 kB]
#0 41.32 Fetched 19.7 MB in 41s (482 kB/s)
#0 41.32 Reading package lists...
#0 41.92 Reading package lists...
#0 42.45 Building dependency tree...
#0 42.55 Reading state information...
#0 42.70 The following NEW packages will be installed:
#0 42.70   tzdata
#0 43.15 0 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
#0 43.15 Need to get 306 kB of archives.
#0 43.15 After this operation, 4166 kB of additional disk space will be used.
#0 43.15 Get:1 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 tzdata all 2023c-0ubuntu0.20.04.1 [306 kB]
#0 44.27 debconf: delaying package configuration, since apt-utils is not installed
#0 44.29 Fetched 306 kB in 1s (215 kB/s)
#0 44.31 Selecting previously unselected package tzdata.
(Reading database ... 4119 files and directories currently installed.)
#0 44.31 Preparing to unpack .../tzdata_2023c-0ubuntu0.20.04.1_all.deb ...
#0 44.31 Unpacking tzdata (2023c-0ubuntu0.20.04.1) ...
#0 44.53 Setting up tzdata (2023c-0ubuntu0.20.04.1) ...
#0 44.59 
#0 44.59 Current default time zone: 'Etc/UTC'
#0 44.59 Local time is now:      Wed May 24 11:47:09 UTC 2023.
#0 44.59 Universal Time is now:  Wed May 24 11:47:09 UTC 2023.
#0 44.59 Run 'dpkg-reconfigure tzdata' if you wish to change it.
#0 44.59 
#0 44.69 
#0 44.69 Current default time zone: 'Etc/UTC'
#0 44.69 Local time is now:      Wed May 24 11:47:09 UTC 2023.
#0 44.69 Universal Time is now:  Wed May 24 11:47:09 UTC 2023.
#0 44.69 
#0 44.73 Reading package lists...
#0 45.21 Building dependency tree...
#0 45.31 Reading state information...
#0 45.41 The following additional packages will be installed:
#0 45.41   ca-certificates git-man libasn1-8-heimdal libatomic1 libbrotli1 libbsd0
#0 45.41   libc-dev-bin libc6-dev libcrypt-dev libcurl3-gnutls libedit2 liberror-perl
#0 45.41   libexpat1 libexpat1-dev libgdbm-compat4 libgdbm6 libgssapi-krb5-2
#0 45.41   libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal
#0 45.41   libheimntlm0-heimdal libhiredis0.14 libhx509-5-heimdal libicu66 libjemalloc2
#0 45.41   libk5crypto3 libkeyutils1 libkrb5-26-heimdal libkrb5-3 libkrb5support0
#0 45.41   libldap-2.4-2 libldap-common libllvm10 liblua5.1-0 libmpdec2 libnghttp2-14
#0 45.41   libperl5.30 libpq5 libpsl5 libpython3-dev libpython3-stdlib libpython3.8
#0 45.41   libpython3.8-dev libpython3.8-minimal libpython3.8-stdlib libreadline8
#0 45.41   libroken18-heimdal librtmp1 libsasl2-2 libsasl2-modules-db libsqlite3-0
#0 45.41   libssh-4 libssl1.1 libwind0-heimdal libxml2 libxslt1.1 linux-libc-dev
#0 45.41   locales lua-bitop lua-cjson mime-support netbase openssl perl
#0 45.41   perl-modules-5.30 postgresql-client-12 postgresql-client-common
#0 45.41   postgresql-common python-apt-common python-pip-whl python3-distutils
#0 45.41   python3-lib2to3 python3-minimal python3-pkg-resources python3-setuptools
#0 45.41   python3-wheel python3.8 python3.8-dev python3.8-minimal python3.8-venv
#0 45.41   readline-common redis-tools ssl-cert ucf zlib1g-dev
#0 45.41 Suggested packages:
#0 45.41   gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email
#0 45.41   git-gui gitk gitweb git-cvs git-mediawiki git-svn glibc-doc manpages-dev
#0 45.41   gdbm-l10n krb5-doc krb5-user postgresql-doc-12 perl-doc
#0 45.41   libterm-readline-gnu-perl | libterm-readline-perl-perl make libb-debug-perl
#0 45.41   liblocale-codes-perl libjson-perl python3-doc python3-tk python3-apt-dbg
#0 45.41   python-apt-doc python-psycopg2-doc python-setuptools-doc python3.8-doc
#0 45.41   binutils binfmt-support readline-doc ruby-redis openssl-blacklist tini
#0 45.41   | dumb-init
#0 45.41 Recommended packages:
#0 45.41   patch less ssh-client manpages manpages-dev krb5-locales publicsuffix
#0 45.41   libsasl2-modules file xz-utils sysstat logrotate lsb-release iso-codes
#0 45.41   build-essential
#0 45.57 The following NEW packages will be installed:
#0 45.57   ca-certificates git git-man libasn1-8-heimdal libatomic1 libbrotli1 libbsd0
#0 45.57   libc-dev-bin libc6-dev libcrypt-dev libcurl3-gnutls libedit2 liberror-perl
#0 45.57   libexpat1 libexpat1-dev libgdbm-compat4 libgdbm6 libgssapi-krb5-2
#0 45.57   libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal
#0 45.57   libheimntlm0-heimdal libhiredis0.14 libhx509-5-heimdal libicu66 libjemalloc2
#0 45.57   libk5crypto3 libkeyutils1 libkrb5-26-heimdal libkrb5-3 libkrb5support0
#0 45.57   libldap-2.4-2 libldap-common libllvm10 liblua5.1-0 libmpdec2 libnghttp2-14
#0 45.57   libperl5.30 libpq-dev libpq5 libpsl5 libpython3-dev libpython3-stdlib
#0 45.57   libpython3.8 libpython3.8-dev libpython3.8-minimal libpython3.8-stdlib
#0 45.57   libreadline8 libroken18-heimdal librtmp1 libsasl2-2 libsasl2-modules-db
#0 45.57   libsqlite3-0 libssh-4 libssl1.1 libwind0-heimdal libxml2 libxslt1.1
#0 45.57   linux-libc-dev locales lua-bitop lua-cjson mime-support netbase openssl perl
#0 45.57   perl-modules-5.30 postgresql-12 postgresql-client-12
#0 45.57   postgresql-client-common postgresql-common python-apt-common python-pip-whl
#0 45.57   python3 python3-apt python3-dev python3-distutils python3-lib2to3
#0 45.57   python3-minimal python3-pip python3-pkg-resources python3-psycopg2
#0 45.57   python3-setuptools python3-venv python3-wheel python3.8 python3.8-dev
#0 45.57   python3.8-minimal python3.8-venv readline-common redis-server redis-tools
#0 45.57   ssl-cert systemctl ucf zlib1g-dev
#0 46.00 0 upgraded, 96 newly installed, 0 to remove and 5 not upgraded.
#0 46.00 Need to get 75.5 MB of archives.
#0 46.00 After this operation, 346 MB of additional disk space will be used.
#0 46.00 Get:1 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libssl1.1 arm64 1.1.1f-1ubuntu2.18 [1158 kB]
#0 47.62 Get:2 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libpython3.8-minimal arm64 3.8.10-0ubuntu1~20.04.7 [714 kB]
#0 47.75 Get:3 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libexpat1 arm64 2.2.9-1ubuntu0.6 [62.5 kB]
#0 47.75 Get:4 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python3.8-minimal arm64 3.8.10-0ubuntu1~20.04.7 [1830 kB]
#0 48.05 Get:5 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 python3-minimal arm64 3.8.2-0ubuntu2 [23.6 kB]
#0 48.05 Get:6 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 mime-support all 3.64ubuntu1 [30.6 kB]
#0 48.05 Get:7 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libmpdec2 arm64 2.4.2-3 [79.6 kB]
#0 48.05 Get:8 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 readline-common all 8.0-4 [53.5 kB]
#0 48.05 Get:9 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libreadline8 arm64 8.0-4 [123 kB]
#0 48.06 Get:10 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libsqlite3-0 arm64 3.31.1-4ubuntu0.5 [506 kB]
#0 48.10 Get:11 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libpython3.8-stdlib arm64 3.8.10-0ubuntu1~20.04.7 [1649 kB]
#0 48.60 Get:12 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python3.8 arm64 3.8.10-0ubuntu1~20.04.7 [387 kB]
#0 49.91 Get:13 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libpython3-stdlib arm64 3.8.2-0ubuntu2 [7068 B]
#0 49.92 Get:14 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 python3 arm64 3.8.2-0ubuntu2 [47.6 kB]
#0 49.93 Get:15 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 perl-modules-5.30 all 5.30.0-9ubuntu0.3 [2739 kB]
#0 50.65 Get:16 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libgdbm6 arm64 1.18.1-5 [26.4 kB]
#0 50.65 Get:17 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libgdbm-compat4 arm64 1.18.1-5 [6040 B]
#0 50.65 Get:18 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libperl5.30 arm64 5.30.0-9ubuntu0.3 [3766 kB]
#0 50.96 Get:19 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 perl arm64 5.30.0-9ubuntu0.3 [224 kB]
#0 50.97 Get:20 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libatomic1 arm64 10.3.0-1ubuntu1~20.04 [9820 B]
#0 50.97 Get:21 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 libhiredis0.14 arm64 0.14.0-6 [28.2 kB]
#0 50.97 Get:22 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 libjemalloc2 arm64 5.2.1-1ubuntu1 [172 kB]
#0 51.47 Get:23 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 liblua5.1-0 arm64 5.1.5-8.1build4 [92.0 kB]
#0 52.29 Get:24 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 lua-bitop arm64 1.0.2-5 [6196 B]
#0 52.30 Get:25 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 lua-cjson arm64 2.1.0+dfsg-2.1 [15.6 kB]
#0 52.32 Get:26 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 redis-tools arm64 5:5.0.7-2ubuntu0.1 [461 kB]
#0 52.86 Get:27 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 redis-server arm64 5:5.0.7-2ubuntu0.1 [37.4 kB]
#0 52.88 Get:28 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 openssl arm64 1.1.1f-1ubuntu2.18 [600 kB]
#0 53.12 Get:29 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 ca-certificates all 20211016ubuntu0.20.04.1 [141 kB]
#0 53.16 Get:30 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libbsd0 arm64 0.10.0-1 [43.7 kB]
#0 53.16 Get:31 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libicu66 arm64 66.1-2ubuntu2.1 [8360 kB]
#0 54.67 Get:32 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libxml2 arm64 2.9.10+dfsg-5ubuntu0.20.04.6 [570 kB]
#0 54.68 Get:33 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 locales all 2.31-0ubuntu9.9 [3869 kB]
#0 55.72 Get:34 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 netbase all 6.1 [13.1 kB]
#0 56.13 Get:35 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python3-pkg-resources all 45.2.0-1ubuntu0.1 [130 kB]
#0 56.67 Get:36 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 ucf all 3.0038+nmu1 [51.6 kB]
#0 56.77 Get:37 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libedit2 arm64 3.1-20191231-1 [82.7 kB]
#0 56.88 Get:38 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libkrb5support0 arm64 1.17-6ubuntu4.3 [30.5 kB]
#0 56.90 Get:39 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libk5crypto3 arm64 1.17-6ubuntu4.3 [80.6 kB]
#0 56.97 Get:40 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libkeyutils1 arm64 1.6-6ubuntu1.1 [10.1 kB]
#0 56.98 Get:41 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libkrb5-3 arm64 1.17-6ubuntu4.3 [312 kB]
#0 57.15 Get:42 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libgssapi-krb5-2 arm64 1.17-6ubuntu4.3 [113 kB]
#0 57.19 Get:43 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libpsl5 arm64 0.21.0-1ubuntu1 [51.3 kB]
#0 57.20 Get:44 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python-apt-common all 2.0.1ubuntu0.20.04.1 [16.5 kB]
#0 57.63 Get:45 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python3-apt arm64 2.0.1ubuntu0.20.04.1 [147 kB]
#0 58.57 Get:46 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libbrotli1 arm64 1.0.7-6ubuntu0.1 [257 kB]
#0 58.87 Get:47 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libroken18-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [40.1 kB]
#0 58.90 Get:48 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libasn1-8-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [150 kB]
#0 59.02 Get:49 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libheimbase1-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [28.7 kB]
#0 59.02 Get:50 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libhcrypto4-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [84.7 kB]
#0 59.05 Get:51 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libwind0-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [47.5 kB]
#0 59.07 Get:52 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libhx509-5-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [98.9 kB]
#0 59.12 Get:53 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libkrb5-26-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [192 kB]
#0 59.19 Get:54 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libheimntlm0-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [14.7 kB]
#0 59.22 Get:55 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libgssapi3-heimdal arm64 7.7.0+dfsg-1ubuntu1.4 [88.4 kB]
#0 59.67 Get:56 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libsasl2-modules-db arm64 2.1.27+dfsg-2ubuntu0.1 [14.9 kB]
#0 60.08 Get:57 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libsasl2-2 arm64 2.1.27+dfsg-2ubuntu0.1 [48.4 kB]
#0 60.40 Get:58 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libldap-common all 2.4.49+dfsg-2ubuntu1.9 [16.6 kB]
#0 60.44 Get:59 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libldap-2.4-2 arm64 2.4.49+dfsg-2ubuntu1.9 [145 kB]
#0 60.77 Get:60 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libnghttp2-14 arm64 1.40.0-1build1 [74.7 kB]
#0 60.85 Get:61 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 librtmp1 arm64 2.4+20151223.gitfa8646d.1-2build1 [53.3 kB]
#0 60.92 Get:62 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libssh-4 arm64 0.9.3-2ubuntu2.2 [159 kB]
#0 61.05 Get:63 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libcurl3-gnutls arm64 7.68.0-1ubuntu2.18 [213 kB]
#0 61.13 Get:64 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 liberror-perl all 0.17029-1 [26.5 kB]
#0 61.15 Get:65 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 git-man all 1:2.25.1-1ubuntu3.11 [887 kB]
#0 61.40 Get:66 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 git arm64 1:2.25.1-1ubuntu3.11 [4437 kB]
#0 62.23 Get:67 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libc-dev-bin arm64 2.31-0ubuntu9.9 [64.2 kB]
#0 62.96 Get:68 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 linux-libc-dev arm64 5.4.0-149.166 [1097 kB]
#0 63.94 Get:69 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libcrypt-dev arm64 1:4.4.10-10ubuntu4 [111 kB]
#0 64.01 Get:70 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libc6-dev arm64 2.31-0ubuntu9.9 [2069 kB]
#0 64.33 Get:71 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libexpat1-dev arm64 2.2.9-1ubuntu0.6 [104 kB]
#0 64.33 Get:72 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libllvm10 arm64 1:10.0.0-4ubuntu1 [12.7 MB]
#0 65.94 Get:73 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libpq5 arm64 12.14-0ubuntu0.20.04.1 [109 kB]
#0 65.94 Get:74 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libpq-dev arm64 12.14-0ubuntu0.20.04.1 [134 kB]
#0 65.95 Get:75 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libpython3.8 arm64 3.8.10-0ubuntu1~20.04.7 [1491 kB]
#0 66.37 Get:76 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libpython3.8-dev arm64 3.8.10-0ubuntu1~20.04.7 [3756 kB]
#0 66.61 Get:77 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 libpython3-dev arm64 3.8.2-0ubuntu2 [7236 B]
#0 67.02 Get:78 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 libxslt1.1 arm64 1.1.34-4ubuntu0.20.04.1 [141 kB]
#0 68.29 Get:79 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 postgresql-client-common all 214ubuntu0.1 [28.2 kB]
#0 68.32 Get:80 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 postgresql-client-12 arm64 12.14-0ubuntu0.20.04.1 [1018 kB]
#0 69.10 Get:81 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 ssl-cert all 1.0.39 [17.0 kB]
#0 69.10 Get:82 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 postgresql-common all 214ubuntu0.1 [169 kB]
#0 69.15 Get:83 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 postgresql-12 arm64 12.14-0ubuntu0.20.04.1 [13.1 MB]
#0 84.48 Get:84 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 python-pip-whl all 20.0.2-5ubuntu1.8 [1805 kB]
#0 86.53 Get:85 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 zlib1g-dev arm64 1:1.2.11.dfsg-2ubuntu1.5 [154 kB]
#0 86.71 Get:86 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python3.8-dev arm64 3.8.10-0ubuntu1~20.04.7 [514 kB]
#0 87.22 Get:87 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python3-lib2to3 all 3.8.10-0ubuntu1~20.04 [76.3 kB]
#0 87.28 Get:88 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python3-distutils all 3.8.10-0ubuntu1~20.04 [141 kB]
#0 88.06 Get:89 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 python3-dev arm64 3.8.2-0ubuntu2 [1212 B]
#0 88.27 Get:90 http://ports.ubuntu.com/ubuntu-ports focal-updates/main arm64 python3-setuptools all 45.2.0-1ubuntu0.1 [330 kB]
#0 90.20 Get:91 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 python3-wheel all 0.34.2-1ubuntu0.1 [23.9 kB]
#0 90.27 Get:92 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 python3-pip all 20.0.2-5ubuntu1.8 [231 kB]
#0 90.48 Get:93 http://ports.ubuntu.com/ubuntu-ports focal/main arm64 python3-psycopg2 arm64 2.8.4-2 [106 kB]
#0 90.68 Get:94 http://ports.ubuntu.com/ubuntu-ports focal-updates/universe arm64 python3.8-venv arm64 3.8.10-0ubuntu1~20.04.7 [5452 B]
#0 90.69 Get:95 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 python3-venv arm64 3.8.2-0ubuntu2 [1228 B]
#0 90.69 Get:96 http://ports.ubuntu.com/ubuntu-ports focal/universe arm64 systemctl all 1.4.3424-2 [75.5 kB]
#0 90.89 debconf: delaying package configuration, since apt-utils is not installed
#0 90.91 Fetched 75.5 MB in 45s (1674 kB/s)
#0 90.92 Selecting previously unselected package libssl1.1:arm64.
(Reading database ... 6043 files and directories currently installed.)
#0 90.93 Preparing to unpack .../libssl1.1_1.1.1f-1ubuntu2.18_arm64.deb ...
#0 90.93 Unpacking libssl1.1:arm64 (1.1.1f-1ubuntu2.18) ...
#0 91.01 Selecting previously unselected package libpython3.8-minimal:arm64.
#0 91.01 Preparing to unpack .../libpython3.8-minimal_3.8.10-0ubuntu1~20.04.7_arm64.deb ...
#0 91.01 Unpacking libpython3.8-minimal:arm64 (3.8.10-0ubuntu1~20.04.7) ...
#0 91.10 Selecting previously unselected package libexpat1:arm64.
#0 91.10 Preparing to unpack .../libexpat1_2.2.9-1ubuntu0.6_arm64.deb ...
#0 91.10 Unpacking libexpat1:arm64 (2.2.9-1ubuntu0.6) ...
#0 91.12 Selecting previously unselected package python3.8-minimal.
#0 91.12 Preparing to unpack .../python3.8-minimal_3.8.10-0ubuntu1~20.04.7_arm64.deb ...
#0 91.13 Unpacking python3.8-minimal (3.8.10-0ubuntu1~20.04.7) ...
#0 91.26 Setting up libssl1.1:arm64 (1.1.1f-1ubuntu2.18) ...
#0 91.31 Setting up libpython3.8-minimal:arm64 (3.8.10-0ubuntu1~20.04.7) ...
#0 91.32 Setting up libexpat1:arm64 (2.2.9-1ubuntu0.6) ...
#0 91.32 Setting up python3.8-minimal (3.8.10-0ubuntu1~20.04.7) ...
#0 91.66 Selecting previously unselected package python3-minimal.
(Reading database ... 6344 files and directories currently installed.)
#0 91.67 Preparing to unpack .../0-python3-minimal_3.8.2-0ubuntu2_arm64.deb ...
#0 91.67 Unpacking python3-minimal (3.8.2-0ubuntu2) ...
#0 91.68 Selecting previously unselected package mime-support.
#0 91.68 Preparing to unpack .../1-mime-support_3.64ubuntu1_all.deb ...
#0 91.68 Unpacking mime-support (3.64ubuntu1) ...
#0 91.70 Selecting previously unselected package libmpdec2:arm64.
#0 91.71 Preparing to unpack .../2-libmpdec2_2.4.2-3_arm64.deb ...
#0 91.71 Unpacking libmpdec2:arm64 (2.4.2-3) ...
#0 91.72 Selecting previously unselected package readline-common.
#0 91.72 Preparing to unpack .../3-readline-common_8.0-4_all.deb ...
#0 91.73 Unpacking readline-common (8.0-4) ...
#0 91.74 Selecting previously unselected package libreadline8:arm64.
#0 91.74 Preparing to unpack .../4-libreadline8_8.0-4_arm64.deb ...
#0 91.74 Unpacking libreadline8:arm64 (8.0-4) ...
#0 91.76 Selecting previously unselected package libsqlite3-0:arm64.
#0 91.77 Preparing to unpack .../5-libsqlite3-0_3.31.1-4ubuntu0.5_arm64.deb ...
#0 91.77 Unpacking libsqlite3-0:arm64 (3.31.1-4ubuntu0.5) ...
#0 91.81 Selecting previously unselected package libpython3.8-stdlib:arm64.
#0 91.81 Preparing to unpack .../6-libpython3.8-stdlib_3.8.10-0ubuntu1~20.04.7_arm64.deb ...
#0 91.81 Unpacking libpython3.8-stdlib:arm64 (3.8.10-0ubuntu1~20.04.7) ...
#0 91.94 Selecting previously unselected package python3.8.
#0 91.94 Preparing to unpack .../7-python3.8_3.8.10-0ubuntu1~20.04.7_arm64.deb ...
#0 91.94 Unpacking python3.8 (3.8.10-0ubuntu1~20.04.7) ...
#0 91.96 Selecting previously unselected package libpython3-stdlib:arm64.
#0 91.96 Preparing to unpack .../8-libpython3-stdlib_3.8.2-0ubuntu2_arm64.deb ...
#0 91.96 Unpacking libpython3-stdlib:arm64 (3.8.2-0ubuntu2) ...
#0 91.98 Setting up python3-minimal (3.8.2-0ubuntu2) ...
#0 92.08 Selecting previously unselected package python3.
(Reading database ... 6774 files and directories currently installed.)
#0 92.09 Preparing to unpack .../00-python3_3.8.2-0ubuntu2_arm64.deb ...
#0 92.09 Unpacking python3 (3.8.2-0ubuntu2) ...
#0 92.11 Selecting previously unselected package perl-modules-5.30.
#0 92.11 Preparing to unpack .../01-perl-modules-5.30_5.30.0-9ubuntu0.3_all.deb ...
#0 92.11 Unpacking perl-modules-5.30 (5.30.0-9ubuntu0.3) ...
#0 92.35 Selecting previously unselected package libgdbm6:arm64.
#0 92.35 Preparing to unpack .../02-libgdbm6_1.18.1-5_arm64.deb ...
#0 92.35 Unpacking libgdbm6:arm64 (1.18.1-5) ...
#0 92.37 Selecting previously unselected package libgdbm-compat4:arm64.
#0 92.37 Preparing to unpack .../03-libgdbm-compat4_1.18.1-5_arm64.deb ...
#0 92.37 Unpacking libgdbm-compat4:arm64 (1.18.1-5) ...
#0 92.39 Selecting previously unselected package libperl5.30:arm64.
#0 92.39 Preparing to unpack .../04-libperl5.30_5.30.0-9ubuntu0.3_arm64.deb ...
#0 92.39 Unpacking libperl5.30:arm64 (5.30.0-9ubuntu0.3) ...
#0 92.68 Selecting previously unselected package perl.
#0 92.68 Preparing to unpack .../05-perl_5.30.0-9ubuntu0.3_arm64.deb ...
#0 92.69 Unpacking perl (5.30.0-9ubuntu0.3) ...
#0 92.72 Selecting previously unselected package libatomic1:arm64.
#0 92.72 Preparing to unpack .../06-libatomic1_10.3.0-1ubuntu1~20.04_arm64.deb ...
#0 92.72 Unpacking libatomic1:arm64 (10.3.0-1ubuntu1~20.04) ...
#0 92.73 Selecting previously unselected package libhiredis0.14:arm64.
#0 92.73 Preparing to unpack .../07-libhiredis0.14_0.14.0-6_arm64.deb ...
#0 92.73 Unpacking libhiredis0.14:arm64 (0.14.0-6) ...
#0 92.75 Selecting previously unselected package libjemalloc2:arm64.
#0 92.75 Preparing to unpack .../08-libjemalloc2_5.2.1-1ubuntu1_arm64.deb ...
#0 92.75 Unpacking libjemalloc2:arm64 (5.2.1-1ubuntu1) ...
#0 92.78 Selecting previously unselected package liblua5.1-0:arm64.
#0 92.78 Preparing to unpack .../09-liblua5.1-0_5.1.5-8.1build4_arm64.deb ...
#0 92.78 Unpacking liblua5.1-0:arm64 (5.1.5-8.1build4) ...
#0 92.80 Selecting previously unselected package lua-bitop:arm64.
#0 92.80 Preparing to unpack .../10-lua-bitop_1.0.2-5_arm64.deb ...
#0 92.80 Unpacking lua-bitop:arm64 (1.0.2-5) ...
#0 92.81 Selecting previously unselected package lua-cjson:arm64.
#0 92.81 Preparing to unpack .../11-lua-cjson_2.1.0+dfsg-2.1_arm64.deb ...
#0 92.82 Unpacking lua-cjson:arm64 (2.1.0+dfsg-2.1) ...
#0 92.83 Selecting previously unselected package redis-tools.
#0 92.83 Preparing to unpack .../12-redis-tools_5%3a5.0.7-2ubuntu0.1_arm64.deb ...
#0 92.83 Unpacking redis-tools (5:5.0.7-2ubuntu0.1) ...
#0 92.88 Selecting previously unselected package redis-server.
#0 92.88 Preparing to unpack .../13-redis-server_5%3a5.0.7-2ubuntu0.1_arm64.deb ...
#0 92.90 Unpacking redis-server (5:5.0.7-2ubuntu0.1) ...
#0 92.91 Selecting previously unselected package openssl.
#0 92.91 Preparing to unpack .../14-openssl_1.1.1f-1ubuntu2.18_arm64.deb ...
#0 92.91 Unpacking openssl (1.1.1f-1ubuntu2.18) ...
#0 92.97 Selecting previously unselected package ca-certificates.
#0 92.97 Preparing to unpack .../15-ca-certificates_20211016ubuntu0.20.04.1_all.deb ...
#0 92.97 Unpacking ca-certificates (20211016ubuntu0.20.04.1) ...
#0 93.00 Selecting previously unselected package libbsd0:arm64.
#0 93.00 Preparing to unpack .../16-libbsd0_0.10.0-1_arm64.deb ...
#0 93.00 Unpacking libbsd0:arm64 (0.10.0-1) ...
#0 93.02 Selecting previously unselected package libicu66:arm64.
#0 93.02 Preparing to unpack .../17-libicu66_66.1-2ubuntu2.1_arm64.deb ...
#0 93.02 Unpacking libicu66:arm64 (66.1-2ubuntu2.1) ...
#0 93.57 Selecting previously unselected package libxml2:arm64.
#0 93.57 Preparing to unpack .../18-libxml2_2.9.10+dfsg-5ubuntu0.20.04.6_arm64.deb ...
#0 93.57 Unpacking libxml2:arm64 (2.9.10+dfsg-5ubuntu0.20.04.6) ...
#0 93.63 Selecting previously unselected package locales.
#0 93.63 Preparing to unpack .../19-locales_2.31-0ubuntu9.9_all.deb ...
#0 93.63 Unpacking locales (2.31-0ubuntu9.9) ...
#0 93.93 Selecting previously unselected package netbase.
#0 93.93 Preparing to unpack .../20-netbase_6.1_all.deb ...
#0 93.93 Unpacking netbase (6.1) ...
#0 93.95 Selecting previously unselected package python3-pkg-resources.
#0 93.95 Preparing to unpack .../21-python3-pkg-resources_45.2.0-1ubuntu0.1_all.deb ...
#0 93.95 Unpacking python3-pkg-resources (45.2.0-1ubuntu0.1) ...
#0 93.98 Selecting previously unselected package ucf.
#0 93.98 Preparing to unpack .../22-ucf_3.0038+nmu1_all.deb ...
#0 93.98 Moving old data out of the way
#0 93.98 Unpacking ucf (3.0038+nmu1) ...
#0 94.00 Selecting previously unselected package libedit2:arm64.
#0 94.00 Preparing to unpack .../23-libedit2_3.1-20191231-1_arm64.deb ...
#0 94.00 Unpacking libedit2:arm64 (3.1-20191231-1) ...
#0 94.02 Selecting previously unselected package libkrb5support0:arm64.
#0 94.02 Preparing to unpack .../24-libkrb5support0_1.17-6ubuntu4.3_arm64.deb ...
#0 94.02 Unpacking libkrb5support0:arm64 (1.17-6ubuntu4.3) ...
#0 94.04 Selecting previously unselected package libk5crypto3:arm64.
#0 94.04 Preparing to unpack .../25-libk5crypto3_1.17-6ubuntu4.3_arm64.deb ...
#0 94.04 Unpacking libk5crypto3:arm64 (1.17-6ubuntu4.3) ...
#0 94.06 Selecting previously unselected package libkeyutils1:arm64.
#0 94.06 Preparing to unpack .../26-libkeyutils1_1.6-6ubuntu1.1_arm64.deb ...
#0 94.06 Unpacking libkeyutils1:arm64 (1.6-6ubuntu1.1) ...
#0 94.08 Selecting previously unselected package libkrb5-3:arm64.
#0 94.08 Preparing to unpack .../27-libkrb5-3_1.17-6ubuntu4.3_arm64.deb ...
#0 94.08 Unpacking libkrb5-3:arm64 (1.17-6ubuntu4.3) ...
#0 94.12 Selecting previously unselected package libgssapi-krb5-2:arm64.
#0 94.12 Preparing to unpack .../28-libgssapi-krb5-2_1.17-6ubuntu4.3_arm64.deb ...
#0 94.12 Unpacking libgssapi-krb5-2:arm64 (1.17-6ubuntu4.3) ...
#0 94.14 Selecting previously unselected package libpsl5:arm64.
#0 94.14 Preparing to unpack .../29-libpsl5_0.21.0-1ubuntu1_arm64.deb ...
#0 94.15 Unpacking libpsl5:arm64 (0.21.0-1ubuntu1) ...
#0 94.16 Selecting previously unselected package python-apt-common.
#0 94.16 Preparing to unpack .../30-python-apt-common_2.0.1ubuntu0.20.04.1_all.deb ...
#0 94.16 Unpacking python-apt-common (2.0.1ubuntu0.20.04.1) ...
#0 94.18 Selecting previously unselected package python3-apt.
#0 94.18 Preparing to unpack .../31-python3-apt_2.0.1ubuntu0.20.04.1_arm64.deb ...
#0 94.18 Unpacking python3-apt (2.0.1ubuntu0.20.04.1) ...
#0 94.21 Selecting previously unselected package libbrotli1:arm64.
#0 94.21 Preparing to unpack .../32-libbrotli1_1.0.7-6ubuntu0.1_arm64.deb ...
#0 94.21 Unpacking libbrotli1:arm64 (1.0.7-6ubuntu0.1) ...
#0 94.24 Selecting previously unselected package libroken18-heimdal:arm64.
#0 94.24 Preparing to unpack .../33-libroken18-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.24 Unpacking libroken18-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.26 Selecting previously unselected package libasn1-8-heimdal:arm64.
#0 94.26 Preparing to unpack .../34-libasn1-8-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.26 Unpacking libasn1-8-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.28 Selecting previously unselected package libheimbase1-heimdal:arm64.
#0 94.28 Preparing to unpack .../35-libheimbase1-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.28 Unpacking libheimbase1-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.30 Selecting previously unselected package libhcrypto4-heimdal:arm64.
#0 94.30 Preparing to unpack .../36-libhcrypto4-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.30 Unpacking libhcrypto4-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.32 Selecting previously unselected package libwind0-heimdal:arm64.
#0 94.32 Preparing to unpack .../37-libwind0-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.32 Unpacking libwind0-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.34 Selecting previously unselected package libhx509-5-heimdal:arm64.
#0 94.34 Preparing to unpack .../38-libhx509-5-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.34 Unpacking libhx509-5-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.36 Selecting previously unselected package libkrb5-26-heimdal:arm64.
#0 94.36 Preparing to unpack .../39-libkrb5-26-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.37 Unpacking libkrb5-26-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.39 Selecting previously unselected package libheimntlm0-heimdal:arm64.
#0 94.39 Preparing to unpack .../40-libheimntlm0-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.40 Unpacking libheimntlm0-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.41 Selecting previously unselected package libgssapi3-heimdal:arm64.
#0 94.41 Preparing to unpack .../41-libgssapi3-heimdal_7.7.0+dfsg-1ubuntu1.4_arm64.deb ...
#0 94.41 Unpacking libgssapi3-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 94.43 Selecting previously unselected package libsasl2-modules-db:arm64.
#0 94.43 Preparing to unpack .../42-libsasl2-modules-db_2.1.27+dfsg-2ubuntu0.1_arm64.deb ...
#0 94.43 Unpacking libsasl2-modules-db:arm64 (2.1.27+dfsg-2ubuntu0.1) ...
#0 94.45 Selecting previously unselected package libsasl2-2:arm64.
#0 94.45 Preparing to unpack .../43-libsasl2-2_2.1.27+dfsg-2ubuntu0.1_arm64.deb ...
#0 94.45 Unpacking libsasl2-2:arm64 (2.1.27+dfsg-2ubuntu0.1) ...
#0 94.47 Selecting previously unselected package libldap-common.
#0 94.47 Preparing to unpack .../44-libldap-common_2.4.49+dfsg-2ubuntu1.9_all.deb ...
#0 94.47 Unpacking libldap-common (2.4.49+dfsg-2ubuntu1.9) ...
#0 94.49 Selecting previously unselected package libldap-2.4-2:arm64.
#0 94.49 Preparing to unpack .../45-libldap-2.4-2_2.4.49+dfsg-2ubuntu1.9_arm64.deb ...
#0 94.49 Unpacking libldap-2.4-2:arm64 (2.4.49+dfsg-2ubuntu1.9) ...
#0 94.52 Selecting previously unselected package libnghttp2-14:arm64.
#0 94.52 Preparing to unpack .../46-libnghttp2-14_1.40.0-1build1_arm64.deb ...
#0 94.52 Unpacking libnghttp2-14:arm64 (1.40.0-1build1) ...
#0 94.54 Selecting previously unselected package librtmp1:arm64.
#0 94.55 Preparing to unpack .../47-librtmp1_2.4+20151223.gitfa8646d.1-2build1_arm64.deb ...
#0 94.55 Unpacking librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build1) ...
#0 94.56 Selecting previously unselected package libssh-4:arm64.
#0 94.56 Preparing to unpack .../48-libssh-4_0.9.3-2ubuntu2.2_arm64.deb ...
#0 94.57 Unpacking libssh-4:arm64 (0.9.3-2ubuntu2.2) ...
#0 94.59 Selecting previously unselected package libcurl3-gnutls:arm64.
#0 94.59 Preparing to unpack .../49-libcurl3-gnutls_7.68.0-1ubuntu2.18_arm64.deb ...
#0 94.59 Unpacking libcurl3-gnutls:arm64 (7.68.0-1ubuntu2.18) ...
#0 94.62 Selecting previously unselected package liberror-perl.
#0 94.62 Preparing to unpack .../50-liberror-perl_0.17029-1_all.deb ...
#0 94.62 Unpacking liberror-perl (0.17029-1) ...
#0 94.63 Selecting previously unselected package git-man.
#0 94.63 Preparing to unpack .../51-git-man_1%3a2.25.1-1ubuntu3.11_all.deb ...
#0 94.63 Unpacking git-man (1:2.25.1-1ubuntu3.11) ...
#0 94.70 Selecting previously unselected package git.
#0 94.70 Preparing to unpack .../52-git_1%3a2.25.1-1ubuntu3.11_arm64.deb ...
#0 94.71 Unpacking git (1:2.25.1-1ubuntu3.11) ...
#0 95.05 Selecting previously unselected package libc-dev-bin.
#0 95.05 Preparing to unpack .../53-libc-dev-bin_2.31-0ubuntu9.9_arm64.deb ...
#0 95.05 Unpacking libc-dev-bin (2.31-0ubuntu9.9) ...
#0 95.07 Selecting previously unselected package linux-libc-dev:arm64.
#0 95.07 Preparing to unpack .../54-linux-libc-dev_5.4.0-149.166_arm64.deb ...
#0 95.07 Unpacking linux-libc-dev:arm64 (5.4.0-149.166) ...
#0 95.20 Selecting previously unselected package libcrypt-dev:arm64.
#0 95.20 Preparing to unpack .../55-libcrypt-dev_1%3a4.4.10-10ubuntu4_arm64.deb ...
#0 95.20 Unpacking libcrypt-dev:arm64 (1:4.4.10-10ubuntu4) ...
#0 95.22 Selecting previously unselected package libc6-dev:arm64.
#0 95.22 Preparing to unpack .../56-libc6-dev_2.31-0ubuntu9.9_arm64.deb ...
#0 95.23 Unpacking libc6-dev:arm64 (2.31-0ubuntu9.9) ...
#0 95.41 Selecting previously unselected package libexpat1-dev:arm64.
#0 95.41 Preparing to unpack .../57-libexpat1-dev_2.2.9-1ubuntu0.6_arm64.deb ...
#0 95.41 Unpacking libexpat1-dev:arm64 (2.2.9-1ubuntu0.6) ...
#0 95.43 Selecting previously unselected package libllvm10:arm64.
#0 95.44 Preparing to unpack .../58-libllvm10_1%3a10.0.0-4ubuntu1_arm64.deb ...
#0 95.44 Unpacking libllvm10:arm64 (1:10.0.0-4ubuntu1) ...
#0 96.26 Selecting previously unselected package libpq5:arm64.
#0 96.26 Preparing to unpack .../59-libpq5_12.14-0ubuntu0.20.04.1_arm64.deb ...
#0 96.26 Unpacking libpq5:arm64 (12.14-0ubuntu0.20.04.1) ...
#0 96.28 Selecting previously unselected package libpq-dev.
#0 96.28 Preparing to unpack .../60-libpq-dev_12.14-0ubuntu0.20.04.1_arm64.deb ...
#0 96.29 Unpacking libpq-dev (12.14-0ubuntu0.20.04.1) ...
#0 96.31 Selecting previously unselected package libpython3.8:arm64.
#0 96.31 Preparing to unpack .../61-libpython3.8_3.8.10-0ubuntu1~20.04.7_arm64.deb ...
#0 96.31 Unpacking libpython3.8:arm64 (3.8.10-0ubuntu1~20.04.7) ...
#0 96.43 Selecting previously unselected package libpython3.8-dev:arm64.
#0 96.43 Preparing to unpack .../62-libpython3.8-dev_3.8.10-0ubuntu1~20.04.7_arm64.deb ...
#0 96.43 Unpacking libpython3.8-dev:arm64 (3.8.10-0ubuntu1~20.04.7) ...
#0 96.70 Selecting previously unselected package libpython3-dev:arm64.
#0 96.70 Preparing to unpack .../63-libpython3-dev_3.8.2-0ubuntu2_arm64.deb ...
#0 96.70 Unpacking libpython3-dev:arm64 (3.8.2-0ubuntu2) ...
#0 96.72 Selecting previously unselected package libxslt1.1:arm64.
#0 96.72 Preparing to unpack .../64-libxslt1.1_1.1.34-4ubuntu0.20.04.1_arm64.deb ...
#0 96.72 Unpacking libxslt1.1:arm64 (1.1.34-4ubuntu0.20.04.1) ...
#0 96.74 Selecting previously unselected package postgresql-client-common.
#0 96.75 Preparing to unpack .../65-postgresql-client-common_214ubuntu0.1_all.deb ...
#0 96.75 Unpacking postgresql-client-common (214ubuntu0.1) ...
#0 96.77 Selecting previously unselected package postgresql-client-12.
#0 96.77 Preparing to unpack .../66-postgresql-client-12_12.14-0ubuntu0.20.04.1_arm64.deb ...
#0 96.77 Unpacking postgresql-client-12 (12.14-0ubuntu0.20.04.1) ...
#0 96.85 Selecting previously unselected package ssl-cert.
#0 96.85 Preparing to unpack .../67-ssl-cert_1.0.39_all.deb ...
#0 96.85 Unpacking ssl-cert (1.0.39) ...
#0 96.87 Selecting previously unselected package postgresql-common.
#0 96.87 Preparing to unpack .../68-postgresql-common_214ubuntu0.1_all.deb ...
#0 96.88 Adding 'diversion of /usr/bin/pg_config to /usr/bin/pg_config.libpq-dev by postgresql-common'
#0 96.88 Unpacking postgresql-common (214ubuntu0.1) ...
#0 96.92 Selecting previously unselected package postgresql-12.
#0 96.92 Preparing to unpack .../69-postgresql-12_12.14-0ubuntu0.20.04.1_arm64.deb ...
#0 96.92 Unpacking postgresql-12 (12.14-0ubuntu0.20.04.1) ...
#0 97.68 Selecting previously unselected package python-pip-whl.
#0 97.68 Preparing to unpack .../70-python-pip-whl_20.0.2-5ubuntu1.8_all.deb ...
#0 97.68 Unpacking python-pip-whl (20.0.2-5ubuntu1.8) ...
#0 97.78 Selecting previously unselected package zlib1g-dev:arm64.
#0 97.78 Preparing to unpack .../71-zlib1g-dev_1%3a1.2.11.dfsg-2ubuntu1.5_arm64.deb ...
#0 97.78 Unpacking zlib1g-dev:arm64 (1:1.2.11.dfsg-2ubuntu1.5) ...
#0 97.90 Selecting previously unselected package python3.8-dev.
#0 97.91 Preparing to unpack .../72-python3.8-dev_3.8.10-0ubuntu1~20.04.7_arm64.deb ...
#0 97.91 Unpacking python3.8-dev (3.8.10-0ubuntu1~20.04.7) ...
#0 97.93 Selecting previously unselected package python3-lib2to3.
#0 97.93 Preparing to unpack .../73-python3-lib2to3_3.8.10-0ubuntu1~20.04_all.deb ...
#0 97.93 Unpacking python3-lib2to3 (3.8.10-0ubuntu1~20.04) ...
#0 97.95 Selecting previously unselected package python3-distutils.
#0 97.95 Preparing to unpack .../74-python3-distutils_3.8.10-0ubuntu1~20.04_all.deb ...
#0 97.96 Unpacking python3-distutils (3.8.10-0ubuntu1~20.04) ...
#0 97.98 Selecting previously unselected package python3-dev.
#0 97.98 Preparing to unpack .../75-python3-dev_3.8.2-0ubuntu2_arm64.deb ...
#0 97.98 Unpacking python3-dev (3.8.2-0ubuntu2) ...
#0 98.00 Selecting previously unselected package python3-setuptools.
#0 98.00 Preparing to unpack .../76-python3-setuptools_45.2.0-1ubuntu0.1_all.deb ...
#0 98.00 Unpacking python3-setuptools (45.2.0-1ubuntu0.1) ...
#0 98.03 Selecting previously unselected package python3-wheel.
#0 98.03 Preparing to unpack .../77-python3-wheel_0.34.2-1ubuntu0.1_all.deb ...
#0 98.03 Unpacking python3-wheel (0.34.2-1ubuntu0.1) ...
#0 98.05 Selecting previously unselected package python3-pip.
#0 98.05 Preparing to unpack .../78-python3-pip_20.0.2-5ubuntu1.8_all.deb ...
#0 98.05 Unpacking python3-pip (20.0.2-5ubuntu1.8) ...
#0 98.08 Selecting previously unselected package python3-psycopg2.
#0 98.08 Preparing to unpack .../79-python3-psycopg2_2.8.4-2_arm64.deb ...
#0 98.08 Unpacking python3-psycopg2 (2.8.4-2) ...
#0 98.10 Selecting previously unselected package python3.8-venv.
#0 98.10 Preparing to unpack .../80-python3.8-venv_3.8.10-0ubuntu1~20.04.7_arm64.deb ...
#0 98.10 Unpacking python3.8-venv (3.8.10-0ubuntu1~20.04.7) ...
#0 98.12 Selecting previously unselected package python3-venv.
#0 98.12 Preparing to unpack .../81-python3-venv_3.8.2-0ubuntu2_arm64.deb ...
#0 98.12 Unpacking python3-venv (3.8.2-0ubuntu2) ...
#0 98.13 Selecting previously unselected package systemctl.
#0 98.13 Preparing to unpack .../82-systemctl_1.4.3424-2_all.deb ...
#0 98.13 Unpacking systemctl (1.4.3424-2) ...
#0 98.16 Setting up libkeyutils1:arm64 (1.6-6ubuntu1.1) ...
#0 98.16 Setting up libpsl5:arm64 (0.21.0-1ubuntu1) ...
#0 98.16 Setting up perl-modules-5.30 (5.30.0-9ubuntu0.3) ...
#0 98.17 Setting up mime-support (3.64ubuntu1) ...
#0 98.18 Setting up libicu66:arm64 (66.1-2ubuntu2.1) ...
#0 98.18 Setting up libbrotli1:arm64 (1.0.7-6ubuntu0.1) ...
#0 98.19 Setting up libsqlite3-0:arm64 (3.31.1-4ubuntu0.5) ...
#0 98.19 Setting up libnghttp2-14:arm64 (1.40.0-1build1) ...
#0 98.19 Setting up linux-libc-dev:arm64 (5.4.0-149.166) ...
#0 98.20 Setting up libjemalloc2:arm64 (5.2.1-1ubuntu1) ...
#0 98.20 Setting up locales (2.31-0ubuntu9.9) ...
#0 98.72 Generating locales (this might take a while)...
#0 98.73 Generation complete.
#0 98.75 Setting up libldap-common (2.4.49+dfsg-2ubuntu1.9) ...
#0 98.75 Setting up libkrb5support0:arm64 (1.17-6ubuntu4.3) ...
#0 98.76 Setting up libsasl2-modules-db:arm64 (2.1.27+dfsg-2ubuntu0.1) ...
#0 98.76 Setting up lua-cjson:arm64 (2.1.0+dfsg-2.1) ...
#0 98.76 Setting up librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build1) ...
#0 98.77 Setting up libatomic1:arm64 (10.3.0-1ubuntu1~20.04) ...
#0 98.77 Setting up ucf (3.0038+nmu1) ...
#0 98.81 Setting up libk5crypto3:arm64 (1.17-6ubuntu4.3) ...
#0 98.82 Setting up lua-bitop:arm64 (1.0.2-5) ...
#0 98.82 Setting up libsasl2-2:arm64 (2.1.27+dfsg-2ubuntu0.1) ...
#0 98.82 Setting up libroken18-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 98.83 Setting up python-apt-common (2.0.1ubuntu0.20.04.1) ...
#0 98.83 Setting up libcrypt-dev:arm64 (1:4.4.10-10ubuntu4) ...
#0 98.83 Setting up liblua5.1-0:arm64 (5.1.5-8.1build4) ...
#0 98.84 Setting up git-man (1:2.25.1-1ubuntu3.11) ...
#0 98.84 Setting up netbase (6.1) ...
#0 98.85 Setting up libkrb5-3:arm64 (1.17-6ubuntu4.3) ...
#0 98.85 Setting up libmpdec2:arm64 (2.4.2-3) ...
#0 98.86 Setting up libc-dev-bin (2.31-0ubuntu9.9) ...
#0 98.86 Setting up openssl (1.1.1f-1ubuntu2.18) ...
#0 98.86 Setting up libbsd0:arm64 (0.10.0-1) ...
#0 98.87 Setting up readline-common (8.0-4) ...
#0 98.87 Setting up libxml2:arm64 (2.9.10+dfsg-5ubuntu0.20.04.6) ...
#0 98.88 Setting up libheimbase1-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 98.88 Setting up libgdbm6:arm64 (1.18.1-5) ...
#0 98.88 Setting up libhiredis0.14:arm64 (0.14.0-6) ...
#0 98.89 Setting up postgresql-client-common (214ubuntu0.1) ...
#0 98.89 Setting up libasn1-8-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 98.89 Setting up libedit2:arm64 (3.1-20191231-1) ...
#0 98.90 Setting up libreadline8:arm64 (8.0-4) ...
#0 98.90 Setting up libhcrypto4-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 98.90 Setting up libllvm10:arm64 (1:10.0.0-4ubuntu1) ...
#0 98.91 Setting up ca-certificates (20211016ubuntu0.20.04.1) ...
#0 99.30 Updating certificates in /etc/ssl/certs...
#0 99.79 124 added, 0 removed; done.
#0 99.80 Setting up libwind0-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 99.80 Setting up ssl-cert (1.0.39) ...
#0 99.91 Setting up redis-tools (5:5.0.7-2ubuntu0.1) ...
#0 99.98 Setting up libgssapi-krb5-2:arm64 (1.17-6ubuntu4.3) ...
#0 99.99 Setting up libgdbm-compat4:arm64 (1.18.1-5) ...
#0 99.99 Setting up libssh-4:arm64 (0.9.3-2ubuntu2.2) ...
#0 99.99 Setting up libxslt1.1:arm64 (1.1.34-4ubuntu0.20.04.1) ...
#0 100.00 Setting up libperl5.30:arm64 (5.30.0-9ubuntu0.3) ...
#0 100.0 Setting up libc6-dev:arm64 (2.31-0ubuntu9.9) ...
#0 100.0 Setting up python-pip-whl (20.0.2-5ubuntu1.8) ...
#0 100.0 Setting up libpython3.8-stdlib:arm64 (3.8.10-0ubuntu1~20.04.7) ...
#0 100.0 Setting up python3.8 (3.8.10-0ubuntu1~20.04.7) ...
#0 100.4 Setting up libpython3-stdlib:arm64 (3.8.2-0ubuntu2) ...
#0 100.4 Setting up libhx509-5-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 100.4 Setting up python3 (3.8.2-0ubuntu2) ...
#0 100.5 Setting up redis-server (5:5.0.7-2ubuntu0.1) ...
#0 100.5 invoke-rc.d: could not determine current runlevel
#0 100.5 invoke-rc.d: policy-rc.d denied execution of start.
#0 100.7 /usr/bin/deb-systemd-helper: error: systemctl preset failed on redis-server.service: No such file or directory
#0 100.7 Setting up python3-wheel (0.34.2-1ubuntu0.1) ...
#0 100.8 Setting up perl (5.30.0-9ubuntu0.3) ...
#0 100.8 Setting up libexpat1-dev:arm64 (2.2.9-1ubuntu0.6) ...
#0 100.8 Setting up libpython3.8:arm64 (3.8.10-0ubuntu1~20.04.7) ...
#0 100.8 Setting up postgresql-common (214ubuntu0.1) ...
#0 101.0 Adding user postgres to group ssl-cert
#0 101.0 
#0 101.0 Creating config file /etc/postgresql-common/createcluster.conf with new version
#0 101.1 Building PostgreSQL dictionaries from installed myspell/hunspell packages...
#0 101.1 Removing obsolete dictionary files:
#0 101.3 /usr/bin/deb-systemd-helper: error: systemctl preset failed on postgresql.service: No such file or directory
#0 101.3 invoke-rc.d: could not determine current runlevel
#0 101.3 invoke-rc.d: policy-rc.d denied execution of start.
#0 101.3 Setting up zlib1g-dev:arm64 (1:1.2.11.dfsg-2ubuntu1.5) ...
#0 101.4 Setting up python3-lib2to3 (3.8.10-0ubuntu1~20.04) ...
#0 101.4 Setting up systemctl (1.4.3424-2) ...
#0 101.4 Setting up libkrb5-26-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 101.4 Setting up python3-pkg-resources (45.2.0-1ubuntu0.1) ...
#0 101.5 Setting up python3-distutils (3.8.10-0ubuntu1~20.04) ...
#0 101.6 Setting up python3-setuptools (45.2.0-1ubuntu0.1) ...
#0 101.7 Setting up python3-apt (2.0.1ubuntu0.20.04.1) ...
#0 101.8 Setting up libheimntlm0-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 101.8 Setting up liberror-perl (0.17029-1) ...
#0 101.8 Setting up libgssapi3-heimdal:arm64 (7.7.0+dfsg-1ubuntu1.4) ...
#0 101.8 Setting up libpython3.8-dev:arm64 (3.8.10-0ubuntu1~20.04.7) ...
#0 101.8 Setting up python3.8-venv (3.8.10-0ubuntu1~20.04.7) ...
#0 101.9 Setting up python3-pip (20.0.2-5ubuntu1.8) ...
#0 102.0 Setting up python3.8-dev (3.8.10-0ubuntu1~20.04.7) ...
#0 102.0 Setting up libpython3-dev:arm64 (3.8.2-0ubuntu2) ...
#0 102.0 Setting up libldap-2.4-2:arm64 (2.4.49+dfsg-2ubuntu1.9) ...
#0 102.0 Setting up libcurl3-gnutls:arm64 (7.68.0-1ubuntu2.18) ...
#0 102.0 Setting up python3-venv (3.8.2-0ubuntu2) ...
#0 102.0 Setting up python3-dev (3.8.2-0ubuntu2) ...
#0 102.0 Setting up git (1:2.25.1-1ubuntu3.11) ...
#0 102.0 Setting up libpq5:arm64 (12.14-0ubuntu0.20.04.1) ...
#0 102.0 Setting up libpq-dev (12.14-0ubuntu0.20.04.1) ...
#0 102.0 Setting up postgresql-client-12 (12.14-0ubuntu0.20.04.1) ...
#0 102.5 update-alternatives: using /usr/share/postgresql/12/man/man1/psql.1.gz to provide /usr/share/man/man1/psql.1.gz (psql.1.gz) in auto mode
#0 102.5 Setting up python3-psycopg2 (2.8.4-2) ...
#0 102.6 Setting up postgresql-12 (12.14-0ubuntu0.20.04.1) ...
#0 102.7 Creating new PostgreSQL cluster 12/main ...
#0 102.7 /usr/lib/postgresql/12/bin/initdb -D /var/lib/postgresql/12/main --auth-local peer --auth-host md5
#0 102.7 The files belonging to this database system will be owned by user "postgres".
#0 102.7 This user must also own the server process.
#0 102.7 
#0 102.7 The database cluster will be initialized with locale "C.UTF-8".
#0 102.7 The default database encoding has accordingly been set to "UTF8".
#0 102.7 The default text search configuration will be set to "english".
#0 102.7 
#0 102.7 Data page checksums are disabled.
#0 102.7 
#0 102.7 fixing permissions on existing directory /var/lib/postgresql/12/main ... ok
#0 102.7 creating subdirectories ... ok
#0 102.7 selecting dynamic shared memory implementation ... posix
#0 102.7 selecting default max_connections ... 100
#0 102.8 selecting default shared_buffers ... 128MB
#0 102.8 selecting default time zone ... Etc/UTC
#0 102.8 creating configuration files ... ok
#0 102.8 running bootstrap script ... ok
#0 102.9 performing post-bootstrap initialization ... ok
#0 103.3 syncing data to disk ... ok
#0 103.8 
#0 103.8 Success. You can now start the database server using:
#0 103.8 
#0 103.8     pg_ctlcluster 12 main start
#0 103.8 
#0 103.8 Ver Cluster Port Status Owner    Data directory              Log file
#0 103.8 12  main    5432 down   postgres /var/lib/postgresql/12/main /var/log/postgresql/postgresql-12-main.log
#0 103.9 update-alternatives: using /usr/share/postgresql/12/man/man1/postmaster.1.gz to provide /usr/share/man/man1/postmaster.1.gz (postmaster.1.gz) in auto mode
#0 103.9 invoke-rc.d: could not determine current runlevel
#0 103.9 invoke-rc.d: policy-rc.d denied execution of start.
#0 103.9 Processing triggers for libc-bin (2.31-0ubuntu9.9) ...
#0 103.9 Processing triggers for ca-certificates (20211016ubuntu0.20.04.1) ...
#0 103.9 Updating certificates in /etc/ssl/certs...
#0 104.3 0 added, 0 removed; done.
#0 104.3 Running hooks in /etc/ca-certificates/update.d...
#0 104.3 done.
#0 105.7 Collecting pip
#0 106.2   Downloading pip-23.1.2-py3-none-any.whl (2.1 MB)
#0 109.9 Collecting setuptools
#0 110.1   Downloading setuptools-67.8.0-py3-none-any.whl (1.1 MB)
#0 111.3 Collecting wheel
#0 111.4   Downloading wheel-0.40.0-py3-none-any.whl (64 kB)
#0 111.5 Installing collected packages: pip, setuptools, wheel
#0 111.5   Attempting uninstall: pip
#0 111.5     Found existing installation: pip 20.0.2
#0 111.5     Not uninstalling pip at /usr/lib/python3/dist-packages, outside environment /usr
#0 111.5     Can't uninstall 'pip'. No files were found to uninstall.
#0 112.1   Attempting uninstall: setuptools
#0 112.1     Found existing installation: setuptools 45.2.0
#0 112.1     Not uninstalling setuptools at /usr/lib/python3/dist-packages, outside environment /usr
#0 112.1     Can't uninstall 'setuptools'. No files were found to uninstall.
#0 112.4   Attempting uninstall: wheel
#0 112.4     Found existing installation: wheel 0.34.2
#0 112.4     Not uninstalling wheel at /usr/lib/python3/dist-packages, outside environment /usr
#0 112.4     Can't uninstall 'wheel'. No files were found to uninstall.
#0 112.4 Successfully installed pip-23.1.2 setuptools-67.8.0 wheel-0.40.0
#0 113.4 Collecting ansible==6.7.0
#0 113.9   Downloading ansible-6.7.0-py3-none-any.whl (42.8 MB)
#0 163.9 Collecting pynautobot==1.4.0
#0 164.1   Downloading pynautobot-1.4.0-py3-none-any.whl (32 kB)
#0 164.3 Collecting pytest==7.3.1
#0 164.4   Downloading pytest-7.3.1-py3-none-any.whl (320 kB)
#0 165.0 Collecting ansible-core~=2.13.7
#0 165.4   Downloading ansible_core-2.13.10-py3-none-any.whl (2.1 MB)
#0 173.3 Collecting requests<3.0.0,>=2.20.0
#0 173.8   Downloading requests-2.31.0-py3-none-any.whl (62 kB)
#0 173.9 Collecting iniconfig
#0 173.9   Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB)
#0 174.2 Collecting packaging
#0 174.3   Downloading packaging-23.1-py3-none-any.whl (48 kB)
#0 174.7 Collecting pluggy<2.0,>=0.12
#0 174.8   Downloading pluggy-1.0.0-py2.py3-none-any.whl (13 kB)
#0 174.9 Collecting exceptiongroup>=1.0.0rc8; python_version < "3.11"
#0 175.2   Downloading exceptiongroup-1.1.1-py3-none-any.whl (14 kB)
#0 175.3 Collecting tomli>=1.0.0; python_version < "3.11"
#0 175.4   Downloading tomli-2.0.1-py3-none-any.whl (12 kB)
#0 175.7 Collecting jinja2>=3.0.0
#0 175.8   Downloading Jinja2-3.1.2-py3-none-any.whl (133 kB)
#0 176.3 Collecting PyYAML>=5.1
#0 176.4   Downloading PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (721 kB)
#0 178.6 Collecting cryptography
#0 178.9   Downloading cryptography-40.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB)
#0 185.2 Collecting resolvelib<0.9.0,>=0.5.3
#0 185.2   Downloading resolvelib-0.8.1-py2.py3-none-any.whl (16 kB)
#0 185.5 Collecting charset-normalizer<4,>=2
#0 185.7   Downloading charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (192 kB)
#0 186.2 Collecting idna<4,>=2.5
#0 186.3   Downloading idna-3.4-py3-none-any.whl (61 kB)
#0 186.5 Collecting urllib3<3,>=1.21.1
#0 186.7   Downloading urllib3-2.0.2-py3-none-any.whl (123 kB)
#0 187.0 Collecting certifi>=2017.4.17
#0 187.2   Downloading certifi-2023.5.7-py3-none-any.whl (156 kB)
#0 187.6 Collecting MarkupSafe>=2.0
#0 188.0   Downloading MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (26 kB)
#0 189.0 Collecting cffi>=1.12
#0 189.1   Downloading cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449 kB)
#0 190.0 Collecting pycparser
#0 190.1   Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB)
#0 190.4 Installing collected packages: MarkupSafe, jinja2, PyYAML, pycparser, cffi, cryptography, packaging, resolvelib, ansible-core, ansible, charset-normalizer, idna, urllib3, certifi, requests, pynautobot, iniconfig, pluggy, exceptiongroup, tomli, pytest
#0 207.4 Successfully installed MarkupSafe-2.1.2 PyYAML-6.0 ansible-6.7.0 ansible-core-2.13.10 certifi-2023.5.7 cffi-1.15.1 charset-normalizer-3.1.0 cryptography-40.0.2 exceptiongroup-1.1.1 idna-3.4 iniconfig-2.0.0 jinja2-3.1.2 packaging-23.1 pluggy-1.0.0 pycparser-2.21 pynautobot-1.4.0 pytest-7.3.1 requests-2.31.0 resolvelib-0.8.1 tomli-2.0.1 urllib3-2.0.2
#0 208.5 Starting galaxy collection install process
#0 208.5 Process install dependency map
#0 210.1 Starting collection install process
#0 210.1 Downloading https://galaxy.ansible.com/download/community-postgresql-2.4.1.tar.gz to /root/.ansible/tmp/ansible-local-5354basyjat_/tmp8e0eeqkv/community-postgresql-2.4.1-bmd7gnmi
#0 211.9 Installing 'community.postgresql:2.4.1' to '/root/.ansible/collections/ansible_collections/community/postgresql'
#0 212.0 community.postgresql:2.4.1 was installed successfully
#0 212.3 [WARNING]: No inventory was parsed, only implicit localhost is available
#0 212.3 [WARNING]: provided hosts list is empty, only localhost is available. Note that
#0 212.3 the implicit localhost does not match 'all'
#0 212.3 
#0 212.3 PLAY [localhost] ***************************************************************
#0 212.4 
#0 212.4 TASK [Gathering Facts] *********************************************************
#0 212.9 ok: [localhost]
#0 213.0 
#0 213.0 TASK [RUN SYSTEMCTL DAEMON-RELOAD] *********************************************
#0 213.2 changed: [localhost]
#0 213.2 
#0 213.2 TASK [CREATE NAUTOBOT GROUP] ***************************************************
#0 213.4 changed: [localhost]
#0 213.4 
#0 213.4 TASK [CREATE NAUTOBOT USER] ****************************************************
#0 213.7 changed: [localhost]
#0 213.7 
#0 213.7 TASK [UPDATE SUPERVISORD.CONF] *************************************************
#0 214.0 changed: [localhost]
#0 214.1 
#0 214.1 TASK [UPDATE UWSGI.INI] ********************************************************
#0 214.3 changed: [localhost]
#0 214.3 
#0 214.3 TASK [UPDATE REDIS.CONF] *******************************************************
#0 214.5 changed: [localhost]
#0 214.5 
#0 214.5 TASK [UPDATE PG_HBA.CONF] ******************************************************
#0 214.7 changed: [localhost]
#0 214.7 
#0 214.7 TASK [RESTART POSTGRESQL] ******************************************************
#0 219.4 changed: [localhost]
#0 219.4 
#0 219.4 TASK [CREATE NAUTOBOT DATABASE] ************************************************
#0 219.8 changed: [localhost]
#0 219.8 
#0 219.8 TASK [CREATE NAUTOBOT DATABASE USER AND GRANT PRIVILEGES TO DATABASE] **********
#0 220.0 changed: [localhost]
#0 220.0 
#0 220.0 TASK [INSTALL NAUTOBOT AND PLUGINS] ********************************************
#0 268.0 changed: [localhost] => (item=nautobot==1.5.19)
#0 293.8 changed: [localhost] => (item=nautobot-device-onboarding)
#0 318.4 failed: [localhost] (item=nautobot-circuit-maintenance) => {"ansible_loop_var": "nautobot_item", "changed": false, "cmd": ["/opt/nautobot/bin/pip3", "install", "nautobot-circuit-maintenance"], "msg": "stdout: Collecting nautobot-circuit-maintenance\n  Downloading nautobot_circuit_maintenance-0.6.2-py3-none-any.whl (96 kB)\nCollecting circuit-maintenance-parser<3.0.0,>=2.0.0\n  Downloading circuit_maintenance_parser-2.2.3-py3-none-any.whl (1.5 MB)\nRequirement already satisfied: markdown!=3.3.5 in /opt/nautobot/lib/python3.8/site-packages (from nautobot-circuit-maintenance) (3.3.7)\nCollecting google-auth-httplib2<0.2.0,>=0.1.0\n  Downloading google_auth_httplib2-0.1.0-py2.py3-none-any.whl (9.3 kB)\nCollecting google-api-python-client<3.0.0,>=2.9.0\n  Downloading google_api_python_client-2.86.0-py2.py3-none-any.whl (11.3 MB)\nCollecting google-oauth<2.0.0,>=1.0.0\n  Downloading google-oauth-1.0.1.tar.gz (5.6 kB)\nCollecting bs4<0.0.2,>=0.0.1\n  Downloading bs4-0.0.1.tar.gz (1.1 kB)\nRequirement already satisfied: nautobot in /opt/nautobot/lib/python3.8/site-packages (from nautobot-circuit-maintenance) (1.5.19)\nCollecting google-auth-oauthlib<0.6.0,>=0.5.0\n  Downloading google_auth_oauthlib-0.5.3-py2.py3-none-any.whl (19 kB)\nCollecting tzwhere<4.0.0,>=3.0.3\n  Downloading tzwhere-3.0.3.tar.gz (23.7 MB)\nCollecting backoff<2.0.0,>=1.11.1\n  Downloading backoff-1.11.1-py2.py3-none-any.whl (13 kB)\nCollecting pydantic[dotenv]>=1.10.4\n  Downloading pydantic-1.10.8-py3-none-any.whl (157 kB)\nRequirement already satisfied: click<9.0,>=7.1 in /opt/nautobot/lib/python3.8/site-packages (from circuit-maintenance-parser<3.0.0,>=2.0.0->nautobot-circuit-maintenance) (8.1.3)\nCollecting icalendar<6.0.0,>=5.0.0\n  Downloading icalendar-5.0.5-py3-none-any.whl (99 kB)\nRequirement already satisfied: lxml<5.0.0,>=4.6.2 in /opt/nautobot/lib/python3.8/site-packages (from circuit-maintenance-parser<3.0.0,>=2.0.0->nautobot-circuit-maintenance) (4.9.2)\nCollecting geopy<3.0.0,>=2.1.0\n  Downloading geopy-2.3.0-py3-none-any.whl (119 kB)\nCollecting chardet<6,>=5\n  Downloading chardet-5.1.0-py3-none-any.whl (199 kB)\nRequirement already satisfied: importlib-metadata>=4.4; python_version < \"3.10\" in /opt/nautobot/lib/python3.8/site-packages (from markdown!=3.3.5->nautobot-circuit-maintenance) (6.6.0)\nRequirement already satisfied: six in /opt/nautobot/lib/python3.8/site-packages (from google-auth-httplib2<0.2.0,>=0.1.0->nautobot-circuit-maintenance) (1.16.0)\nCollecting httplib2>=0.15.0\n  Downloading httplib2-0.22.0-py3-none-any.whl (96 kB)\nCollecting google-auth\n  Downloading google_auth-2.18.1-py2.py3-none-any.whl (178 kB)\nRequirement already satisfied: uritemplate<5,>=3.0.1 in /opt/nautobot/lib/python3.8/site-packages (from google-api-python-client<3.0.0,>=2.9.0->nautobot-circuit-maintenance) (4.1.1)\nCollecting google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5\n  Downloading google_api_core-2.11.0-py3-none-any.whl (120 kB)\nCollecting pyopenssl>=0.11\n  Downloading pyOpenSSL-23.1.1-py3-none-any.whl (57 kB)\nRequirement already satisfied: requests in /opt/nautobot/lib/python3.8/site-packages (from google-oauth<2.0.0,>=1.0.0->nautobot-circuit-maintenance) (2.31.0)\nCollecting beautifulsoup4\n  Downloading beautifulsoup4-4.12.2-py3-none-any.whl (142 kB)\nRequirement already satisfied: django-mptt<0.15.0,>=0.14.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (0.14.0)\nRequirement already satisfied: django-db-file-storage<0.6.0,>=0.5.5 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (0.5.5)\nRequirement already satisfied: Django<3.3.0,>=3.2.19 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.2.19)\nRequirement already satisfied: pyuwsgi<2.1.0,>=2.0.21 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.0.21)\nRequirement already satisfied: django-constance[database]<2.10.0,>=2.9.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.9.1)\nRequirement already satisfied: django-extensions<3.3.0,>=3.2.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.2.1)\nRequirement already satisfied: psycopg2-binary<2.10.0,>=2.9.6 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.9.6)\nRequirement already satisfied: netutils<2.0.0,>=1.4.1 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (1.4.1)\nRequirement already satisfied: django-rq<2.6.0,>=2.5.1 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.5.1)\nRequirement already satisfied: django-tables2<2.5.0,>=2.4.1 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.4.1)\nRequirement already satisfied: jsonschema<4.8.0,>=4.7.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (4.7.2)\nRequirement already satisfied: django-jinja<2.11.0,>=2.10.2 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.10.2)\nRequirement already satisfied: Jinja2<3.2.0,>=3.1.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.1.2)\nRequirement already satisfied: GitPython<3.2.0,>=3.1.31 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.1.31)\nRequirement already satisfied: django-cors-headers<3.14.0,>=3.13.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.13.0)\nRequirement already satisfied: django-redis<5.3.0,>=5.2.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (5.2.0)\nRequirement already satisfied: django-tree-queries<0.12,>=0.11 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (0.11.0)\nRequirement already satisfied: drf-yasg[validation]<2.0.0,>=1.20.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (1.21.5)\nRequirement already satisfied: prometheus-client<0.15.0,>=0.14.1 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (0.14.1)\nRequirement already satisfied: social-auth-app-django<5.1.0,>=5.0.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (5.0.0)\nRequirement already satisfied: django-cryptography<1.1,>=1.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (1.0)\nRequirement already satisfied: django-filter<21.2,>=21.1 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (21.1)\nRequirement already satisfied: svgwrite<1.5.0,>=1.4.2 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (1.4.3)\nRequirement already satisfied: django-prometheus<2.3.0,>=2.2.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.2.0)\nRequirement already satisfied: django-health-check<3.17.0,>=3.16.5 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.16.7)\nRequirement already satisfied: django-taggit<3.1.0,>=3.0.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.0.0)\nRequirement already satisfied: graphene-django-optimizer<0.9.0,>=0.8.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (0.8.0)\nRequirement already satisfied: django-timezone-field<4.2.0,>=4.1.2 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (4.1.2)\nRequirement already satisfied: drf-spectacular[sidecar]<0.25.0,>=0.24.2 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (0.24.2)\nRequirement already satisfied: pycryptodome<3.14.0,>=3.13.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.13.0)\nRequirement already satisfied: djangorestframework<3.15.0,>=3.14.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (3.14.0)\nRequirement already satisfied: django-celery-beat<2.3.0,>=2.2.1 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.2.1)\nRequirement already satisfied: PyYAML<6.1,>=6.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (6.0)\nRequirement already satisfied: netaddr<0.9.0,>=0.8.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (0.8.0)\nRequirement already satisfied: django-ajax-tables<1.2.0,>=1.1.1 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (1.1.1)\nRequirement already satisfied: django-cacheops<6.1,>=6.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (6.0)\nRequirement already satisfied: django-webserver<1.3.0,>=1.2.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (1.2.0)\nRequirement already satisfied: packaging<23.1,>=23.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (23.0)\nRequirement already satisfied: celery<5.3.0,>=5.2.7 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (5.2.7)\nRequirement already satisfied: Pillow<9.4.0,>=9.3.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (9.3.0)\nRequirement already satisfied: graphene-django<2.16.0,>=2.15.0 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.15.0)\nRequirement already satisfied: MarkupSafe<2.2.0,>=2.1.1 in /opt/nautobot/lib/python3.8/site-packages (from nautobot->nautobot-circuit-maintenance) (2.1.2)\nRequirement already satisfied: requests-oauthlib>=0.7.0 in /opt/nautobot/lib/python3.8/site-packages (from google-auth-oauthlib<0.6.0,>=0.5.0->nautobot-circuit-maintenance) (1.3.1)\nCollecting shapely\n  Downloading shapely-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB)\nRequirement already satisfied: typing-extensions>=4.2.0 in /opt/nautobot/lib/python3.8/site-packages (from pydantic[dotenv]>=1.10.4->circuit-maintenance-parser<3.0.0,>=2.0.0->nautobot-circuit-maintenance) (4.6.1)\nCollecting python-dotenv>=0.10.4; extra == \"dotenv\"\n  Downloading python_dotenv-1.0.0-py3-none-any.whl (19 kB)\nCollecting backports.zoneinfo; python_version == \"3.7\" or python_version == \"3.8\"\n  Downloading backports.zoneinfo-0.2.1.tar.gz (74 kB)\n  Installing build dependencies: started\n  Installing build dependencies: finished with status 'done'\n  Getting requirements to build wheel: started\n  Getting requirements to build wheel: finished with status 'done'\n    Preparing wheel metadata: started\n    Preparing wheel metadata: finished with status 'done'\nRequirement already satisfied: python-dateutil in /opt/nautobot/lib/python3.8/site-packages (from icalendar<6.0.0,>=5.0.0->circuit-maintenance-parser<3.0.0,>=2.0.0->nautobot-circuit-maintenance) (2.8.2)\nRequirement already satisfied: pytz in /opt/nautobot/lib/python3.8/site-packages (from icalendar<6.0.0,>=5.0.0->circuit-maintenance-parser<3.0.0,>=2.0.0->nautobot-circuit-maintenance) (2023.3)\nCollecting geographiclib<3,>=1.52\n  Downloading geographiclib-2.0-py3-none-any.whl (40 kB)\nRequirement already satisfied: zipp>=0.5 in /opt/nautobot/lib/python3.8/site-packages (from importlib-metadata>=4.4; python_version < \"3.10\"->markdown!=3.3.5->nautobot-circuit-maintenance) (3.15.0)\nRequirement already satisfied: pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2; python_version > \"3.0\" in /opt/nautobot/lib/python3.8/site-packages (from httplib2>=0.15.0->google-auth-httplib2<0.2.0,>=0.1.0->nautobot-circuit-maintenance) (3.0.9)\nCollecting urllib3<2.0\n  Downloading urllib3-1.26.16-py2.py3-none-any.whl (143 kB)\nCollecting pyasn1-modules>=0.2.1\n  Downloading pyasn1_modules-0.3.0-py2.py3-none-any.whl (181 kB)\nCollecting cachetools<6.0,>=2.0.0\n  Downloading cachetools-5.3.0-py3-none-any.whl (9.3 kB)\nCollecting rsa<5,>=3.1.4; python_version >= \"3.6\"\n  Downloading rsa-4.9-py3-none-any.whl (34 kB)\nCollecting protobuf!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0dev,>=3.19.5\n  Downloading protobuf-4.23.1-cp37-abi3-manylinux2014_aarch64.whl (303 kB)\nCollecting googleapis-common-protos<2.0dev,>=1.56.2\n  Downloading googleapis_common_protos-1.59.0-py2.py3-none-any.whl (223 kB)\nRequirement already satisfied: cryptography<41,>=38.0.0 in /opt/nautobot/lib/python3.8/site-packages (from pyopenssl>=0.11->google-oauth<2.0.0,>=1.0.0->nautobot-circuit-maintenance) (40.0.2)\nRequirement already satisfied: charset-normalizer<4,>=2 in /opt/nautobot/lib/python3.8/site-packages (from requests->google-oauth<2.0.0,>=1.0.0->nautobot-circuit-maintenance) (3.1.0)\nRequirement already satisfied: idna<4,>=2.5 in /opt/nautobot/lib/python3.8/site-packages (from requests->google-oauth<2.0.0,>=1.0.0->nautobot-circuit-maintenance) (3.4)\nRequirement already satisfied: certifi>=2017.4.17 in /opt/nautobot/lib/python3.8/site-packages (from requests->google-oauth<2.0.0,>=1.0.0->nautobot-circuit-maintenance) (2023.5.7)\nCollecting soupsieve>1.2\n  Downloading soupsieve-2.4.1-py3-none-any.whl (36 kB)\nRequirement already satisfied: django-js-asset in /opt/nautobot/lib/python3.8/site-packages (from django-mptt<0.15.0,>=0.14.0->nautobot->nautobot-circuit-maintenance) (2.0.0)\nRequirement already satisfied: asgiref<4,>=3.3.2 in /opt/nautobot/lib/python3.8/site-packages (from Django<3.3.0,>=3.2.19->nautobot->nautobot-circuit-maintenance) (3.7.1)\nRequirement already satisfied: sqlparse>=0.2.2 in /opt/nautobot/lib/python3.8/site-packages (from Django<3.3.0,>=3.2.19->nautobot->nautobot-circuit-maintenance) (0.4.4)\nRequirement already satisfied: django-picklefield; extra == \"database\" in /opt/nautobot/lib/python3.8/site-packages (from django-constance[database]<2.10.0,>=2.9.0->nautobot->nautobot-circuit-maintenance) (3.1)\nRequirement already satisfied: rq>=1.2 in /opt/nautobot/lib/python3.8/site-packages (from django-rq<2.6.0,>=2.5.1->nautobot->nautobot-circuit-maintenance) (1.14.1)\nRequirement already satisfied: redis>=3 in /opt/nautobot/lib/python3.8/site-packages (from django-rq<2.6.0,>=2.5.1->nautobot->nautobot-circuit-maintenance) (4.5.5)\nRequirement already satisfied: attrs>=17.4.0 in /opt/nautobot/lib/python3.8/site-packages (from jsonschema<4.8.0,>=4.7.0->nautobot->nautobot-circuit-maintenance) (23.1.0)\nRequirement already satisfied: importlib-resources>=1.4.0; python_version < \"3.9\" in /opt/nautobot/lib/python3.8/site-packages (from jsonschema<4.8.0,>=4.7.0->nautobot->nautobot-circuit-maintenance) (5.12.0)\nRequirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/nautobot/lib/python3.8/site-packages (from jsonschema<4.8.0,>=4.7.0->nautobot->nautobot-circuit-maintenance) (0.19.3)\nRequirement already satisfied: gitdb<5,>=4.0.1 in /opt/nautobot/lib/python3.8/site-packages (from GitPython<3.2.0,>=3.1.31->nautobot->nautobot-circuit-maintenance) (4.0.10)\nRequirement already satisfied: ruamel.yaml>=0.16.13 in /opt/nautobot/lib/python3.8/site-packages (from drf-yasg[validation]<2.0.0,>=1.20.0->nautobot->nautobot-circuit-maintenance) (0.17.26)\nRequirement already satisfied: coreapi>=2.3.3 in /opt/nautobot/lib/python3.8/site-packages (from drf-yasg[validation]<2.0.0,>=1.20.0->nautobot->nautobot-circuit-maintenance) (2.3.3)\nRequirement already satisfied: coreschema>=0.0.4 in /opt/nautobot/lib/python3.8/site-packages (from drf-yasg[validation]<2.0.0,>=1.20.0->nautobot->nautobot-circuit-maintenance) (0.0.4)\nRequirement already satisfied: inflection>=0.3.1 in /opt/nautobot/lib/python3.8/site-packages (from drf-yasg[validation]<2.0.0,>=1.20.0->nautobot->nautobot-circuit-maintenance) (0.5.1)\nRequirement already satisfied: swagger-spec-validator>=2.1.0; extra == \"validation\" in /opt/nautobot/lib/python3.8/site-packages (from drf-yasg[validation]<2.0.0,>=1.20.0->nautobot->nautobot-circuit-maintenance) (3.0.3)\nRequirement already satisfied: social-auth-core>=4.1.0 in /opt/nautobot/lib/python3.8/site-packages (from social-auth-app-django<5.1.0,>=5.0.0->nautobot->nautobot-circuit-maintenance) (4.4.2)\nRequirement already satisfied: django-appconf in /opt/nautobot/lib/python3.8/site-packages (from django-cryptography<1.1,>=1.0->nautobot->nautobot-circuit-maintenance) (1.0.5)\nRequirement already satisfied: drf-spectacular-sidecar; extra == \"sidecar\" in /opt/nautobot/lib/python3.8/site-packages (from drf-spectacular[sidecar]<0.25.0,>=0.24.2->nautobot->nautobot-circuit-maintenance) (2023.5.1)\nRequirement already satisfied: python-crontab>=2.3.4 in /opt/nautobot/lib/python3.8/site-packages (from django-celery-beat<2.3.0,>=2.2.1->nautobot->nautobot-circuit-maintenance) (2.7.1)\nRequirement already satisfied: funcy<2.0,>=1.8 in /opt/nautobot/lib/python3.8/site-packages (from django-cacheops<6.1,>=6.0->nautobot->nautobot-circuit-maintenance) (1.18)\nRequirement already satisfied: kombu<6.0,>=5.2.3 in /opt/nautobot/lib/python3.8/site-packages (from celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (5.2.4)\nRequirement already satisfied: click-didyoumean>=0.0.3 in /opt/nautobot/lib/python3.8/site-packages (from celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (0.3.0)\nRequirement already satisfied: click-repl>=0.2.0 in /opt/nautobot/lib/python3.8/site-packages (from celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (0.2.0)\nRequirement already satisfied: billiard<4.0,>=3.6.4.0 in /opt/nautobot/lib/python3.8/site-packages (from celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (3.6.4.0)\nRequirement already satisfied: click-plugins>=1.1.1 in /opt/nautobot/lib/python3.8/site-packages (from celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (1.1.1)\nRequirement already satisfied: vine<6.0,>=5.0.0 in /opt/nautobot/lib/python3.8/site-packages (from celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (5.0.0)\nRequirement already satisfied: promise>=2.1 in /opt/nautobot/lib/python3.8/site-packages (from graphene-django<2.16.0,>=2.15.0->nautobot->nautobot-circuit-maintenance) (2.3)\nRequirement already satisfied: graphql-core<3,>=2.1.0 in /opt/nautobot/lib/python3.8/site-packages (from graphene-django<2.16.0,>=2.15.0->nautobot->nautobot-circuit-maintenance) (2.3.2)\nRequirement already satisfied: singledispatch>=3.4.0.3 in /opt/nautobot/lib/python3.8/site-packages (from graphene-django<2.16.0,>=2.15.0->nautobot->nautobot-circuit-maintenance) (4.0.0)\nRequirement already satisfied: graphene<3,>=2.1.7 in /opt/nautobot/lib/python3.8/site-packages (from graphene-django<2.16.0,>=2.15.0->nautobot->nautobot-circuit-maintenance) (2.1.9)\nRequirement already satisfied: text-unidecode in /opt/nautobot/lib/python3.8/site-packages (from graphene-django<2.16.0,>=2.15.0->nautobot->nautobot-circuit-maintenance) (1.3)\nRequirement already satisfied: oauthlib>=3.0.0 in /opt/nautobot/lib/python3.8/site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.6.0,>=0.5.0->nautobot-circuit-maintenance) (3.2.2)\nCollecting numpy>=1.14\n  Downloading numpy-1.24.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (14.0 MB)\nCollecting pyasn1<0.6.0,>=0.4.6\n  Downloading pyasn1-0.5.0-py2.py3-none-any.whl (83 kB)\nRequirement already satisfied: cffi>=1.12 in /opt/nautobot/lib/python3.8/site-packages (from cryptography<41,>=38.0.0->pyopenssl>=0.11->google-oauth<2.0.0,>=1.0.0->nautobot-circuit-maintenance) (1.15.1)\nRequirement already satisfied: async-timeout>=4.0.2; python_full_version <= \"3.11.2\" in /opt/nautobot/lib/python3.8/site-packages (from redis>=3->django-rq<2.6.0,>=2.5.1->nautobot->nautobot-circuit-maintenance) (4.0.2)\nRequirement already satisfied: smmap<6,>=3.0.1 in /opt/nautobot/lib/python3.8/site-packages (from gitdb<5,>=4.0.1->GitPython<3.2.0,>=3.1.31->nautobot->nautobot-circuit-maintenance) (5.0.0)\nRequirement already satisfied: ruamel.yaml.clib>=0.2.7; platform_python_implementation == \"CPython\" and python_version < \"3.12\" in /opt/nautobot/lib/python3.8/site-packages (from ruamel.yaml>=0.16.13->drf-yasg[validation]<2.0.0,>=1.20.0->nautobot->nautobot-circuit-maintenance) (0.2.7)\nRequirement already satisfied: itypes in /opt/nautobot/lib/python3.8/site-packages (from coreapi>=2.3.3->drf-yasg[validation]<2.0.0,>=1.20.0->nautobot->nautobot-circuit-maintenance) (1.2.0)\nRequirement already satisfied: python3-openid>=3.0.10 in /opt/nautobot/lib/python3.8/site-packages (from social-auth-core>=4.1.0->social-auth-app-django<5.1.0,>=5.0.0->nautobot->nautobot-circuit-maintenance) (3.2.0)\nRequirement already satisfied: defusedxml>=0.5.0rc1 in /opt/nautobot/lib/python3.8/site-packages (from social-auth-core>=4.1.0->social-auth-app-django<5.1.0,>=5.0.0->nautobot->nautobot-circuit-maintenance) (0.7.1)\nRequirement already satisfied: PyJWT>=2.0.0 in /opt/nautobot/lib/python3.8/site-packages (from social-auth-core>=4.1.0->social-auth-app-django<5.1.0,>=5.0.0->nautobot->nautobot-circuit-maintenance) (2.7.0)\nRequirement already satisfied: amqp<6.0.0,>=5.0.9 in /opt/nautobot/lib/python3.8/site-packages (from kombu<6.0,>=5.2.3->celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (5.1.1)\nRequirement already satisfied: prompt-toolkit in /opt/nautobot/lib/python3.8/site-packages (from click-repl>=0.2.0->celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (3.0.38)\nRequirement already satisfied: rx<2,>=1.6 in /opt/nautobot/lib/python3.8/site-packages (from graphql-core<3,>=2.1.0->graphene-django<2.16.0,>=2.15.0->nautobot->nautobot-circuit-maintenance) (1.6.3)\nRequirement already satisfied: graphql-relay<3,>=2 in /opt/nautobot/lib/python3.8/site-packages (from graphene<3,>=2.1.7->graphene-django<2.16.0,>=2.15.0->nautobot->nautobot-circuit-maintenance) (2.0.1)\nRequirement already satisfied: aniso8601<=7,>=3 in /opt/nautobot/lib/python3.8/site-packages (from graphene<3,>=2.1.7->graphene-django<2.16.0,>=2.15.0->nautobot->nautobot-circuit-maintenance) (7.0.0)\nRequirement already satisfied: pycparser in /opt/nautobot/lib/python3.8/site-packages (from cffi>=1.12->cryptography<41,>=38.0.0->pyopenssl>=0.11->google-oauth<2.0.0,>=1.0.0->nautobot-circuit-maintenance) (2.21)\nRequirement already satisfied: wcwidth in /opt/nautobot/lib/python3.8/site-packages (from prompt-toolkit->click-repl>=0.2.0->celery<5.3.0,>=5.2.7->nautobot->nautobot-circuit-maintenance) (0.2.6)\nBuilding wheels for collected packages: google-oauth, bs4, tzwhere, backports.zoneinfo\n  Building wheel for google-oauth (setup.py): started\n  Building wheel for google-oauth (setup.py): finished with status 'error'\n  Running setup.py clean for google-oauth\n  Building wheel for bs4 (setup.py): started\n  Building wheel for bs4 (setup.py): finished with status 'error'\n  Running setup.py clean for bs4\n  Building wheel for tzwhere (setup.py): started\n  Building wheel for tzwhere (setup.py): finished with status 'error'\n  Running setup.py clean for tzwhere\n  Building wheel for backports.zoneinfo (PEP 517): started\n  Building wheel for backports.zoneinfo (PEP 517): finished with status 'error'\nFailed to build google-oauth bs4 tzwhere backports.zoneinfo\n\n:stderr:   ERROR: Command errored out with exit status 1:\n   command: /opt/nautobot/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '\"'\"'/tmp/pip-install-kzc10fmz/google-oauth/setup.py'\"'\"'; __file__='\"'\"'/tmp/pip-install-kzc10fmz/google-oauth/setup.py'\"'\"';f=getattr(tokenize, '\"'\"'open'\"'\"', open)(__file__);code=f.read().replace('\"'\"'\\r\\n'\"'\"', '\"'\"'\\n'\"'\"');f.close();exec(compile(code, __file__, '\"'\"'exec'\"'\"'))' bdist_wheel -d /tmp/pip-wheel-u6sdj19_\n       cwd: /tmp/pip-install-kzc10fmz/google-oauth/\n  Complete output (7 lines):\n  Warning: 'classifiers' should be a list, got type 'tuple'\n  usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]\n     or: setup.py --help [cmd1 cmd2 ...]\n     or: setup.py --help-commands\n     or: setup.py cmd --help\n  \n  error: invalid command 'bdist_wheel'\n  ----------------------------------------\n  ERROR: Failed building wheel for google-oauth\n  ERROR: Command errored out with exit status 1:\n   command: /opt/nautobot/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '\"'\"'/tmp/pip-install-kzc10fmz/bs4/setup.py'\"'\"'; __file__='\"'\"'/tmp/pip-install-kzc10fmz/bs4/setup.py'\"'\"';f=getattr(tokenize, '\"'\"'open'\"'\"', open)(__file__);code=f.read().replace('\"'\"'\\r\\n'\"'\"', '\"'\"'\\n'\"'\"');f.close();exec(compile(code, __file__, '\"'\"'exec'\"'\"'))' bdist_wheel -d /tmp/pip-wheel-_8v5nxff\n       cwd: /tmp/pip-install-kzc10fmz/bs4/\n  Complete output (6 lines):\n  usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]\n     or: setup.py --help [cmd1 cmd2 ...]\n     or: setup.py --help-commands\n     or: setup.py cmd --help\n  \n  error: invalid command 'bdist_wheel'\n  ----------------------------------------\n  ERROR: Failed building wheel for bs4\n  ERROR: Command errored out with exit status 1:\n   command: /opt/nautobot/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '\"'\"'/tmp/pip-install-kzc10fmz/tzwhere/setup.py'\"'\"'; __file__='\"'\"'/tmp/pip-install-kzc10fmz/tzwhere/setup.py'\"'\"';f=getattr(tokenize, '\"'\"'open'\"'\"', open)(__file__);code=f.read().replace('\"'\"'\\r\\n'\"'\"', '\"'\"'\\n'\"'\"');f.close();exec(compile(code, __file__, '\"'\"'exec'\"'\"'))' bdist_wheel -d /tmp/pip-wheel-bs9vdix5\n       cwd: /tmp/pip-install-kzc10fmz/tzwhere/\n  Complete output (6 lines):\n  usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]\n     or: setup.py --help [cmd1 cmd2 ...]\n     or: setup.py --help-commands\n     or: setup.py cmd --help\n  \n  error: invalid command 'bdist_wheel'\n  ----------------------------------------\n  ERROR: Failed building wheel for tzwhere\n  ERROR: Command errored out with exit status 1:\n   command: /opt/nautobot/bin/python3 /tmp/tmpe8lsyjo5 build_wheel /tmp/tmp9uhmlbn7\n       cwd: /tmp/pip-install-kzc10fmz/backports.zoneinfo\n  Complete output (49 lines):\n  running bdist_wheel\n  running build\n  running build_py\n  creating build\n  creating build/lib.linux-aarch64-cpython-38\n  creating build/lib.linux-aarch64-cpython-38/backports\n  copying src/backports/__init__.py -> build/lib.linux-aarch64-cpython-38/backports\n  creating build/lib.linux-aarch64-cpython-38/backports/zoneinfo\n  copying src/backports/zoneinfo/_zoneinfo.py -> build/lib.linux-aarch64-cpython-38/backports/zoneinfo\n  copying src/backports/zoneinfo/_version.py -> build/lib.linux-aarch64-cpython-38/backports/zoneinfo\n  copying src/backports/zoneinfo/_tzpath.py -> build/lib.linux-aarch64-cpython-38/backports/zoneinfo\n  copying src/backports/zoneinfo/_common.py -> build/lib.linux-aarch64-cpython-38/backports/zoneinfo\n  copying src/backports/zoneinfo/__init__.py -> build/lib.linux-aarch64-cpython-38/backports/zoneinfo\n  running egg_info\n  writing src/backports.zoneinfo.egg-info/PKG-INFO\n  writing dependency_links to src/backports.zoneinfo.egg-info/dependency_links.txt\n  writing requirements to src/backports.zoneinfo.egg-info/requires.txt\n  writing top-level names to src/backports.zoneinfo.egg-info/top_level.txt\n  reading manifest file 'src/backports.zoneinfo.egg-info/SOURCES.txt'\n  reading manifest template 'MANIFEST.in'\n  /tmp/pip-build-env-oa37s8ya/overlay/lib/python3.8/site-packages/setuptools/config/setupcfg.py:293: _DeprecatedConfig: Deprecated config in `setup.cfg`\n  !!\n  \n          ********************************************************************************\n          The license_file parameter is deprecated, use license_files instead.\n  \n          By 2023-Oct-30, you need to update your project and remove deprecated calls\n          or your builds will no longer be supported.\n  \n          See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details.\n          ********************************************************************************\n  \n  !!\n    parsed = self.parsers.get(option_name, lambda x: x)(value)\n  warning: no files found matching '*.png' under directory 'docs'\n  warning: no files found matching '*.svg' under directory 'docs'\n  no previously-included directories found matching 'docs/_build'\n  no previously-included directories found matching 'docs/_output'\n  adding license file 'LICENSE'\n  adding license file 'licenses/LICENSE_APACHE'\n  writing manifest file 'src/backports.zoneinfo.egg-info/SOURCES.txt'\n  copying src/backports/zoneinfo/__init__.pyi -> build/lib.linux-aarch64-cpython-38/backports/zoneinfo\n  copying src/backports/zoneinfo/py.typed -> build/lib.linux-aarch64-cpython-38/backports/zoneinfo\n  running build_ext\n  building 'backports.zoneinfo._czoneinfo' extension\n  creating build/temp.linux-aarch64-cpython-38\n  creating build/temp.linux-aarch64-cpython-38/lib\n  aarch64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/opt/nautobot/include -I/usr/include/python3.8 -c lib/zoneinfo_module.c -o build/temp.linux-aarch64-cpython-38/lib/zoneinfo_module.o -std=c99\n  error: command 'aarch64-linux-gnu-gcc' failed: No such file or directory\n  ----------------------------------------\n  ERROR: Failed building wheel for backports.zoneinfo\nERROR: Could not build wheels for backports.zoneinfo which use PEP 517 and cannot be installed directly\n", "nautobot_item": "nautobot-circuit-maintenance"}
#0 320.5 changed: [localhost] => (item=nautobot-data-validation-engine)
#0 322.1 changed: [localhost] => (item=nautobot-capacity-metrics)
#0 334.7 changed: [localhost] => (item=nautobot-golden-config)
#0 335.9 ok: [localhost] => (item=nautobot-plugin-nornir)
#0 338.6 changed: [localhost] => (item=nautobot-ssot)
#0 340.7 changed: [localhost] => (item=supervisor)
#0 340.7 
#0 340.7 PLAY RECAP *********************************************************************
#0 340.7 localhost                  : ok=11   changed=10   unreachable=0    failed=1    skipped=0    rescued=0    ignored=0   
#0 340.7 
------
Dockerfile:34
--------------------
  33 |     # hadolint ignore=DL3008,DL3013
  34 | >>> RUN apt-get update -y && \
  35 | >>>     apt-get install -y tzdata --no-install-recommends && \
  36 | >>>     ln -fs /usr/share/zoneinfo/UTC /etc/localtime && \
  37 | >>>     dpkg-reconfigure -f noninteractive tzdata && \
  38 | >>>     apt-get install -y python3 python3-psycopg2 python3-pip \
  39 | >>>       python3-venv python3-dev python3-apt postgresql-12 \
  40 | >>>       libpq-dev redis-server systemctl git --no-install-recommends && \
  41 | >>>     pip3 install --no-cache-dir pip setuptools wheel --upgrade && \
  42 | >>>     pip3 install --no-cache-dir --requirement ./templates/requirements.txt && \
  43 | >>>     ansible-galaxy collection install community.postgresql && \
  44 | >>>     ansible-playbook pb_nautobot_install.yml && \
  45 | >>>     pip3 uninstall -y ansible && \
  46 | >>>     apt-get clean && \
  47 | >>>     rm -rf /var/lib/apt/lists/*
  48 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c apt-get update -y &&     apt-get install -y tzdata --no-install-recommends &&     ln -fs /usr/share/zoneinfo/UTC /etc/localtime &&     dpkg-reconfigure -f noninteractive tzdata &&     apt-get install -y python3 python3-psycopg2 python3-pip       python3-venv python3-dev python3-apt postgresql-12       libpq-dev redis-server systemctl git --no-install-recommends &&     pip3 install --no-cache-dir pip setuptools wheel --upgrade &&     pip3 install --no-cache-dir --requirement ./templates/requirements.txt &&     ansible-galaxy collection install community.postgresql &&     ansible-playbook pb_nautobot_install.yml &&     pip3 uninstall -y ansible &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 2
jtdub commented 1 year ago

@nvallepalli1 #74 should resolve the issue of building on Apple Architecture. I was able to build an image with my M1 MBP with the updated image.

nvallepalli1 commented 1 year ago

@jtdub Using the ubuntu 22.04 branch fixed the issue. Thank you!