Netbox

Overview

This flavour contains netbox, a solution for modeling and documenting modern networks, including rack management, IPAM, and more.

It serves as a source of truth for your network.

This image is dependent on external postgresql, a dedicated redis pot image, and consul pot image.

The flavour includes a local consul agent instance to be available that it can connect to (see configuration below). You can e.g. use the consul pot flavour on this site to run consul. You can also connect to this host and service consul restart manually.

Preparation

You must prepare a postgresql server beforehand by creating the user and database with correct permissions:

sudo -u postgres psql -c "CREATE USER netbox with encrypted password 'YOUR-PASSWORD' CREATEDB;"
sudo -u postgres psql -c "CREATE DATABASE netbox TEMPLATE template0 ENCODING 'UTF8';"
sudo -u postgres psql -c "ALTER DATABASE netbox OWNER TO netbox;"
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE netbox TO netbox;"
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON SCHEMA public TO netbox;"

You will also need a redis pot jail dedicated to netbox, as two databases are used, which may cause problems in a redis setup shared with other applications.

Installation

  • Create a ZFS data set on the parent system beforehand
    zfs create -o mountpoint=/mnt/netdata zroot/netbox
    
  • Create your local jail from the image or the flavour files.
  • Clone the local jail
  • Mount in the ZFS data set you created
    pot mount-in -p <jailname> -m /mnt -d /mnt/netbox
    
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
      -E DATACENTER=<datacentername> \
      -E NODENAME=<nodename> \
      -E IP=<IP address of this system> \
      -E CONSULSERVERS="<comma-deliminated list of consul servers>" \
      -E GOSSIPKEY=<32 byte Base64 key from consul keygen> \
      -E DOMAIN=<FQDN for Allowed_Hosts parameter> \
      -E DBHOST=<IP of postgresql instance> \
      -E DBNAME=<database name> \
      -E DBUSER=<database username> \
      -E DBPASSWORD=<database password> \
      -E REDISHOST=<IP of dedicated redis instance> \
      -E MAILSERVER=<FQDN or IP of SMTP server> \
      -E MAILUSERNAME=<SMTP username> \
      -E MAILPASSWORD=<SMTP password> \
      -E FROMMAIL=<from address to use for SMTP account> \
      -E ADMINNAME=<name of netbox administrator account> \
      -E ADMINEMAIL=<email address to receive notices> \
      -E ADMINPASSWORD=<password for netbox superuser> \
      [ -E DBPORT=<postgresql port> ] \
      [ -E REDISPORT=<redis port> ] \
      [ -E MAILPORT=<SMTP port> ] \
      [ -E PVTCERT=<any value enables self-signed SSL certificate> ] \
      [ -E CERTEMAIL=<email address for acme.sh certificate registration> ] \
      [ -E REMOTELOG=<IP address> ]
    
  • Start the jail

Required Paramaters

The DATACENTER parameter defines a common datacenter.

The NODENAME parameter defines the name of this node.

The IP parameter is the IP address which will be used to access services.

The CONSULSERVERS parameter is a comma-deliminated list of IP addresses for the consul server or cluster. Do not include spaces!

e.g. CONSULSERVERS="10.0.0.2" or CONSULSERVERS="10.0.0.2,10.0.0.3,10.0.0.4,10.0.0.5,10.0.0.6"

The GOSSIPKEY parameter is the gossip encryption key for consul agent and must be configured separately with consul host.

The DOMAIN parameter is the FQDN of the frontend, as configured in host haproxy setup. This will go into the ALLOWED_HOSTS parameter for netbox.

The DBHOST parameter is the IP address or hostname of the postgresql server.

The DBNAME parameter is the database name on the postgresql server.

The DBUSER and DBPASSWORD parameters are the credentials to access the postgresql server.

The REDISHOST parameter is the IP address of a dedicated redis pot jail. Two databases are used, where it’s not suitable to use a redis instance shared with other applications.

The MAILSERVER parameter is for the FQDN or IP address of your SMTP server.

The MAILUSERNAME and MAILPASSWORD parameters are the credentials for the SMTP server.

The FROMMAIL parameter is the sender address to use for the SMTP server.

The ADMINNAME parameter is the name of the netbox superuser account. It could be a user, or Administrator.

The ADMINEMAIL parameter is the email address of the superuser account, also used for system notifications.

The ADMINPASSWORD parameter is the password for the superuser account.

Optional Parameters

DBPORT is an optional parameter that can be set if the default database port differs from postgresql default of 5432.

MAILPORT is an optional parameter that can be set if the default SMTP port differs from port 25.

REDISPORT is an optional parameter that can be set if the default redis port differs from port 6379.

PVTCERT is an optional parameter to make use of self-signed SSL certificates instead of acme.sh for registation. Use this if your frontend proxy does SSL already.

CERTEMAIL is an optional parameter to set a custom email address for acme.sh certificate registrations. If not set, ADMINEMAIL is used instead.

The REMOTELOG parameter is the IP address of a destination syslog-ng server, such as with the loki flavour, or beast-of-argh flavour.

Usage

TBA, Netbox is a “source of truth” for your network, with lots of configurable information, and IPAM for managing IP address allocations.

Login with your configured superuser credentials and provision a site, add a rack, add manufacturers, device types, then add devices in the rack.

Make sure you have pictures of the front and back of every server and network device to upload for the device entries.

Add additional users to assist with the task of documenting your infrastructure.

Getting Started

How To Use The Ready-Made Image

FreeBSD 14.2:
pot import -p netbox-amd64-14_2 -t 0.1.2 -U https://potluck.honeyguide.net/netbox

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p netbox-amd64-14_2 -t 0.1.2 -C potluck.pub -U https://potluck.honeyguide.net/netbox

If you don’t want to use the default pot bridged network configuration but instead need an individual network setup (e.g. assign a host IP address), after importing it you can simply clone the jail like that (em0 is the host network adapter in this example):
pot clone -P netbox-amd64-14_2 -p my-cloned-jail -N alias -i "em0|10.10.10.10"

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Alternatively: Create a Jail With This Flavour Yourself

1. Create Flavour Files

Save all files and directories from https://github.com/hny-gd/potluck/tree/master/netbox to /usr/local/etc/pot/flavours/

2. Create Jail From Flavour

Run
pot create -b <FreeBSD Version> -p <jailname> -t single -N public-bridge -f fbsd-update

with your FreeBSD version (e.g. 14.1) and the name your jail should get.

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Version History

0.1

  • Version bump for new base image
  • Update for Netbox version 4.1.10
  • redo, 4.0.11 installed instead of 4.1.10 in ports

0.0

  • First bash at a pot jail with netbox with integrated posgresql and redis, things may be broken
  • Fix formatting typos in README breaking hugo
  • Update docs for missing parameters
  • Use postgresql v16 because postgresql contrib is uninstalling v15 after installing
  • Update postgresql.conf file for new format with log_timezone and timezone
  • Change to using remote postgresql and redis images instead of integrated
  • Downgrade to use postgresql-15 client only
  • Documentation update to fix errors
  • Remove database check for now
  • Fix parameters in cook file
  • Fix nginx configuration for static pages
  • Fix netbox typos, add domain to ALLOWED_HOSTS, and check upgrade steps before starting netbox
  • Automate superuser creation, can be improved in future or set optional
  • Adjust service start order to start nginx last
  • Fix remaining configuration.py.in typos
  • Upgrade steps are not conditional, static files for site need to be generated every time
  • Switch to using nginx with SSL, either via self-signed certificate, or acme.sh registration. Add renew script.
  • Set media location in mount in storage
  • Clean up CHECKLIST
  • Fix configure-nginx.sh config missing “|”
  • Fix missing logo on login page with clear alias to docs directory
  • Fix missing rack images by removing ‘add_header X-Frame-Options “DENY”’
  • Add plugins netbox-secrets via pkg, and netbox-inventory, netbox-bgp, netbox-topology-views pip
  • Set versions on pip python installs
  • Remove user flag on pip installs, install to system path

These images were built on Sat Jan 11 16:05:56 UTC 2025

Manual Image Download Links

netbox-amd64-14_2_0.1.2.xz ( )
netbox-amd64-14_2_0.1.2.xz.skein ( ) netbox-amd64-14_2_0.1.2.xz.skein.sig ( ) netbox-amd64-14_2_0.1.2.xz.meta ( )

Jenkins Pot Creation Logs

netbox-amd64-14_2_0.1.2:


netbox/netbox:
copy-in -s /usr/local/etc/pot/flavours/netbox.d/local -d /root/.pot_local
netbox/netbox.sh:
#!/bin/sh

# Based on POTLUCK TEMPLATE v3.0
# Altered by Michael Gmelin
#
# EDIT THE FOLLOWING FOR NEW FLAVOUR:
# 1. RUNS_IN_NOMAD - true or false
# 2. If RUNS_IN_NOMAD is false, can delete the <flavour>+4 file, else
#    make sure pot create command doesn't include it
# 3. Create a matching <flavour> file with this <flavour>.sh file that
#    contains the copy-in commands for the config files from <flavour>.d/
#    Remember that the package directories don't exist yet, so likely copy
#    to /root
# 4. Adjust package installation between BEGIN & END PACKAGE SETUP
# 5. Adjust jail configuration script generation between BEGIN & END COOK
#    Configure the config files that have been copied in where necessary

# Set this to true if this jail flavour is to be created as a nomad
# (i.e. blocking) jail.
# You can then query it in the cook script generation below and the script
# is installed appropriately at the end of this script
RUNS_IN_NOMAD=false

# set the cook log path/filename
COOKLOG=/var/log/cook.log

# check if cooklog exists, create it if not
if [ ! -e $COOKLOG ]
then
    echo "Creating $COOKLOG" | tee -a $COOKLOG
else
    echo "WARNING $COOKLOG already exists"  | tee -a $COOKLOG
fi
date >> $COOKLOG

# -------------------- COMMON ---------------

STEPCOUNT=0
step() {
  STEPCOUNT=$(("$STEPCOUNT" + 1))
  STEP="$*"
  echo "Step $STEPCOUNT: $STEP" | tee -a $COOKLOG
}

exit_ok() {
  trap - EXIT
  exit 0
}

FAILED=" failed"
exit_error() {
  STEP="$*"
  FAILED=""
  exit 1
}

set -e
trap 'echo ERROR: $STEP$FAILED | (>&2 tee -a $COOKLOG)' EXIT

# -------------- BEGIN PACKAGE SETUP -------------

step "Bootstrap package repo"
mkdir -p /usr/local/etc/pkg/repos
# only modify repo if not already done in base image
# shellcheck disable=SC2016
test -e /usr/local/etc/pkg/repos/FreeBSD.conf || \
  echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/quarterly" }' \
    >/usr/local/etc/pkg/repos/FreeBSD.conf
ASSUME_ALWAYS_YES=yes pkg bootstrap

step "Touch /etc/rc.conf"
touch /etc/rc.conf

step "Clean freebsd-update"
rm -rf /var/db/freebsd-update
mkdir -p /var/db/freebsd-update

# this is important, otherwise running /etc/rc from cook will
# overwrite the IP address set in tinirc
step "Remove ifconfig_epair0b from config"
# shellcheck disable=SC2015
sysrc -cq ifconfig_epair0b && sysrc -x ifconfig_epair0b || true

step "Disable sendmail"
service sendmail onedisable

step "Create /usr/local/etc/rc.d"
mkdir -p /usr/local/etc/rc.d

# we need consul for consul agent
step "Install package consul"
pkg install -y consul

step "Install package openssl"
pkg install -y openssl

step "Install package sudo"
pkg install -y sudo

# necessary if installing curl now
step "Install package ca_root_nss"
pkg install -y ca_root_nss

step "Install package curl"
pkg install -y curl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package nano"
pkg install -y nano

step "Install package bash"
pkg install -y bash

step "Install package acme.sh"
pkg install -y acme.sh

step "Install package git"
pkg install -y git

step "Install package go"
pkg install -y go

step "Install package gmake"
pkg install -y gmake

step "Install package rsync"
pkg install -y rsync

step "Install package node_exporter"
pkg install -y node_exporter

step "Install package python3"
pkg install -y python3

step "Install package py311-pip"
pkg install -y py311-pip

step "Install package nginx"
pkg install -y nginx

step "Install package syslog-ng"
pkg install -y syslog-ng

step "Install package redis"
pkg install -y redis

step "Install package postgresql16-client"
pkg install -y postgresql16-client

step "Install package netbox-4.1.10"
pkg install -y netbox-4.1.10

step "Install package py311-netbox-secrets"
pkg install -y py311-netbox-secrets

step "Clean package installation"
pkg clean -ay

# -------------- END PACKAGE SETUP -------------

# ------------- CUSTOM PYTHON TOOLS -------------

# netbox is running as root, the steps below are not ideal
# doesn't work with --user flag and root install
# might need to run as a netbox user, run netbox the same
# versions are set a couple of releases behind latest,
# because netbox in quarterlies isn't the latest and gives error:
#  Plugin netbox_inventory requires NetBox minimum version 4.1.0 (current: 4.0.11).

step "Install python pip package netbox-inventory"
/usr/local/bin/pip install netbox-inventory==2.2.1 --root-user-action=ignore

step "Install python pip package netbox-bgp"
/usr/local/bin/pip install netbox-bgp==0.14.0 --root-user-action=ignore

step "Install python pip package netbox-topology-views"
/usr/local/bin/pip install netbox-topology-views==4.1.0 --root-user-action=ignore

#
# Now generate the run command script "cook"
# It configures the system on the first run by creating the config file(s)
# On subsequent runs, it only starts sleeps (if nomad-jail) or simply exits
#

# this runs when image boots
# ----------------- BEGIN COOK ------------------

step "Clean cook artifacts"
rm -rf /usr/local/bin/cook /usr/local/share/cook

step "Install pot local"
tar -C /root/.pot_local -cf - . | tar -C /usr/local -xf -
rm -rf /root/.pot_local

step "Set file ownership on cook scripts"
chown -R root:wheel /usr/local/bin/cook /usr/local/share/cook
chmod 755 /usr/local/share/cook/bin/*

# ----------------- END COOK ------------------


# ---------- NO NEED TO EDIT BELOW ------------

step "Make cook script executable"
if [ -e /usr/local/bin/cook ]
then
    echo "setting executable bit on /usr/local/bin/cook" | tee -a $COOKLOG
    chmod u+x /usr/local/bin/cook
else
    exit_error "there is no /usr/local/bin/cook to make executable"
fi

#
# There are two ways of running a pot jail: "Normal", non-blocking mode and
# "Nomad", i.e. blocking mode (the pot start command does not return until
# the jail is stopped).
# For the normal mode, we create a /usr/local/etc/rc.d script that starts
# the "cook" script generated above each time, for the "Nomad" mode, the cook
# script is started by pot (configuration through flavour file), therefore
# we do not need to do anything here.
#

# Create rc.d script for "normal" mode:
step "Create rc.d script to start cook"
echo "creating rc.d script to start cook" | tee -a $COOKLOG

# shellcheck disable=SC2016
echo '#!/bin/sh
#
# PROVIDE: cook
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
. /etc/rc.subr
name="cook"
rcvar="cook_enable"
load_rc_config $name
: ${cook_enable:="NO"}
: ${cook_env:=""}
command="/usr/local/bin/cook"
command_args=""
run_rc_command "$1"
' > /usr/local/etc/rc.d/cook

step "Make rc.d script to start cook executable"
if [ -e /usr/local/etc/rc.d/cook ]
then
  echo "Setting executable bit on cook rc file" | tee -a $COOKLOG
  chmod u+x /usr/local/etc/rc.d/cook
else
  exit_error "/usr/local/etc/rc.d/cook does not exist"
fi

if [ "$RUNS_IN_NOMAD" != "true" ]
then
  step "Enable cook service"
  # This is a non-nomad (non-blocking) jail, so we need to make sure the script
  # gets started when the jail is started:
  # Otherwise, /usr/local/bin/cook will be set as start script by the pot
  # flavour
  echo "enabling cook" | tee -a $COOKLOG
  service cook enable
fi

# -------------------- DONE ---------------
exit_ok

netbox/netbox+1:
netbox/netbox+1.sh:

netbox/netbox+2:
netbox/netbox+2.sh:

netbox/netbox+3:
netbox/netbox+3.sh:

netbox/netbox+4:
netbox/netbox+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/netbox-amd64-14_2/conf)
=====>  Cloning freebsd-potluck-amd64-14_2_0_0_33 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_2_0_0_33/m@1736448749 into zroot/srv/pot/jails/netbox-amd64-14_2/m
=====>  Flavour: fbsd-update
=====>  Starting netbox-amd64-14_2 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/netbox-amd64-14_2/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot netbox-amd64-14_2
=====>  Pot netbox-amd64-14_2 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=netbox-amd64-14_2 host.hostname=netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net osrelease=14.2-RELEASE path=/mnt/srv/pot/jails/netbox-amd64-14_2/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:ce:b0:62:ba:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Sat Jan 11 15:58:01 UTC 2025
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/netbox-amd64-14_2/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on netbox-amd64-14_2
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 14.2-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 1 metadata files... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 14.2-RELEASE-p0.
No updates are available to install.
=====>  Stop the pot netbox-amd64-14_2
=====>  Remove p46782950812edb epair network interfaces
=====>  unmount /mnt/srv/pot/jails/netbox-amd64-14_2/m/tmp
=====>  unmount /mnt/srv/pot/jails/netbox-amd64-14_2/m/dev
=====>  Flavour: netbox
=====>  Executing netbox pot commands on netbox-amd64-14_2
=====>  mount /mnt/srv/pot/jails/netbox-amd64-14_2/m/tmp
=====>  Source /usr/local/etc/pot/flavours/netbox.d/local copied in the pot netbox-amd64-14_2
=====>  unmount /mnt/srv/pot/jails/netbox-amd64-14_2/m/tmp
=====>  /mnt/srv/pot/jails/netbox-amd64-14_2/m/dev is already unmounted
=====>  Starting netbox-amd64-14_2 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/netbox-amd64-14_2/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot netbox-amd64-14_2
=====>  Pot netbox-amd64-14_2 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=netbox-amd64-14_2 host.hostname=netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net osrelease=14.2-RELEASE path=/mnt/srv/pot/jails/netbox-amd64-14_2/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:7a:32:9d:56:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Sat Jan 11 15:58:07 UTC 2025
/usr/local/etc/pot/flavours/netbox.sh -> /mnt/srv/pot/jails/netbox-amd64-14_2/m/tmp/netbox.sh
=====>  Executing netbox script on netbox-amd64-14_2
WARNING /var/log/cook.log already exists
Step 1: Bootstrap package repo
pkg already bootstrapped at /usr/local/sbin/pkg
Step 2: Touch /etc/rc.conf
Step 3: Clean freebsd-update
Step 4: Remove ifconfig_epair0b from config
Step 5: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 6: Create /usr/local/etc/rc.d
Step 7: Install package consul
Updating FreeBSD repository catalogue...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 35917 packages processed.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	consul: 1.20.1_1

Number of packages to be installed: 1

The process will require 121 MiB more space.
24 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.20.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.20.1_1...
===> Creating groups
Creating group 'consul' with gid '469'
===> Creating users
Creating user 'consul' with uid '469'
===> Creating homedir(s)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.20.1_1: ..... done
Step 8: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 9: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	sudo: 1.9.16p1 -> 1.9.16p2

Number of packages to be upgraded: 1

2 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching sudo-1.9.16p2.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading sudo from 1.9.16p1 to 1.9.16p2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting sudo-1.9.16p2: .......... done
Step 10: Install package ca_root_nss
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 11: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	brotli: 1.1.0,1

Installed packages to be UPGRADED:
	curl: 8.10.1 -> 8.11.1_1

Number of packages to be installed: 1
Number of packages to be upgraded: 1

2 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching brotli-1.1.0,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching curl-8.11.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Installing brotli-1.1.0,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting brotli-1.1.0,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Upgrading curl from 8.10.1 to 8.11.1_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting curl-8.11.1_1: .......... done
Step 12: Install package jq
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 13: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 14: Install package nano
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 15: Install package bash
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 16: Install package acme.sh
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	acme.sh: 3.1.0
	socat: 1.8.0.2

Number of packages to be installed: 2

The process will require 2 MiB more space.
439 KiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching acme.sh-3.1.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching socat-1.8.0.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Installing socat-1.8.0.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting socat-1.8.0.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Installing acme.sh-3.1.0...
===> Creating groups
Creating group 'acme' with gid '169'
===> Creating users
Creating user 'acme' with uid '169'
===> Creating homedir(s)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting acme.sh-3.1.0: .......... done
=====
Message from acme.sh-3.1.0:

--
This script will create the following directories if they do not exist:

 ~acme/.acme.sh
 ~acme/certs

The script will also install ~acme/.acme.sh/account.conf.sample which has
sane defaults.  Copy this to ~acme/.acme.sh/account.conf and edit contents
to suit.

If you have EXAMPLES on:

* In the /usr/local/share/examples/acme.sh directory, you can find the dnsapi 
  scripts which will be useful if you decide to use dns-01 challenges. Also 
  included are the deploy scripts.

* A newsyslog.conf sample file is installed at 
  /usr/local/etc/newsyslog.conf.d/acme.sh.conf - you must modify it by
  at least uncommenting the line.

* If you run `newsyslog -NC` it will create the required logfiles.

* Please review /usr/local/share/examples/acme.sh/acme.sh-cron.d - instructions are
  contained in that file.
Step 17: Install package git
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 25 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	expat: 2.6.4
	git: 2.47.1
	libffi: 3.4.6
	mpdecimal: 4.0.0
	p5-Authen-SASL: 2.17_1
	p5-CGI: 4.66
	p5-Clone: 0.47
	p5-Digest-HMAC: 1.05
	p5-Encode-Locale: 1.05
	p5-Error: 0.17029
	p5-HTML-Parser: 3.83
	p5-HTML-Tagset: 3.24
	p5-HTTP-Date: 6.06
	p5-HTTP-Message: 7.00
	p5-IO-HTML: 1.004
	p5-IO-Socket-IP: 0.43
	p5-IO-Socket-SSL: 2.089
	p5-LWP-MediaTypes: 6.04
	p5-Mozilla-CA: 20240924
	p5-Net-SSLeay: 1.94
	p5-TimeDate: 2.33,1
	p5-URI: 5.31
	pcre2: 10.43
	perl5: 5.36.3_2
	python311: 3.11.11

Number of packages to be installed: 25

The process will require 311 MiB more space.
52 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/25] Fetching p5-Net-SSLeay-1.94.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/25] Fetching p5-IO-Socket-SSL-2.089.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/25] Fetching p5-HTTP-Date-6.06.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/25] Fetching mpdecimal-4.0.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/25] Fetching p5-IO-Socket-IP-0.43.pkg: ..... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/25] Fetching p5-URI-5.31.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [7/25] Fetching p5-CGI-4.66.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [8/25] Fetching p5-Encode-Locale-1.05.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [9/25] Fetching perl5-5.36.3_2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [10/25] Fetching p5-HTML-Parser-3.83.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [11/25] Fetching p5-Mozilla-CA-20240924.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [12/25] Fetching p5-LWP-MediaTypes-6.04.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [13/25] Fetching libffi-3.4.6.pkg: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [14/25] Fetching p5-TimeDate-2.33,1.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [15/25] Fetching p5-IO-HTML-1.004.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [16/25] Fetching p5-Clone-0.47.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [17/25] Fetching p5-Digest-HMAC-1.05.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [18/25] Fetching pcre2-10.43.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [19/25] Fetching p5-Error-0.17029.pkg: ..... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [20/25] Fetching p5-HTML-Tagset-3.24.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [21/25] Fetching expat-2.6.4.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [22/25] Fetching p5-HTTP-Message-7.00.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [23/25] Fetching git-2.47.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [24/25] Fetching python311-3.11.11.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [25/25] Fetching p5-Authen-SASL-2.17_1.pkg: ........ done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/25] Installing perl5-5.36.3_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/25] Extracting perl5-5.36.3_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/25] Installing p5-TimeDate-2.33,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/25] Extracting p5-TimeDate-2.33,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/25] Installing p5-HTTP-Date-6.06...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/25] Extracting p5-HTTP-Date-6.06: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/25] Installing p5-URI-5.31...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/25] Extracting p5-URI-5.31: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/25] Installing p5-Encode-Locale-1.05...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/25] Extracting p5-Encode-Locale-1.05: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/25] Installing p5-LWP-MediaTypes-6.04...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/25] Extracting p5-LWP-MediaTypes-6.04: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [7/25] Installing p5-IO-HTML-1.004...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [7/25] Extracting p5-IO-HTML-1.004: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [8/25] Installing p5-Clone-0.47...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [8/25] Extracting p5-Clone-0.47: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [9/25] Installing p5-HTML-Tagset-3.24...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [9/25] Extracting p5-HTML-Tagset-3.24: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [10/25] Installing p5-HTTP-Message-7.00...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [10/25] Extracting p5-HTTP-Message-7.00: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [11/25] Installing p5-Net-SSLeay-1.94...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [11/25] Extracting p5-Net-SSLeay-1.94: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [12/25] Installing mpdecimal-4.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [12/25] Extracting mpdecimal-4.0.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [13/25] Installing p5-IO-Socket-IP-0.43...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [13/25] Extracting p5-IO-Socket-IP-0.43: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [14/25] Installing p5-HTML-Parser-3.83...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [14/25] Extracting p5-HTML-Parser-3.83: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [15/25] Installing p5-Mozilla-CA-20240924...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [15/25] Extracting p5-Mozilla-CA-20240924: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [16/25] Installing libffi-3.4.6...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [16/25] Extracting libffi-3.4.6: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [17/25] Installing p5-Digest-HMAC-1.05...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [17/25] Extracting p5-Digest-HMAC-1.05: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [18/25] Installing p5-IO-Socket-SSL-2.089...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [18/25] Extracting p5-IO-Socket-SSL-2.089: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [19/25] Installing p5-CGI-4.66...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [19/25] Extracting p5-CGI-4.66: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [20/25] Installing pcre2-10.43...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [20/25] Extracting pcre2-10.43: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [21/25] Installing p5-Error-0.17029...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [21/25] Extracting p5-Error-0.17029: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [22/25] Installing expat-2.6.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [22/25] Extracting expat-2.6.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [23/25] Installing python311-3.11.11...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [23/25] Extracting python311-3.11.11: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [24/25] Installing p5-Authen-SASL-2.17_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [24/25] Extracting p5-Authen-SASL-2.17_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [25/25] Installing git-2.47.1...
===> Creating groups
Creating group 'git_daemon' with gid '964'
===> Creating users
Creating user 'git_daemon' with uid '964'
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [25/25] Extracting git-2.47.1: .......... done
=====
Message from python311-3.11.11:

--
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:

py311-gdbm       databases/py-gdbm@py311
py311-sqlite3    databases/py-sqlite3@py311
py311-tkinter    x11-toolkits/py-tkinter@py311
=====
Message from git-2.47.1:

--
If you installed the GITWEB option please follow these instructions:

In the directory /usr/local/share/examples/git/gitweb you can find all files to
make gitweb work as a public repository on the web.

All you have to do to make gitweb work is:
1) Please be sure you're able to execute CGI scripts in
   /usr/local/share/examples/git/gitweb.
2) Set the GITWEB_CONFIG variable in your webserver's config to
   /usr/local/etc/git/gitweb.conf. This variable is passed to gitweb.cgi.
3) Restart server.


If you installed the CONTRIB option please note that the scripts are
installed in /usr/local/share/git-core/contrib. Some of them require
other ports to be installed (perl, python, etc), which you may need to
install manually.
Step 18: Install package go
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	go: 1.21_5,2
	go121: 1.21.13_1

Number of packages to be installed: 2

The process will require 206 MiB more space.
42 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching go-1.21_5,2.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching go121-1.21.13_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Installing go121-1.21.13_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting go121-1.21.13_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Installing go-1.21_5,2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting go-1.21_5,2: .. done
Step 19: Install package gmake
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	gmake: 4.4.1

Number of packages to be installed: 1

The process will require 2 MiB more space.
487 KiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching gmake-4.4.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Installing gmake-4.4.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting gmake-4.4.1: .......... done
Step 20: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 21: Install package node_exporter
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	node_exporter: 1.8.2

Number of packages to be installed: 1

The process will require 11 MiB more space.
4 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.8.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.8.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.8.2: .......... done
=====
Message from node_exporter-1.8.2:

--
If upgrading from a version of node_exporter <0.15.0 you'll need to update any
custom command line flags that you may have set as it now requires a
double-dash (--flag) instead of a single dash (-flag).
The collector flags in 0.15.0 have now been replaced with individual boolean
flags and the -collector.procfs` and -collector.sysfs` flags have been renamed
to --path.procfs and --path.sysfs respectively.
Step 22: Install package python3
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	python3: 3_4

Number of packages to be installed: 1

1 KiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching python3-3_4.pkg: . done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Installing python3-3_4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting python3-3_4: ....... done
Step 23: Install package py311-pip
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	py311-pip: 23.3.2_3
	py311-setuptools: 63.1.0_1

Number of packages to be installed: 2

The process will require 36 MiB more space.
5 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching py311-pip-23.3.2_3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching py311-setuptools-63.1.0_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Installing py311-setuptools-63.1.0_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting py311-setuptools-63.1.0_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Installing py311-pip-23.3.2_3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting py311-pip-23.3.2_3: .......... done
=====
Message from py311-pip-23.3.2_3:

--
pip MUST ONLY be used:

 * With the --user flag, OR
 * To install or manage Python packages in virtual environments

Failure to follow this warning can and will result in an inconsistent
system-wide Python environment (LOCALBASE/lib/pythonX.Y/site-packages) and
cause errors.

Avoid using pip as root unless you know what you're doing.
Step 24: Install package nginx
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	nginx: 1.26.2_9,3

Number of packages to be installed: 1

The process will require 2 MiB more space.
558 KiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching nginx-1.26.2_9,3.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Installing nginx-1.26.2_9,3...
===> Creating groups
Using existing group 'www'
===> Creating users
Using existing user 'www'
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting nginx-1.26.2_9,3: .......... done
=====
Message from nginx-1.26.2_9,3:

--
Recent version of the NGINX introduces dynamic modules support.  In
FreeBSD ports tree this feature was enabled by default with the DSO
knob.  Several vendor's and third-party modules have been converted
to dynamic modules.  Unset the DSO knob builds an NGINX without
dynamic modules support.

To load a module at runtime, include the new `load_module'
directive in the main context, specifying the path to the shared
object file for the module, enclosed in quotation marks.  When you
reload the configuration or restart NGINX, the module is loaded in.
It is possible to specify a path relative to the source directory,
or a full path, please see
https://www.nginx.com/blog/dynamic-modules-nginx-1-9-11/ and
http://nginx.org/en/docs/ngx_core_module.html#load_module for
details.

Default path for the NGINX dynamic modules is

/usr/local/libexec/nginx.
Step 25: Install package syslog-ng
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	e2fsprogs-libuuid: 1.47.1
	glib: 2.80.5_1,2
	ivykis: 0.43.2
	json-c: 0.18
	py311-packaging: 24.2
	syslog-ng: 4.8.1_3

Number of packages to be installed: 6

The process will require 33 MiB more space.
6 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/6] Fetching ivykis-0.43.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/6] Fetching py311-packaging-24.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/6] Fetching glib-2.80.5_1,2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/6] Fetching syslog-ng-4.8.1_3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/6] Fetching json-c-0.18.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/6] Fetching e2fsprogs-libuuid-1.47.1.pkg: ....... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/6] Installing py311-packaging-24.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/6] Extracting py311-packaging-24.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/6] Installing ivykis-0.43.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/6] Extracting ivykis-0.43.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/6] Installing glib-2.80.5_1,2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/6] Extracting glib-2.80.5_1,2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/6] Installing json-c-0.18...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/6] Extracting json-c-0.18: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/6] Installing e2fsprogs-libuuid-1.47.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/6] Extracting e2fsprogs-libuuid-1.47.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/6] Installing syslog-ng-4.8.1_3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/6] Extracting syslog-ng-4.8.1_3: .......... done
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
=====
Message from syslog-ng-4.8.1_3:

--
syslog-ng is now installed!  To replace FreeBSD's standard syslogd
(/usr/sbin/syslogd), complete these steps:

1. Create a configuration file named /usr/local/etc/syslog-ng.conf
   (a sample named syslog-ng.conf.sample has been included in
   /usr/local/etc). Note that this is a change in 2.0.2
   version, previous ones put the config file in
   /usr/local/etc/syslog-ng/syslog-ng.conf, so if this is an update
   move that file in the right place

2. Configure syslog-ng to start automatically by adding the following
   to /etc/rc.conf:

        syslog_ng_enable="YES"

3. Prevent the standard FreeBSD syslogd from starting automatically by
   adding a line to the end of your /etc/rc.conf file that reads:

        syslogd_enable="NO"

4. Shut down the standard FreeBSD syslogd:

     kill `cat /var/run/syslog.pid`

5. Start syslog-ng:

     /usr/local/etc/rc.d/syslog-ng start
Step 26: Install package redis
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	redis: 7.4.2

Number of packages to be installed: 1

The process will require 9 MiB more space.
963 KiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching redis-7.4.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Installing redis-7.4.2...
===> Creating groups
Creating group 'redis' with gid '535'
===> Creating users
Creating user 'redis' with uid '535'
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting redis-7.4.2: ......... done
=====
Message from redis-7.4.2:

--
To setup "redis" you need to edit the configuration file:
      /usr/local/etc/redis.conf

      To run redis from startup, add redis_enable="YES"
      in your /etc/rc.conf.
Step 27: Install package postgresql16-client
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	postgresql16-client: 16.6

Number of packages to be installed: 1

The process will require 15 MiB more space.
3 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching postgresql16-client-16.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Installing postgresql16-client-16.6...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting postgresql16-client-16.6: .......... done
=====
Message from postgresql16-client-16.6:

--
The PostgreSQL port has a collection of "side orders":

postgresql-docs
  For all of the html documentation

p5-Pg
  A perl5 API for client access to PostgreSQL databases.

postgresql-tcltk
  If you want tcl/tk client support.

postgresql-jdbc
  For Java JDBC support.

postgresql-odbc
  For client access from unix applications using ODBC as access
  method. Not needed to access unix PostgreSQL servers from Win32
  using ODBC. See below.

ruby-postgres, py-psycopg2
  For client access to PostgreSQL databases using the ruby & python
  languages.

postgresql-plperl, postgresql-pltcl & postgresql-plruby
  For using perl5, tcl & ruby as procedural languages.

postgresql-contrib
  Lots of contributed utilities, postgresql functions and
  datatypes. There you find pg_standby, pgcrypto and many other cool
  things.

etc...
Step 28: Install package netbox-4.1.10
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 187 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	binutils: 2.43.1,1
	fontconfig: 2.15.0_3,1
	freetype2: 2.13.3
	fribidi: 1.0.16
	gcc13: 13.3.0
	giflib: 5.2.2
	gmp: 6.3.0
	graphite2: 1.3.14
	harfbuzz: 10.1.0
	jbigkit: 2.1_3
	jpeg-turbo: 3.0.4
	lcms2: 2.16_2
	lerc: 4.0.0
	libX11: 1.8.9,1
	libXScrnSaver: 1.2.4_1
	libXau: 1.0.11
	libXdmcp: 1.1.5
	libXext: 1.3.6,1
	libXft: 2.3.8
	libXrender: 0.9.11
	libdeflate: 1.22
	libedit: 3.1.20240808,1
	libgcrypt: 1.11.0
	libgpg-error: 1.51
	libimagequant: 4.3.3_4
	libinotify: 20240724
	libltdl: 2.5.4
	libraqm: 0.10.2
	libxcb: 1.17.0
	libxml2: 2.11.9
	libxslt: 1.1.37_1
	libyaml: 0.2.5
	mpc: 1.3.1_1
	mpfr: 4.2.1,1
	netbox: 4.1.10
	nspr: 4.36
	nss: 3.107
	openblas: 0.3.27,2
	openjpeg: 2.5.3
	png: 1.6.44
	py311-Automat: 24.8.1
	py311-Babel: 2.16.0
	py311-Jinja2: 3.1.4
	py311-appdirs: 1.4.4_1
	py311-asgiref: 3.8.1
	py311-attrs: 24.3.0
	py311-bcrypt: 3.2.2_1
	py311-blinker: 1.9.0
	py311-bottleneck: 1.3.8_1
	py311-certifi: 2024.12.14
	py311-cffi: 1.17.1
	py311-charset-normalizer: 3.4.1_1
	py311-click: 8.1.7
	py311-colorama: 0.4.6
	py311-constantly: 23.10.4
	py311-cryptography: 42.0.8_5,1
	py311-defusedxml: 0.7.1
	py311-dj50-django-choices-field: 2.3.0
	py311-dj50-django-cors-headers: 4.6.0
	py311-dj50-django-debug-toolbar: 4.4.6
	py311-dj50-django-filter: 24.3
	py311-dj50-django-htmx: 1.21.0
	py311-dj50-django-js-asset: 2.2.0
	py311-dj50-django-mptt: 0.16.0
	py311-dj50-django-prometheus: 2.3.1_1
	py311-dj50-django-redis: 5.4.0
	py311-dj50-django-rich: 1.13.0
	py311-dj50-django-rq: 3.0.0
	py311-dj50-django-tables2: 2.7.0
	py311-dj50-django-taggit: 6.1.0
	py311-dj50-django-timezone-field: 7.0
	py311-dj50-djangorestframework: 3.15.2
	py311-dj50-drf-spectacular: 0.28.0
	py311-dj50-drf-spectacular-sidecar: 2024.12.1
	py311-dj50-strawberry-graphql: 0.254.0
	py311-dj50-strawberry-graphql-django: 0.52.0
	py311-django-pglocks: 1.0.4
	py311-django50: 5.0.10
	py311-docstring-parser: 0.15
	py311-et_xmlfile: 1.1.0
	py311-feedparser: 6.0.11
	py311-ghp-import: 2.1.0_2
	py311-graphql-core: 3.2.5
	py311-gunicorn: 23.0.0_1
	py311-h2: 4.1.0
	py311-hpack: 4.0.0
	py311-hyperframe: 6.0.0
	py311-hyperlink: 21.0.0_1
	py311-idna: 3.10
	py311-incremental: 24.7.2_1
	py311-inflection: 0.5.1
	py311-isodate: 0.7.2
	py311-jsonschema: 4.23.0
	py311-jsonschema-specifications: 2024.10.1
	py311-lxml: 4.9.3
	py311-markdown: 3.6
	py311-markdown-callouts: 0.4.0
	py311-markdown-it-py: 3.0.0
	py311-markupsafe: 2.1.5_1
	py311-mdurl: 0.1.2_2
	py311-mergedeep: 1.3.4
	py311-mkdocs: 1.6.1
	py311-mkdocs-autorefs: 1.2.0
	py311-mkdocs-get-deps: 0.2.0_1
	py311-mkdocs-material: 9.5.49
	py311-mkdocs-material-extensions: 1.3.1
	py311-mkdocstrings: 0.27.0
	py311-mkdocstrings-crystal: 0.3.7
	py311-mkdocstrings-python-legacy: 0.2.4
	py311-netaddr: 1.3.0
	py311-nh3: 0.2.20
	py311-numexpr: 2.10.2
	py311-numpy: 1.26.4_2,1
	py311-oauthlib: 3.2.2_1
	py311-odfpy: 1.4.1_2
	py311-olefile: 0.46
	py311-openpyxl: 3.1.1
	py311-openssl: 24.1.0,1
	py311-paginate: 0.5.7
	py311-pandas: 2.1.4,1
	py311-pathspec: 0.12.1
	py311-pillow: 11.0.0
	py311-platformdirs: 4.3.6
	py311-priority1: 1.3.0_1
	py311-prometheus-client: 0.17.1
	py311-psycopg: 3.1.20
	py311-psycopg-c: 3.1.20
	py311-psycopg-pool: 3.2.4
	py311-pyasn1: 0.6.0
	py311-pyasn1-modules: 0.4.0
	py311-pycparser: 2.22
	py311-pygments: 2.18.0
	py311-pyjwt: 2.8.0
	py311-pymdown-extensions: 10.13
	py311-pyserial: 3.5_2
	py311-pysocks: 1.7.1_1
	py311-python-dateutil: 2.9.0
	py311-python3-openid: 3.2.0_2
	py311-python3-saml: 1.16.0
	py311-pytkdocs: 0.16.2
	py311-pytz: 2024.2,1
	py311-pyyaml: 6.0.1
	py311-pyyaml_env_tag: 0.1_2
	py311-redis: 5.2.1
	py311-referencing: 0.35.1
	py311-regex: 2024.7.24
	py311-requests: 2.32.3
	py311-requests-oauthlib: 2.0.0
	py311-rich: 13.9.4
	py311-rpds-py: 0.13.2_10
	py311-rq: 2.0.0
	py311-service-identity: 24.2.0
	py311-setproctitle: 1.3.3
	py311-sgmllib3k: 1.0.0_1
	py311-six: 1.17.0
	py311-social-auth-app-django: 5.4.2
	py311-social-auth-core: 4.5.4
	py311-sqlite3: 3.11.11_7
	py311-sqlparse: 0.5.3
	py311-svgwrite: 1.4.3
	py311-tablib: 3.7.0
	py311-tabulate: 0.9.0
	py311-tkinter: 3.11.11_7
	py311-twisted: 24.7.0
	py311-typing-extensions: 4.12.2
	py311-tzdata: 2024.2
	py311-uritemplate: 3.0.1
	py311-urllib3: 1.26.20,1
	py311-watchdog: 4.0.2
	py311-xlrd: 2.0.1_1
	py311-xlwt: 1.3.0
	py311-xmlsec: 1.3.14
	py311-zope.interface: 5.3.0
	sqlite3: 3.46.1,1
	suitesparse-amd: 3.3.2
	suitesparse-camd: 3.3.2
	suitesparse-ccolamd: 3.3.3
	suitesparse-cholmod: 5.2.1_1
	suitesparse-colamd: 3.3.3
	suitesparse-config: 7.7.0_1
	suitesparse-umfpack: 6.3.3_1
	tcl86: 8.6.16_2
	tiff: 4.7.0
	tk86: 8.6.16
	webp: 1.5.0
	xmlsec1: 1.3.6
	xorgproto: 2024.1

Number of packages to be installed: 187

The process will require 1 GiB more space.
225 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/187] Fetching py311-pathspec-0.12.1.pkg: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/187] Fetching py311-social-auth-core-4.5.4.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/187] Fetching freetype2-2.13.3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/187] Fetching py311-pygments-2.18.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/187] Fetching py311-python3-openid-3.2.0_2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/187] Fetching py311-mkdocs-get-deps-0.2.0_1.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [7/187] Fetching py311-sgmllib3k-1.0.0_1.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [8/187] Fetching py311-python-dateutil-2.9.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [9/187] Fetching py311-numpy-1.26.4_2,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [10/187] Fetching py311-mkdocs-material-9.5.49.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [11/187] Fetching py311-dj50-drf-spectacular-0.28.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [12/187] Fetching nss-3.107.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [13/187] Fetching lcms2-2.16_2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [14/187] Fetching suitesparse-cholmod-5.2.1_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [15/187] Fetching py311-asgiref-3.8.1.pkg: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [16/187] Fetching py311-twisted-24.7.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [17/187] Fetching py311-hyperlink-21.0.0_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [18/187] Fetching py311-pyasn1-modules-0.4.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [19/187] Fetching py311-Automat-24.8.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [20/187] Fetching py311-paginate-0.5.7.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [21/187] Fetching openjpeg-2.5.3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [22/187] Fetching py311-sqlparse-0.5.3.pkg: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [23/187] Fetching py311-idna-3.10.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [24/187] Fetching py311-dj50-drf-spectacular-sidecar-2024.12.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [25/187] Fetching py311-watchdog-4.0.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [26/187] Fetching py311-cffi-1.17.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [27/187] Fetching py311-dj50-django-htmx-1.21.0.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [28/187] Fetching py311-defusedxml-0.7.1.pkg: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [29/187] Fetching libX11-1.8.9,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [30/187] Fetching giflib-5.2.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [31/187] Fetching py311-mkdocs-autorefs-1.2.0.pkg: ...... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [32/187] Fetching xorgproto-2024.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [33/187] Fetching suitesparse-ccolamd-3.3.3.pkg: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [34/187] Fetching py311-pytz-2024.2,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [35/187] Fetching py311-markupsafe-2.1.5_1.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [36/187] Fetching libXft-2.3.8.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [37/187] Fetching py311-pyserial-3.5_2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [38/187] Fetching py311-dj50-django-js-asset-2.2.0.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [39/187] Fetching py311-dj50-django-rich-1.13.0.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [40/187] Fetching py311-attrs-24.3.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [41/187] Fetching graphite2-1.3.14.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [42/187] Fetching py311-pyjwt-2.8.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [43/187] Fetching py311-mergedeep-1.3.4.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [44/187] Fetching suitesparse-amd-3.3.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [45/187] Fetching py311-certifi-2024.12.14.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [46/187] Fetching py311-pyyaml_env_tag-0.1_2.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [47/187] Fetching py311-hpack-4.0.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [48/187] Fetching py311-dj50-django-redis-5.4.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [49/187] Fetching py311-Babel-2.16.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [50/187] Fetching py311-lxml-4.9.3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [51/187] Fetching py311-tkinter-3.11.11_7.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [52/187] Fetching py311-referencing-0.35.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [53/187] Fetching py311-redis-5.2.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [54/187] Fetching py311-pytkdocs-0.16.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [55/187] Fetching py311-dj50-djangorestframework-3.15.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [56/187] Fetching py311-dj50-django-filter-24.3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [57/187] Fetching libXau-1.0.11.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [58/187] Fetching py311-dj50-django-rq-3.0.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [59/187] Fetching py311-svgwrite-1.4.3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [60/187] Fetching libltdl-2.5.4.pkg: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [61/187] Fetching fontconfig-2.15.0_3,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [62/187] Fetching py311-tabulate-0.9.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [63/187] Fetching py311-django-pglocks-1.0.4.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [64/187] Fetching py311-psycopg-c-3.1.20.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [65/187] Fetching py311-ghp-import-2.1.0_2.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [66/187] Fetching py311-pyasn1-0.6.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [67/187] Fetching py311-xlrd-2.0.1_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [68/187] Fetching py311-dj50-strawberry-graphql-django-0.52.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [69/187] Fetching jbigkit-2.1_3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [70/187] Fetching py311-django50-5.0.10.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [71/187] Fetching py311-typing-extensions-4.12.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [72/187] Fetching gcc13-13.3.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [73/187] Fetching libXdmcp-1.1.5.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [74/187] Fetching tiff-4.7.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [75/187] Fetching tcl86-8.6.16_2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [76/187] Fetching py311-colorama-0.4.6.pkg: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [77/187] Fetching py311-incremental-24.7.2_1.pkg: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [78/187] Fetching py311-Jinja2-3.1.4.pkg: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [79/187] Fetching openblas-0.3.27,2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [80/187] Fetching lerc-4.0.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [81/187] Fetching py311-markdown-3.6.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [82/187] Fetching py311-rq-2.0.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [83/187] Fetching png-1.6.44.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [84/187] Fetching py311-sqlite3-3.11.11_7.pkg: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [85/187] Fetching libxcb-1.17.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [86/187] Fetching libraqm-0.10.2.pkg: ..... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [87/187] Fetching py311-cryptography-42.0.8_5,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [88/187] Fetching jpeg-turbo-3.0.4.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [89/187] Fetching py311-blinker-1.9.0.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [90/187] Fetching py311-service-identity-24.2.0.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [91/187] Fetching suitesparse-camd-3.3.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [92/187] Fetching py311-dj50-django-timezone-field-7.0.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [93/187] Fetching py311-pandas-2.1.4,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [94/187] Fetching py311-bottleneck-1.3.8_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [95/187] Fetching libxslt-1.1.37_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [96/187] Fetching py311-hyperframe-6.0.0.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [97/187] Fetching py311-pycparser-2.22.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [98/187] Fetching py311-graphql-core-3.2.5.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [99/187] Fetching libyaml-0.2.5.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [100/187] Fetching py311-dj50-django-tables2-2.7.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [101/187] Fetching py311-nh3-0.2.20.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [102/187] Fetching py311-feedparser-6.0.11.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [103/187] Fetching xmlsec1-1.3.6.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [104/187] Fetching py311-six-1.17.0.pkg: ..... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [105/187] Fetching py311-appdirs-1.4.4_1.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [106/187] Fetching py311-isodate-0.7.2.pkg: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [107/187] Fetching py311-mkdocs-material-extensions-1.3.1.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [108/187] Fetching py311-prometheus-client-0.17.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [109/187] Fetching py311-charset-normalizer-3.4.1_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [110/187] Fetching py311-requests-oauthlib-2.0.0.pkg: ...... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [111/187] Fetching py311-jsonschema-4.23.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [112/187] Fetching libdeflate-1.22.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [113/187] Fetching fribidi-1.0.16.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [114/187] Fetching py311-pyyaml-6.0.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [115/187] Fetching py311-mkdocstrings-crystal-0.3.7.pkg: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [116/187] Fetching py311-psycopg-3.1.20.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [117/187] Fetching libxml2-2.11.9.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [118/187] Fetching py311-python3-saml-1.16.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [119/187] Fetching py311-dj50-django-cors-headers-4.6.0.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [120/187] Fetching py311-netaddr-1.3.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [121/187] Fetching py311-rich-13.9.4.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [122/187] Fetching py311-setproctitle-1.3.3.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [123/187] Fetching py311-et_xmlfile-1.1.0.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [124/187] Fetching libXScrnSaver-1.2.4_1.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [125/187] Fetching libimagequant-4.3.3_4.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [126/187] Fetching suitesparse-umfpack-6.3.3_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [127/187] Fetching libXrender-0.9.11.pkg: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [128/187] Fetching py311-click-8.1.7.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [129/187] Fetching py311-pysocks-1.7.1_1.pkg: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [130/187] Fetching py311-mkdocstrings-python-legacy-0.2.4.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [131/187] Fetching webp-1.5.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [132/187] Fetching py311-platformdirs-4.3.6.pkg: ...... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [133/187] Fetching py311-dj50-django-mptt-0.16.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [134/187] Fetching py311-requests-2.32.3.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [135/187] Fetching py311-priority1-1.3.0_1.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [136/187] Fetching py311-openpyxl-3.1.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [137/187] Fetching py311-jsonschema-specifications-2024.10.1.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [138/187] Fetching harfbuzz-10.1.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [139/187] Fetching libinotify-20240724.pkg: ..... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [140/187] Fetching py311-regex-2024.7.24.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [141/187] Fetching py311-xmlsec-1.3.14.pkg: ...... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [142/187] Fetching py311-dj50-strawberry-graphql-0.254.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [143/187] Fetching py311-dj50-django-prometheus-2.3.1_1.pkg: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [144/187] Fetching libedit-3.1.20240808,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [145/187] Fetching py311-dj50-django-debug-toolbar-4.4.6.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [146/187] Fetching py311-xlwt-1.3.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [147/187] Fetching libgcrypt-1.11.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [148/187] Fetching py311-h2-4.1.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [149/187] Fetching py311-tzdata-2024.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [150/187] Fetching py311-bcrypt-3.2.2_1.pkg: .... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [151/187] Fetching tk86-8.6.16.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [152/187] Fetching libgpg-error-1.51.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [153/187] Fetching py311-markdown-it-py-3.0.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [154/187] Fetching nspr-4.36.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [155/187] Fetching gmp-6.3.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [156/187] Fetching mpfr-4.2.1,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [157/187] Fetching suitesparse-config-7.7.0_1.pkg: ....... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [158/187] Fetching py311-gunicorn-23.0.0_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [159/187] Fetching py311-inflection-0.5.1.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [160/187] Fetching libXext-1.3.6,1.pkg: ...... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [161/187] Fetching py311-numexpr-2.10.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [162/187] Fetching suitesparse-colamd-3.3.3.pkg: ...... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [163/187] Fetching py311-rpds-py-0.13.2_10.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [164/187] Fetching py311-urllib3-1.26.20,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [165/187] Fetching py311-markdown-callouts-0.4.0.pkg: .. done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [166/187] Fetching py311-odfpy-1.4.1_2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [167/187] Fetching py311-olefile-0.46.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [168/187] Fetching sqlite3-3.46.1,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [169/187] Fetching py311-mdurl-0.1.2_2.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [170/187] Fetching mpc-1.3.1_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [171/187] Fetching py311-tablib-3.7.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [172/187] Fetching py311-docstring-parser-0.15.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [173/187] Fetching py311-pillow-11.0.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [174/187] Fetching py311-social-auth-app-django-5.4.2.pkg: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [175/187] Fetching py311-mkdocs-1.6.1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [176/187] Fetching py311-constantly-23.10.4.pkg: ..... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [177/187] Fetching binutils-2.43.1,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [178/187] Fetching py311-mkdocstrings-0.27.0.pkg: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [179/187] Fetching netbox-4.1.10.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [180/187] Fetching py311-dj50-django-taggit-6.1.0.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [181/187] Fetching py311-openssl-24.1.0,1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [182/187] Fetching py311-dj50-django-choices-field-2.3.0.pkg: . done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [183/187] Fetching py311-oauthlib-3.2.2_1.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [184/187] Fetching py311-pymdown-extensions-10.13.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [185/187] Fetching py311-psycopg-pool-3.2.4.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [186/187] Fetching py311-uritemplate-3.0.1.pkg: ... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [187/187] Fetching py311-zope.interface-5.3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/187] Installing gmp-6.3.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/187] Extracting gmp-6.3.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/187] Installing mpfr-4.2.1,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/187] Extracting mpfr-4.2.1,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/187] Installing mpc-1.3.1_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [3/187] Extracting mpc-1.3.1_1: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/187] Installing binutils-2.43.1,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [4/187] Extracting binutils-2.43.1,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/187] Installing gcc13-13.3.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [5/187] Extracting gcc13-13.3.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/187] Installing xorgproto-2024.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [6/187] Extracting xorgproto-2024.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [7/187] Installing openblas-0.3.27,2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [7/187] Extracting openblas-0.3.27,2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [8/187] Installing libXau-1.0.11...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [8/187] Extracting libXau-1.0.11: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [9/187] Installing libXdmcp-1.1.5...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [9/187] Extracting libXdmcp-1.1.5: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [10/187] Installing py311-pycparser-2.22...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [10/187] Extracting py311-pycparser-2.22: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [11/187] Installing libedit-3.1.20240808,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [11/187] Extracting libedit-3.1.20240808,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [12/187] Installing libgpg-error-1.51...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [12/187] Extracting libgpg-error-1.51: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [13/187] Installing suitesparse-config-7.7.0_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [13/187] Extracting suitesparse-config-7.7.0_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [14/187] Installing py311-cffi-1.17.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [14/187] Extracting py311-cffi-1.17.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [15/187] Installing suitesparse-ccolamd-3.3.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [15/187] Extracting suitesparse-ccolamd-3.3.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [16/187] Installing suitesparse-amd-3.3.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [16/187] Extracting suitesparse-amd-3.3.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [17/187] Installing png-1.6.44...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [17/187] Extracting png-1.6.44: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [18/187] Installing libxcb-1.17.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [18/187] Extracting libxcb-1.17.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [19/187] Installing suitesparse-camd-3.3.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [19/187] Extracting suitesparse-camd-3.3.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [20/187] Installing libyaml-0.2.5...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [20/187] Extracting libyaml-0.2.5: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [21/187] Installing py311-six-1.17.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [21/187] Extracting py311-six-1.17.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [22/187] Installing libxml2-2.11.9...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [22/187] Extracting libxml2-2.11.9: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [23/187] Installing libgcrypt-1.11.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [23/187] Extracting libgcrypt-1.11.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [24/187] Installing nspr-4.36...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [24/187] Extracting nspr-4.36: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [25/187] Installing suitesparse-colamd-3.3.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [25/187] Extracting suitesparse-colamd-3.3.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [26/187] Installing sqlite3-3.46.1,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [26/187] Extracting sqlite3-3.46.1,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [27/187] Installing freetype2-2.13.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [27/187] Extracting freetype2-2.13.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [28/187] Installing py311-python-dateutil-2.9.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [28/187] Extracting py311-python-dateutil-2.9.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [29/187] Installing nss-3.107...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [29/187] Extracting nss-3.107: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [30/187] Installing suitesparse-cholmod-5.2.1_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [30/187] Extracting suitesparse-cholmod-5.2.1_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [31/187] Installing libX11-1.8.9,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [31/187] Extracting libX11-1.8.9,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [32/187] Installing py311-markupsafe-2.1.5_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [32/187] Extracting py311-markupsafe-2.1.5_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [33/187] Installing py311-mergedeep-1.3.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [33/187] Extracting py311-mergedeep-1.3.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [34/187] Installing py311-Babel-2.16.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [34/187] Extracting py311-Babel-2.16.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [35/187] Installing libltdl-2.5.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [35/187] Extracting libltdl-2.5.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [36/187] Installing py311-pyasn1-0.6.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [36/187] Extracting py311-pyasn1-0.6.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [37/187] Installing py311-cryptography-42.0.8_5,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [37/187] Extracting py311-cryptography-42.0.8_5,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [38/187] Installing libxslt-1.1.37_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [38/187] Extracting libxslt-1.1.37_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [39/187] Installing py311-pyyaml-6.0.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [39/187] Extracting py311-pyyaml-6.0.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [40/187] Installing py311-pysocks-1.7.1_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [40/187] Extracting py311-pysocks-1.7.1_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [41/187] Installing py311-platformdirs-4.3.6...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [41/187] Extracting py311-platformdirs-4.3.6: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [42/187] Installing libinotify-20240724...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [42/187] Extracting libinotify-20240724: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [43/187] Installing py311-pathspec-0.12.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [43/187] Extracting py311-pathspec-0.12.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [44/187] Installing py311-mkdocs-get-deps-0.2.0_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [44/187] Extracting py311-mkdocs-get-deps-0.2.0_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [45/187] Installing py311-pyasn1-modules-0.4.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [45/187] Extracting py311-pyasn1-modules-0.4.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [46/187] Installing py311-idna-3.10...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [46/187] Extracting py311-idna-3.10: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [47/187] Installing py311-watchdog-4.0.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [47/187] Extracting py311-watchdog-4.0.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [48/187] Installing py311-attrs-24.3.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [48/187] Extracting py311-attrs-24.3.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [49/187] Installing py311-pyjwt-2.8.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [49/187] Extracting py311-pyjwt-2.8.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [50/187] Installing py311-certifi-2024.12.14...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [50/187] Extracting py311-certifi-2024.12.14: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [51/187] Installing py311-pyyaml_env_tag-0.1_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [51/187] Extracting py311-pyyaml_env_tag-0.1_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [52/187] Installing py311-hpack-4.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [52/187] Extracting py311-hpack-4.0.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [53/187] Installing fontconfig-2.15.0_3,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [53/187] Extracting fontconfig-2.15.0_3,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [54/187] Installing py311-ghp-import-2.1.0_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [54/187] Extracting py311-ghp-import-2.1.0_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [55/187] Installing jbigkit-2.1_3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [55/187] Extracting jbigkit-2.1_3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [56/187] Installing py311-Jinja2-3.1.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [56/187] Extracting py311-Jinja2-3.1.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [57/187] Installing lerc-4.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [57/187] Extracting lerc-4.0.0: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [58/187] Installing py311-markdown-3.6...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [58/187] Extracting py311-markdown-3.6: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [59/187] Installing jpeg-turbo-3.0.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [59/187] Extracting jpeg-turbo-3.0.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [60/187] Installing py311-blinker-1.9.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [60/187] Extracting py311-blinker-1.9.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [61/187] Installing py311-hyperframe-6.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [61/187] Extracting py311-hyperframe-6.0.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [62/187] Installing xmlsec1-1.3.6...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [62/187] Extracting xmlsec1-1.3.6: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [63/187] Installing py311-charset-normalizer-3.4.1_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [63/187] Extracting py311-charset-normalizer-3.4.1_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [64/187] Installing libdeflate-1.22...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [64/187] Extracting libdeflate-1.22: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [65/187] Installing suitesparse-umfpack-6.3.3_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [65/187] Extracting suitesparse-umfpack-6.3.3_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [66/187] Installing libXrender-0.9.11...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [66/187] Extracting libXrender-0.9.11: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [67/187] Installing py311-click-8.1.7...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [67/187] Extracting py311-click-8.1.7: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [68/187] Installing libXext-1.3.6,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [68/187] Extracting libXext-1.3.6,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [69/187] Installing py311-rpds-py-0.13.2_10...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [69/187] Extracting py311-rpds-py-0.13.2_10: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [70/187] Installing py311-urllib3-1.26.20,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [70/187] Extracting py311-urllib3-1.26.20,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [71/187] Installing py311-numpy-1.26.4_2,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [71/187] Extracting py311-numpy-1.26.4_2,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [72/187] Installing py311-asgiref-3.8.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [72/187] Extracting py311-asgiref-3.8.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [73/187] Installing py311-hyperlink-21.0.0_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [73/187] Extracting py311-hyperlink-21.0.0_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [74/187] Installing py311-Automat-24.8.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [74/187] Extracting py311-Automat-24.8.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [75/187] Installing py311-sqlparse-0.5.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [75/187] Extracting py311-sqlparse-0.5.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [76/187] Installing py311-defusedxml-0.7.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [76/187] Extracting py311-defusedxml-0.7.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [77/187] Installing libXft-2.3.8...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [77/187] Extracting libXft-2.3.8: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [78/187] Installing py311-pyserial-3.5_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [78/187] Extracting py311-pyserial-3.5_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [79/187] Installing graphite2-1.3.14...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [79/187] Extracting graphite2-1.3.14: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [80/187] Installing py311-lxml-4.9.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [80/187] Extracting py311-lxml-4.9.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [81/187] Installing py311-referencing-0.35.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [81/187] Extracting py311-referencing-0.35.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [82/187] Installing py311-typing-extensions-4.12.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [82/187] Extracting py311-typing-extensions-4.12.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [83/187] Installing tiff-4.7.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [83/187] Extracting tiff-4.7.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [84/187] Installing tcl86-8.6.16_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [84/187] Extracting tcl86-8.6.16_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [85/187] Installing py311-incremental-24.7.2_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [85/187] Extracting py311-incremental-24.7.2_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [86/187] Installing py311-sqlite3-3.11.11_7...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [86/187] Extracting py311-sqlite3-3.11.11_7: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [87/187] Installing py311-service-identity-24.2.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [87/187] Extracting py311-service-identity-24.2.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [88/187] Installing py311-appdirs-1.4.4_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [88/187] Extracting py311-appdirs-1.4.4_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [89/187] Installing py311-isodate-0.7.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [89/187] Extracting py311-isodate-0.7.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [90/187] Installing libXScrnSaver-1.2.4_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [90/187] Extracting libXScrnSaver-1.2.4_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [91/187] Installing py311-requests-2.32.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [91/187] Extracting py311-requests-2.32.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [92/187] Installing py311-priority1-1.3.0_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [92/187] Extracting py311-priority1-1.3.0_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [93/187] Installing py311-xmlsec-1.3.14...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [93/187] Extracting py311-xmlsec-1.3.14: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [94/187] Installing py311-h2-4.1.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [94/187] Extracting py311-h2-4.1.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [95/187] Installing py311-bcrypt-3.2.2_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [95/187] Extracting py311-bcrypt-3.2.2_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [96/187] Installing py311-mdurl-0.1.2_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [96/187] Extracting py311-mdurl-0.1.2_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [97/187] Installing py311-mkdocs-1.6.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [97/187] Extracting py311-mkdocs-1.6.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [98/187] Installing py311-constantly-23.10.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [98/187] Extracting py311-constantly-23.10.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [99/187] Installing py311-openssl-24.1.0,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [99/187] Extracting py311-openssl-24.1.0,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [100/187] Installing py311-oauthlib-3.2.2_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [100/187] Extracting py311-oauthlib-3.2.2_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [101/187] Installing py311-zope.interface-5.3.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [101/187] Extracting py311-zope.interface-5.3.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [102/187] Installing py311-pygments-2.18.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [102/187] Extracting py311-pygments-2.18.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [103/187] Installing py311-python3-openid-3.2.0_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [103/187] Extracting py311-python3-openid-3.2.0_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [104/187] Installing lcms2-2.16_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [104/187] Extracting lcms2-2.16_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [105/187] Installing py311-twisted-24.7.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [105/187] Extracting py311-twisted-24.7.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [106/187] Installing giflib-5.2.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [106/187] Extracting giflib-5.2.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [107/187] Installing py311-mkdocs-autorefs-1.2.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [107/187] Extracting py311-mkdocs-autorefs-1.2.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [108/187] Installing py311-pytz-2024.2,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [108/187] Extracting py311-pytz-2024.2,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [109/187] Installing py311-redis-5.2.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [109/187] Extracting py311-redis-5.2.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [110/187] Installing py311-django50-5.0.10...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [110/187] Extracting py311-django50-5.0.10: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [111/187] Installing py311-bottleneck-1.3.8_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [111/187] Extracting py311-bottleneck-1.3.8_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [112/187] Installing py311-graphql-core-3.2.5...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [112/187] Extracting py311-graphql-core-3.2.5: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [113/187] Installing py311-requests-oauthlib-2.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [113/187] Extracting py311-requests-oauthlib-2.0.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [114/187] Installing fribidi-1.0.16...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [114/187] Extracting fribidi-1.0.16: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [115/187] Installing py311-python3-saml-1.16.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [115/187] Extracting py311-python3-saml-1.16.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [116/187] Installing py311-et_xmlfile-1.1.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [116/187] Extracting py311-et_xmlfile-1.1.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [117/187] Installing py311-jsonschema-specifications-2024.10.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [117/187] Extracting py311-jsonschema-specifications-2024.10.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [118/187] Installing harfbuzz-10.1.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [118/187] Extracting harfbuzz-10.1.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [119/187] Installing py311-tzdata-2024.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [119/187] Extracting py311-tzdata-2024.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [120/187] Installing tk86-8.6.16...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [120/187] Extracting tk86-8.6.16: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [121/187] Installing py311-markdown-it-py-3.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [121/187] Extracting py311-markdown-it-py-3.0.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [122/187] Installing py311-numexpr-2.10.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [122/187] Extracting py311-numexpr-2.10.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [123/187] Installing py311-markdown-callouts-0.4.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [123/187] Extracting py311-markdown-callouts-0.4.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [124/187] Installing py311-docstring-parser-0.15...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [124/187] Extracting py311-docstring-parser-0.15: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [125/187] Installing py311-social-auth-core-4.5.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [125/187] Extracting py311-social-auth-core-4.5.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [126/187] Installing py311-sgmllib3k-1.0.0_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [126/187] Extracting py311-sgmllib3k-1.0.0_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [127/187] Installing py311-paginate-0.5.7...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [127/187] Extracting py311-paginate-0.5.7: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [128/187] Installing openjpeg-2.5.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [128/187] Extracting openjpeg-2.5.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [129/187] Installing py311-dj50-drf-spectacular-sidecar-2024.12.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [129/187] Extracting py311-dj50-drf-spectacular-sidecar-2024.12.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [130/187] Installing py311-dj50-django-js-asset-2.2.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [130/187] Extracting py311-dj50-django-js-asset-2.2.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [131/187] Installing py311-tkinter-3.11.11_7...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [131/187] Extracting py311-tkinter-3.11.11_7: ........ done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [132/187] Installing py311-pytkdocs-0.16.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [132/187] Extracting py311-pytkdocs-0.16.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [133/187] Installing py311-dj50-djangorestframework-3.15.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [133/187] Extracting py311-dj50-djangorestframework-3.15.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [134/187] Installing py311-tabulate-0.9.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [134/187] Extracting py311-tabulate-0.9.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [135/187] Installing py311-psycopg-c-3.1.20...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [135/187] Extracting py311-psycopg-c-3.1.20: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [136/187] Installing py311-xlrd-2.0.1_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [136/187] Extracting py311-xlrd-2.0.1_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [137/187] Installing py311-colorama-0.4.6...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [137/187] Extracting py311-colorama-0.4.6: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [138/187] Installing py311-rq-2.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [138/187] Extracting py311-rq-2.0.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [139/187] Installing libraqm-0.10.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [139/187] Extracting libraqm-0.10.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [140/187] Installing py311-pandas-2.1.4,1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [140/187] Extracting py311-pandas-2.1.4,1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [141/187] Installing py311-mkdocs-material-extensions-1.3.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [141/187] Extracting py311-mkdocs-material-extensions-1.3.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [142/187] Installing py311-prometheus-client-0.17.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [142/187] Extracting py311-prometheus-client-0.17.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [143/187] Installing py311-jsonschema-4.23.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [143/187] Extracting py311-jsonschema-4.23.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [144/187] Installing py311-mkdocstrings-crystal-0.3.7...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [144/187] Extracting py311-mkdocstrings-crystal-0.3.7: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [145/187] Installing py311-rich-13.9.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [145/187] Extracting py311-rich-13.9.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [146/187] Installing py311-setproctitle-1.3.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [146/187] Extracting py311-setproctitle-1.3.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [147/187] Installing libimagequant-4.3.3_4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [147/187] Extracting libimagequant-4.3.3_4: ......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [148/187] Installing webp-1.5.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [148/187] Extracting webp-1.5.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [149/187] Installing py311-openpyxl-3.1.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [149/187] Extracting py311-openpyxl-3.1.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [150/187] Installing py311-regex-2024.7.24...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [150/187] Extracting py311-regex-2024.7.24: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [151/187] Installing py311-dj50-strawberry-graphql-0.254.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [151/187] Extracting py311-dj50-strawberry-graphql-0.254.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [152/187] Installing py311-dj50-django-debug-toolbar-4.4.6...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [152/187] Extracting py311-dj50-django-debug-toolbar-4.4.6: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [153/187] Installing py311-xlwt-1.3.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [153/187] Extracting py311-xlwt-1.3.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [154/187] Installing py311-inflection-0.5.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [154/187] Extracting py311-inflection-0.5.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [155/187] Installing py311-odfpy-1.4.1_2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [155/187] Extracting py311-odfpy-1.4.1_2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [156/187] Installing py311-olefile-0.46...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [156/187] Extracting py311-olefile-0.46: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [157/187] Installing py311-dj50-django-choices-field-2.3.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [157/187] Extracting py311-dj50-django-choices-field-2.3.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [158/187] Installing py311-pymdown-extensions-10.13...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [158/187] Extracting py311-pymdown-extensions-10.13: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [159/187] Installing py311-psycopg-pool-3.2.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [159/187] Extracting py311-psycopg-pool-3.2.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [160/187] Installing py311-uritemplate-3.0.1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [160/187] Extracting py311-uritemplate-3.0.1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [161/187] Installing py311-mkdocs-material-9.5.49...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [161/187] Extracting py311-mkdocs-material-9.5.49: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [162/187] Installing py311-dj50-drf-spectacular-0.28.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [162/187] Extracting py311-dj50-drf-spectacular-0.28.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [163/187] Installing py311-dj50-django-htmx-1.21.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [163/187] Extracting py311-dj50-django-htmx-1.21.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [164/187] Installing py311-dj50-django-rich-1.13.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [164/187] Extracting py311-dj50-django-rich-1.13.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [165/187] Installing py311-dj50-django-redis-5.4.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [165/187] Extracting py311-dj50-django-redis-5.4.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [166/187] Installing py311-dj50-django-filter-24.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [166/187] Extracting py311-dj50-django-filter-24.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [167/187] Installing py311-dj50-django-rq-3.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [167/187] Extracting py311-dj50-django-rq-3.0.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [168/187] Installing py311-svgwrite-1.4.3...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [168/187] Extracting py311-svgwrite-1.4.3: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [169/187] Installing py311-django-pglocks-1.0.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [169/187] Extracting py311-django-pglocks-1.0.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [170/187] Installing py311-dj50-strawberry-graphql-django-0.52.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [170/187] Extracting py311-dj50-strawberry-graphql-django-0.52.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [171/187] Installing py311-dj50-django-timezone-field-7.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [171/187] Extracting py311-dj50-django-timezone-field-7.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [172/187] Installing py311-dj50-django-tables2-2.7.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [172/187] Extracting py311-dj50-django-tables2-2.7.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [173/187] Installing py311-nh3-0.2.20...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [173/187] Extracting py311-nh3-0.2.20: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [174/187] Installing py311-feedparser-6.0.11...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [174/187] Extracting py311-feedparser-6.0.11: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [175/187] Installing py311-psycopg-3.1.20...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [175/187] Extracting py311-psycopg-3.1.20: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [176/187] Installing py311-dj50-django-cors-headers-4.6.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [176/187] Extracting py311-dj50-django-cors-headers-4.6.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [177/187] Installing py311-netaddr-1.3.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [177/187] Extracting py311-netaddr-1.3.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [178/187] Installing py311-mkdocstrings-python-legacy-0.2.4...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [178/187] Extracting py311-mkdocstrings-python-legacy-0.2.4: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [179/187] Installing py311-dj50-django-mptt-0.16.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [179/187] Extracting py311-dj50-django-mptt-0.16.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [180/187] Installing py311-dj50-django-prometheus-2.3.1_1...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [180/187] Extracting py311-dj50-django-prometheus-2.3.1_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [181/187] Installing py311-gunicorn-23.0.0_1...
===> Creating groups
Creating group 'gunicorn' with gid '343'
===> Creating users
Creating user 'gunicorn' with uid '343'
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [181/187] Extracting py311-gunicorn-23.0.0_1: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [182/187] Installing py311-tablib-3.7.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [182/187] Extracting py311-tablib-3.7.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [183/187] Installing py311-pillow-11.0.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [183/187] Extracting py311-pillow-11.0.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [184/187] Installing py311-social-auth-app-django-5.4.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [184/187] Extracting py311-social-auth-app-django-5.4.2: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [185/187] Installing py311-mkdocstrings-0.27.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [185/187] Extracting py311-mkdocstrings-0.27.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [186/187] Installing py311-dj50-django-taggit-6.1.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [186/187] Extracting py311-dj50-django-taggit-6.1.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [187/187] Installing netbox-4.1.10...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [187/187] Extracting netbox-4.1.10: .......... done
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
Message from gcc13-13.3.0:

--
To ensure binaries built with this toolchain find appropriate versions
of the necessary run-time libraries, you may want to link using

  -Wl,-rpath=/usr/local/lib/gcc13

For ports leveraging USE_GCC, USES=compiler, or USES=fortran this happens
transparently.
=====
Message from freetype2-2.13.3:

--
The 2.7.x series now uses the new subpixel hinting mode (V40 port's option) as
the default, emulating a modern version of ClearType. This change inevitably
leads to different rendering results, and you might change port's options to
adapt it to your taste (or use the new "FREETYPE_PROPERTIES" environment
variable).

The environment variable "FREETYPE_PROPERTIES" can be used to control the
driver properties. Example:

FREETYPE_PROPERTIES=truetype:interpreter-version=35 \
	cff:no-stem-darkening=1 \
	autofitter:warping=1

This allows to select, say, the subpixel hinting mode at runtime for a given
application.

If LONG_PCF_NAMES port's option was enabled, the PCF family names may include
the foundry and information whether they contain wide characters. For example,
"Sony Fixed" or "Misc Fixed Wide", instead of "Fixed". This can be disabled at
run time with using pcf:no-long-family-names property, if needed. Example:

FREETYPE_PROPERTIES=pcf:no-long-family-names=1

How to recreate fontconfig cache with using such environment variable,
if needed:
# env FREETYPE_PROPERTIES=pcf:no-long-family-names=1 fc-cache -fsv

The controllable properties are listed in the section "Controlling FreeType
Modules" in the reference's table of contents
(/usr/local/share/doc/freetype2/reference/index.html, if documentation was installed).
=====
Message from libinotify-20240724:

--
You might want to consider increasing the kern.maxfiles tunable if you plan
to use this library for applications that need to monitor activity of a lot
of files.
=====
Message from py311-urllib3-1.26.20,1:

--
Since version 1.25 HTTPS connections are now verified by default which is done
via "cert_reqs = 'CERT_REQUIRED'".  While certificate verification can be
disabled via "cert_reqs = 'CERT_NONE'", it's highly recommended to leave it on.

Various consumers of net/py-urllib3 already have implemented routines that
either explicitly enable or disable HTTPS certificate verification (e.g. via
configuration settings, CLI arguments, etc.).

Yet it may happen that there are still some consumers which don't explicitly
enable/disable certificate verification for HTTPS connections which could then
lead to errors (as is often the case with self-signed certificates).

In case of an error one should try first to temporarily disable certificate
verification of the problematic urllib3 consumer to see if that approach will
remedy the issue.
=====
Message from py311-Automat-24.8.1:

--
Install graphics/py-graphviz and devel/py-twisted to enable state
machine visualization (`automat-visualize`).
=====
Message from py311-mkdocs-1.6.1:

--
If you are using the Python v3.x version and a non-Unicode locale you'll get a runtime error when mkdocs is executed..

In that case please set the locale to a Unicode locale first, e.g. en_US.UTF-8 or similar, before starting mkdocs.
=====
Message from py311-pandas-2.1.4,1:

--
Install math/py-statsmodels to enable parts of pandas.stats.
Install devel/py-xarray to enable the to_xarray() function.
=====
Message from netbox-4.1.10:

--
Please note that NetBox requires a PostgreSQL database server, which uses its
built-in network address datatypes. Thus NetBox won't work with other RDBMS's,
e.g. MySQL, MariaDB, etc.

For installation instructions please refer to the related wiki page:

- https://wiki.freebsd.org/Ports/net-mgmt/netbox
Step 29: Install package py311-netbox-secrets
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	py311-netbox-secrets: 2.1.2
	py311-pycryptodome: 3.21.0

Number of packages to be installed: 2

The process will require 10 MiB more space.
2 MiB to be downloaded.
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching py311-netbox-secrets-2.1.2.pkg: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching py311-pycryptodome-3.21.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Installing py311-pycryptodome-3.21.0...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting py311-pycryptodome-3.21.0: .......... done
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Installing py311-netbox-secrets-2.1.2...
[netbox-amd64-14_2.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting py311-netbox-secrets-2.1.2: .......... done
=====
Message from py311-pycryptodome-3.21.0:

--
Install the math/gmp port to enable accelerated processing with the GNU
Multiple Precision Arithmetic Library. PyCryptodome will use the
optional enhancement at runtime automatically if the library is
available.
=====
Message from py311-netbox-secrets-2.1.2:

--
To enable the plugin please do the following steps:

1. Add/update the following line in the netbox configuration (usually
   /usr/local/share/netbox/netbox/configuration.py):

   PLUGINS = ['netbox_secrets']

2. Run NetBox migrations and collect static files:

   # cd /usr/local/share/netbox
   # python3.11 manage.py migrate
   # python3.11 manage.py collectstatic --no-input

3. Restart WSGI/httpd environment (supervisord/apache/nginx/etc.)
Step 30: Clean package installation
The following package files will be deleted:
	/var/cache/pkg/py311-dj50-django-tables2-2.7.0~9a5bbc6e69.pkg
	/var/cache/pkg/py311-rpds-py-0.13.2_10~fc5ef216c3.pkg
	/var/cache/pkg/py311-dj50-django-filter-24.3.pkg
	/var/cache/pkg/py311-idna-3.10.pkg
	/var/cache/pkg/py311-cryptography-42.0.8_5,1.pkg
	/var/cache/pkg/py311-incremental-24.7.2_1.pkg
	/var/cache/pkg/perl5-5.36.3_2.pkg
	/var/cache/pkg/curl-8.11.1_1.pkg
	/var/cache/pkg/py311-xmlsec-1.3.14.pkg
	/var/cache/pkg/py311-charset-normalizer-3.4.1_1.pkg
	/var/cache/pkg/py311-click-8.1.7~5605ba1b63.pkg
	/var/cache/pkg/py311-setproctitle-1.3.3.pkg
	/var/cache/pkg/binutils-2.43.1,1.pkg
	/var/cache/pkg/py311-pycparser-2.22~7cf77f4e52.pkg
	/var/cache/pkg/py311-click-8.1.7.pkg
	/var/cache/pkg/libedit-3.1.20240808,1.pkg
	/var/cache/pkg/mpc-1.3.1_1~7f2817fcb5.pkg
	/var/cache/pkg/py311-netbox-secrets-2.1.2~10a086fb5d.pkg
	/var/cache/pkg/py311-odfpy-1.4.1_2~db1ee0a914.pkg
	/var/cache/pkg/p5-Net-SSLeay-1.94.pkg
	/var/cache/pkg/py311-dj50-django-mptt-0.16.0.pkg
	/var/cache/pkg/py311-svgwrite-1.4.3~647ee63d6e.pkg
	/var/cache/pkg/py311-dj50-django-rq-3.0.0.pkg
	/var/cache/pkg/p5-IO-Socket-SSL-2.089.pkg
	/var/cache/pkg/nspr-4.36~3e3a1325e1.pkg
	/var/cache/pkg/py311-uritemplate-3.0.1.pkg
	/var/cache/pkg/py311-paginate-0.5.7~b84e52b0a1.pkg
	/var/cache/pkg/py311-dj50-django-filter-24.3~4e7c88a697.pkg
	/var/cache/pkg/p5-HTTP-Message-7.00.pkg
	/var/cache/pkg/py311-openssl-24.1.0,1~1ef6bfeddb.pkg
	/var/cache/pkg/py311-dj50-django-taggit-6.1.0.pkg
	/var/cache/pkg/fribidi-1.0.16~ecaddb89a9.pkg
	/var/cache/pkg/py311-jsonschema-specifications-2024.10.1~101d6859f1.pkg
	/var/cache/pkg/consul-1.20.1_1.pkg
	/var/cache/pkg/py311-ghp-import-2.1.0_2.pkg
	/var/cache/pkg/py311-regex-2024.7.24.pkg
	/var/cache/pkg/py311-dj50-strawberry-graphql-0.254.0.pkg
	/var/cache/pkg/py311-et_xmlfile-1.1.0~528f8c121e.pkg
	/var/cache/pkg/expat-2.6.4.pkg
	/var/cache/pkg/py311-dj50-django-rich-1.13.0~bd502f5f70.pkg
	/var/cache/pkg/py311-cffi-1.17.1.pkg
	/var/cache/pkg/py311-jsonschema-specifications-2024.10.1.pkg
	/var/cache/pkg/postgresql16-client-16.6.pkg
	/var/cache/pkg/suitesparse-config-7.7.0_1~ca166f2860.pkg
	/var/cache/pkg/pcre2-10.43.pkg
	/var/cache/pkg/libxcb-1.17.0~e33db93bf6.pkg
	/var/cache/pkg/py311-xlwt-1.3.0.pkg
	/var/cache/pkg/py311-hyperframe-6.0.0.pkg
	/var/cache/pkg/py311-pyasn1-modules-0.4.0~33825e904c.pkg
	/var/cache/pkg/py311-sqlite3-3.11.11_7~ffd389e2ee.pkg
	/var/cache/pkg/suitesparse-cholmod-5.2.1_1~14e266329e.pkg
	/var/cache/pkg/py311-requests-2.32.3~e5f8bcf6bd.pkg
	/var/cache/pkg/py311-python3-saml-1.16.0.pkg
	/var/cache/pkg/gmp-6.3.0~248a892909.pkg
	/var/cache/pkg/p5-TimeDate-2.33,1.pkg
	/var/cache/pkg/gcc13-13.3.0.pkg
	/var/cache/pkg/json-c-0.18.pkg
	/var/cache/pkg/brotli-1.1.0,1.pkg
	/var/cache/pkg/libXau-1.0.11~19e0591dda.pkg
	/var/cache/pkg/py311-dj50-drf-spectacular-0.28.0.pkg
	/var/cache/pkg/openblas-0.3.27,2.pkg
	/var/cache/pkg/py311-dj50-django-mptt-0.16.0~42dc7c0a1f.pkg
	/var/cache/pkg/py311-typing-extensions-4.12.2~42767d1487.pkg
	/var/cache/pkg/xmlsec1-1.3.6.pkg
	/var/cache/pkg/py311-mkdocs-autorefs-1.2.0~74edf67b30.pkg
	/var/cache/pkg/py311-pip-23.3.2_3.pkg
	/var/cache/pkg/py311-mkdocs-material-9.5.49.pkg
	/var/cache/pkg/py311-markdown-3.6~9bf893c47d.pkg
	/var/cache/pkg/p5-LWP-MediaTypes-6.04~1bb1b30f28.pkg
	/var/cache/pkg/py311-setuptools-63.1.0_1.pkg
	/var/cache/pkg/py311-olefile-0.46.pkg
	/var/cache/pkg/py311-dj50-strawberry-graphql-django-0.52.0.pkg
	/var/cache/pkg/py311-twisted-24.7.0.pkg
	/var/cache/pkg/py311-psycopg-c-3.1.20.pkg
	/var/cache/pkg/libXft-2.3.8~291f5415b4.pkg
	/var/cache/pkg/py311-gunicorn-23.0.0_1.pkg
	/var/cache/pkg/py311-asgiref-3.8.1~a945b51655.pkg
	/var/cache/pkg/libxml2-2.11.9.pkg
	/var/cache/pkg/suitesparse-umfpack-6.3.3_1~fd7e73f84b.pkg
	/var/cache/pkg/expat-2.6.4~2c9dd0e0b2.pkg
	/var/cache/pkg/py311-dj50-django-taggit-6.1.0~fd22c2d7d8.pkg
	/var/cache/pkg/py311-appdirs-1.4.4_1.pkg
	/var/cache/pkg/libXdmcp-1.1.5.pkg
	/var/cache/pkg/py311-dj50-drf-spectacular-0.28.0~fc96c8a393.pkg
	/var/cache/pkg/py311-dj50-strawberry-graphql-django-0.52.0~c0cbaa22a9.pkg
	/var/cache/pkg/mpdecimal-4.0.0.pkg
	/var/cache/pkg/py311-pyasn1-0.6.0.pkg
	/var/cache/pkg/python3-3_4.pkg
	/var/cache/pkg/py311-dj50-django-redis-5.4.0~dca4426325.pkg
	/var/cache/pkg/py311-dj50-django-tables2-2.7.0.pkg
	/var/cache/pkg/py311-hyperframe-6.0.0~775b9214d7.pkg
	/var/cache/pkg/py311-sgmllib3k-1.0.0_1.pkg
	/var/cache/pkg/py311-redis-5.2.1~718dcd57cf.pkg
	/var/cache/pkg/py311-psycopg-pool-3.2.4.pkg
	/var/cache/pkg/py311-dj50-django-timezone-field-7.0~c42d54800e.pkg
	/var/cache/pkg/py311-bcrypt-3.2.2_1~d6089d3209.pkg
	/var/cache/pkg/py311-dj50-django-cors-headers-4.6.0.pkg
	/var/cache/pkg/socat-1.8.0.2~4c9b6e3e0b.pkg
	/var/cache/pkg/py311-python3-openid-3.2.0_2.pkg
	/var/cache/pkg/py311-dj50-django-redis-5.4.0.pkg
	/var/cache/pkg/sudo-1.9.16p2.pkg
	/var/cache/pkg/p5-IO-Socket-IP-0.43~916e1c7565.pkg
	/var/cache/pkg/p5-IO-Socket-SSL-2.089~326e0e1a01.pkg
	/var/cache/pkg/go121-1.21.13_1.pkg
	/var/cache/pkg/py311-xlrd-2.0.1_1~6da4092199.pkg
	/var/cache/pkg/py311-setuptools-63.1.0_1~877f61eca8.pkg
	/var/cache/pkg/py311-rq-2.0.0~4a66a9ed67.pkg
	/var/cache/pkg/fribidi-1.0.16.pkg
	/var/cache/pkg/harfbuzz-10.1.0~d44d5da289.pkg
	/var/cache/pkg/py311-pandas-2.1.4,1~43042d593c.pkg
	/var/cache/pkg/py311-numpy-1.26.4_2,1~265cbfbae5.pkg
	/var/cache/pkg/py311-service-identity-24.2.0~5c0fe23a1a.pkg
	/var/cache/pkg/redis-7.4.2.pkg
	/var/cache/pkg/libxslt-1.1.37_1~135c9f1e9e.pkg
	/var/cache/pkg/libXext-1.3.6,1~770bb5408b.pkg
	/var/cache/pkg/py311-pycryptodome-3.21.0~31dcc89e24.pkg
	/var/cache/pkg/py311-inflection-0.5.1~89405f047d.pkg
	/var/cache/pkg/py311-jsonschema-4.23.0.pkg
	/var/cache/pkg/p5-Authen-SASL-2.17_1.pkg
	/var/cache/pkg/nss-3.107~971a207d6f.pkg
	/var/cache/pkg/py311-mkdocs-get-deps-0.2.0_1.pkg
	/var/cache/pkg/libXau-1.0.11.pkg
	/var/cache/pkg/py311-dj50-django-debug-toolbar-4.4.6.pkg
	/var/cache/pkg/python311-3.11.11~c52249c239.pkg
	/var/cache/pkg/py311-psycopg-3.1.20.pkg
	/var/cache/pkg/syslog-ng-4.8.1_3.pkg
	/var/cache/pkg/py311-prometheus-client-0.17.1~d6bdef3e8b.pkg
	/var/cache/pkg/libltdl-2.5.4~901facedd2.pkg
	/var/cache/pkg/py311-python-dateutil-2.9.0.pkg
	/var/cache/pkg/py311-django-pglocks-1.0.4~db4b0d7c02.pkg
	/var/cache/pkg/giflib-5.2.2.pkg
	/var/cache/pkg/p5-HTML-Parser-3.83.pkg
	/var/cache/pkg/py311-bottleneck-1.3.8_1.pkg
	/var/cache/pkg/libXext-1.3.6,1.pkg
	/var/cache/pkg/ivykis-0.43.2.pkg
	/var/cache/pkg/py311-tkinter-3.11.11_7~a4cce6ef51.pkg
	/var/cache/pkg/py311-incremental-24.7.2_1~fad7996f70.pkg
	/var/cache/pkg/glib-2.80.5_1,2~318ba5b01c.pkg
	/var/cache/pkg/py311-gunicorn-23.0.0_1~08028320eb.pkg
	/var/cache/pkg/py311-pyasn1-modules-0.4.0.pkg
	/var/cache/pkg/py311-nh3-0.2.20~4a7bc8af95.pkg
	/var/cache/pkg/py311-tablib-3.7.0.pkg
	/var/cache/pkg/py311-markupsafe-2.1.5_1~4cb5437687.pkg
	/var/cache/pkg/py311-isodate-0.7.2.pkg
	/var/cache/pkg/py311-psycopg-c-3.1.20~948190ac3d.pkg
	/var/cache/pkg/py311-inflection-0.5.1.pkg
	/var/cache/pkg/py311-sqlparse-0.5.3.pkg
	/var/cache/pkg/p5-HTTP-Message-7.00~0d06d25e55.pkg
	/var/cache/pkg/py311-social-auth-core-4.5.4.pkg
	/var/cache/pkg/py311-dj50-django-js-asset-2.2.0~f9d4e1d047.pkg
	/var/cache/pkg/py311-platformdirs-4.3.6~003735f525.pkg
	/var/cache/pkg/tk86-8.6.16~1facf0f0b6.pkg
	/var/cache/pkg/py311-charset-normalizer-3.4.1_1~ee54ea9020.pkg
	/var/cache/pkg/py311-constantly-23.10.4.pkg
	/var/cache/pkg/py311-pyyaml-6.0.1~99178602a6.pkg
	/var/cache/pkg/py311-olefile-0.46~4e3b29fac5.pkg
	/var/cache/pkg/libraqm-0.10.2.pkg
	/var/cache/pkg/webp-1.5.0.pkg
	/var/cache/pkg/py311-mkdocs-material-extensions-1.3.1~207e34a6c3.pkg
	/var/cache/pkg/libxml2-2.11.9~b7a7ee0401.pkg
	/var/cache/pkg/py311-watchdog-4.0.2.pkg
	/var/cache/pkg/py311-tablib-3.7.0~28e6351bef.pkg
	/var/cache/pkg/py311-openpyxl-3.1.1.pkg
	/var/cache/pkg/python311-3.11.11.pkg
	/var/cache/pkg/py311-mkdocstrings-crystal-0.3.7~4ed092e56d.pkg
	/var/cache/pkg/node_exporter-1.8.2~d3c8df78fe.pkg
	/var/cache/pkg/py311-certifi-2024.12.14.pkg
	/var/cache/pkg/go121-1.21.13_1~c8e3d4d201.pkg
	/var/cache/pkg/py311-Babel-2.16.0~97f3605068.pkg
	/var/cache/pkg/lerc-4.0.0.pkg
	/var/cache/pkg/py311-mkdocs-get-deps-0.2.0_1~8d48b85e01.pkg
	/var/cache/pkg/gmake-4.4.1~76039d8d99.pkg
	/var/cache/pkg/py311-dj50-django-choices-field-2.3.0~cac7c91ffe.pkg
	/var/cache/pkg/py311-python3-saml-1.16.0~47cbaf5080.pkg
	/var/cache/pkg/sudo-1.9.16p2~87515327e8.pkg
	/var/cache/pkg/openblas-0.3.27,2~da15b083a6.pkg
	/var/cache/pkg/py311-constantly-23.10.4~2cdb1870f4.pkg
	/var/cache/pkg/libedit-3.1.20240808,1~f5ee367ad6.pkg
	/var/cache/pkg/py311-colorama-0.4.6~8deb302091.pkg
	/var/cache/pkg/suitesparse-camd-3.3.2~1ff795d6e8.pkg
	/var/cache/pkg/py311-pandas-2.1.4,1.pkg
	/var/cache/pkg/tiff-4.7.0~c6cde05b32.pkg
	/var/cache/pkg/gcc13-13.3.0~7ab58a2ae9.pkg
	/var/cache/pkg/py311-rich-13.9.4.pkg
	/var/cache/pkg/py311-mkdocs-1.6.1~1302efca04.pkg
	/var/cache/pkg/py311-dj50-drf-spectacular-sidecar-2024.12.1~2654252670.pkg
	/var/cache/pkg/py311-six-1.17.0.pkg
	/var/cache/pkg/libgpg-error-1.51~9e0a84dc34.pkg
	/var/cache/pkg/graphite2-1.3.14~972dff4074.pkg
	/var/cache/pkg/git-2.47.1~6e6deb7f9f.pkg
	/var/cache/pkg/p5-HTML-Tagset-3.24.pkg
	/var/cache/pkg/py311-oauthlib-3.2.2_1.pkg
	/var/cache/pkg/py311-Jinja2-3.1.4~7a025a63be.pkg
	/var/cache/pkg/libgcrypt-1.11.0~7ef2bc1f30.pkg
	/var/cache/pkg/p5-Clone-0.47~f797e6f09a.pkg
	/var/cache/pkg/py311-feedparser-6.0.11.pkg
	/var/cache/pkg/py311-django50-5.0.10.pkg
	/var/cache/pkg/fontconfig-2.15.0_3,1.pkg
	/var/cache/pkg/lerc-4.0.0~48ff323b58.pkg
	/var/cache/pkg/libdeflate-1.22~a5d1b47c00.pkg
	/var/cache/pkg/py311-watchdog-4.0.2~8aa691a047.pkg
	/var/cache/pkg/png-1.6.44.pkg
	/var/cache/pkg/libyaml-0.2.5.pkg
	/var/cache/pkg/py311-mkdocstrings-python-legacy-0.2.4.pkg
	/var/cache/pkg/libxslt-1.1.37_1.pkg
	/var/cache/pkg/py311-regex-2024.7.24~f7f9bb9698.pkg
	/var/cache/pkg/py311-python-dateutil-2.9.0~494e938d87.pkg
	/var/cache/pkg/py311-sqlparse-0.5.3~a3dce5ce1c.pkg
	/var/cache/pkg/acme.sh-3.1.0~4fc4b1c96c.pkg
	/var/cache/pkg/py311-packaging-24.2~f0b8a16830.pkg
	/var/cache/pkg/libyaml-0.2.5~41efac6a24.pkg
	/var/cache/pkg/openjpeg-2.5.3~682c6c9f27.pkg
	/var/cache/pkg/py311-dj50-django-rich-1.13.0.pkg
	/var/cache/pkg/py311-openpyxl-3.1.1~1872bed363.pkg
	/var/cache/pkg/py311-pymdown-extensions-10.13.pkg
	/var/cache/pkg/py311-typing-extensions-4.12.2.pkg
	/var/cache/pkg/p5-Encode-Locale-1.05~e24c77aa28.pkg
	/var/cache/pkg/suitesparse-colamd-3.3.3~f9d73fac76.pkg
	/var/cache/pkg/py311-mkdocs-1.6.1.pkg
	/var/cache/pkg/py311-pysocks-1.7.1_1.pkg
	/var/cache/pkg/py311-dj50-django-cors-headers-4.6.0~1993306b13.pkg
	/var/cache/pkg/suitesparse-amd-3.3.2~d257580973.pkg
	/var/cache/pkg/p5-Clone-0.47.pkg
	/var/cache/pkg/perl5-5.36.3_2~43d0635243.pkg
	/var/cache/pkg/py311-service-identity-24.2.0.pkg
	/var/cache/pkg/py311-nh3-0.2.20.pkg
	/var/cache/pkg/libraqm-0.10.2~baaf11b2e5.pkg
	/var/cache/pkg/binutils-2.43.1,1~9f1519a1a0.pkg
	/var/cache/pkg/py311-hyperlink-21.0.0_1~916a620b5c.pkg
	/var/cache/pkg/postgresql16-client-16.6~07db50ac6a.pkg
	/var/cache/pkg/py311-pyjwt-2.8.0~7412ceb8b3.pkg
	/var/cache/pkg/python3-3_4~39eecf608a.pkg
	/var/cache/pkg/nginx-1.26.2_9,3~bf71818ce2.pkg
	/var/cache/pkg/suitesparse-config-7.7.0_1.pkg
	/var/cache/pkg/py311-blinker-1.9.0.pkg
	/var/cache/pkg/consul-1.20.1_1~edf2095d46.pkg
	/var/cache/pkg/py311-pytz-2024.2,1~f3dc53325c.pkg
	/var/cache/pkg/redis-7.4.2~415db43b5f.pkg
	/var/cache/pkg/py311-dj50-djangorestframework-3.15.2~7a732e0228.pkg
	/var/cache/pkg/curl-8.11.1_1~be24425f34.pkg
	/var/cache/pkg/py311-numpy-1.26.4_2,1.pkg
	/var/cache/pkg/py311-Automat-24.8.1.pkg
	/var/cache/pkg/py311-markupsafe-2.1.5_1.pkg
	/var/cache/pkg/py311-redis-5.2.1.pkg
	/var/cache/pkg/mpfr-4.2.1,1.pkg
	/var/cache/pkg/libgpg-error-1.51.pkg
	/var/cache/pkg/xmlsec1-1.3.6~9ef70ca455.pkg
	/var/cache/pkg/py311-social-auth-app-django-5.4.2~df5c9f14d6.pkg
	/var/cache/pkg/py311-mkdocstrings-python-legacy-0.2.4~492a5abbc5.pkg
	/var/cache/pkg/p5-LWP-MediaTypes-6.04.pkg
	/var/cache/pkg/py311-dj50-django-prometheus-2.3.1_1~c1c88d6614.pkg
	/var/cache/pkg/py311-isodate-0.7.2~28ac693a50.pkg
	/var/cache/pkg/py311-mkdocs-material-9.5.49~f8d715a0ae.pkg
	/var/cache/pkg/py311-graphql-core-3.2.5~ed6b0fa75c.pkg
	/var/cache/pkg/p5-Error-0.17029.pkg
	/var/cache/pkg/xorgproto-2024.1.pkg
	/var/cache/pkg/py311-hyperlink-21.0.0_1.pkg
	/var/cache/pkg/brotli-1.1.0,1~4ecc819658.pkg
	/var/cache/pkg/py311-dj50-drf-spectacular-sidecar-2024.12.1.pkg
	/var/cache/pkg/py311-defusedxml-0.7.1.pkg
	/var/cache/pkg/py311-rpds-py-0.13.2_10.pkg
	/var/cache/pkg/harfbuzz-10.1.0.pkg
	/var/cache/pkg/p5-Mozilla-CA-20240924.pkg
	/var/cache/pkg/py311-pathspec-0.12.1~d85d3fefa9.pkg
	/var/cache/pkg/py311-pip-23.3.2_3~81367bbce0.pkg
	/var/cache/pkg/py311-tzdata-2024.2.pkg
	/var/cache/pkg/py311-pathspec-0.12.1.pkg
	/var/cache/pkg/py311-requests-2.32.3.pkg
	/var/cache/pkg/libffi-3.4.6~e038c4b1cf.pkg
	/var/cache/pkg/py311-docstring-parser-0.15~f99e56c198.pkg
	/var/cache/pkg/sqlite3-3.46.1,1~488c793ef1.pkg
	/var/cache/pkg/py311-cryptography-42.0.8_5,1~4b248f071c.pkg
	/var/cache/pkg/py311-twisted-24.7.0~ee277752e4.pkg
	/var/cache/pkg/py311-bottleneck-1.3.8_1~1334773ee7.pkg
	/var/cache/pkg/py311-docstring-parser-0.15.pkg
	/var/cache/pkg/py311-mdurl-0.1.2_2.pkg
	/var/cache/pkg/libXrender-0.9.11.pkg
	/var/cache/pkg/suitesparse-ccolamd-3.3.3.pkg
	/var/cache/pkg/py311-openssl-24.1.0,1.pkg
	/var/cache/pkg/p5-CGI-4.66~3b343e71bf.pkg
	/var/cache/pkg/p5-HTTP-Date-6.06.pkg
	/var/cache/pkg/p5-HTTP-Date-6.06~1955c3a50e.pkg
	/var/cache/pkg/py311-django-pglocks-1.0.4.pkg
	/var/cache/pkg/py311-numexpr-2.10.2.pkg
	/var/cache/pkg/py311-mkdocs-autorefs-1.2.0.pkg
	/var/cache/pkg/py311-netaddr-1.3.0.pkg
	/var/cache/pkg/glib-2.80.5_1,2.pkg
	/var/cache/pkg/suitesparse-umfpack-6.3.3_1.pkg
	/var/cache/pkg/py311-markdown-callouts-0.4.0.pkg
	/var/cache/pkg/suitesparse-cholmod-5.2.1_1.pkg
	/var/cache/pkg/py311-tabulate-0.9.0~c9f489bc35.pkg
	/var/cache/pkg/py311-markdown-it-py-3.0.0~a0a5434947.pkg
	/var/cache/pkg/node_exporter-1.8.2.pkg
	/var/cache/pkg/tk86-8.6.16.pkg
	/var/cache/pkg/py311-python3-openid-3.2.0_2~66f76206ef.pkg
	/var/cache/pkg/suitesparse-amd-3.3.2.pkg
	/var/cache/pkg/py311-pycparser-2.22.pkg
	/var/cache/pkg/git-2.47.1.pkg
	/var/cache/pkg/py311-tkinter-3.11.11_7.pkg
	/var/cache/pkg/json-c-0.18~4c2b04b9f9.pkg
	/var/cache/pkg/suitesparse-camd-3.3.2.pkg
	/var/cache/pkg/nss-3.107.pkg
	/var/cache/pkg/freetype2-2.13.3.pkg
	/var/cache/pkg/py311-pyserial-3.5_2~f4311233bb.pkg
	/var/cache/pkg/libXdmcp-1.1.5~c0333f0ce8.pkg
	/var/cache/pkg/py311-packaging-24.2.pkg
	/var/cache/pkg/p5-URI-5.31~9dc3f278f7.pkg
	/var/cache/pkg/py311-social-auth-app-django-5.4.2.pkg
	/var/cache/pkg/png-1.6.44~a626e09ec4.pkg
	/var/cache/pkg/py311-markdown-it-py-3.0.0.pkg
	/var/cache/pkg/py311-mergedeep-1.3.4.pkg
	/var/cache/pkg/libimagequant-4.3.3_4~ae398640b1.pkg
	/var/cache/pkg/jpeg-turbo-3.0.4.pkg
	/var/cache/pkg/py311-pyyaml_env_tag-0.1_2~03bd992c45.pkg
	/var/cache/pkg/py311-Jinja2-3.1.4.pkg
	/var/cache/pkg/py311-rich-13.9.4~7e268124fb.pkg
	/var/cache/pkg/py311-asgiref-3.8.1.pkg
	/var/cache/pkg/py311-odfpy-1.4.1_2.pkg
	/var/cache/pkg/py311-pytkdocs-0.16.2~bfd8753b91.pkg
	/var/cache/pkg/graphite2-1.3.14.pkg
	/var/cache/pkg/py311-mkdocs-material-extensions-1.3.1.pkg
	/var/cache/pkg/py311-zope.interface-5.3.0.pkg
	/var/cache/pkg/py311-tzdata-2024.2~62c0d25e61.pkg
	/var/cache/pkg/py311-prometheus-client-0.17.1.pkg
	/var/cache/pkg/py311-urllib3-1.26.20,1.pkg
	/var/cache/pkg/py311-xmlsec-1.3.14~d1a36b91c1.pkg
	/var/cache/pkg/py311-pygments-2.18.0~fa5390e135.pkg
	/var/cache/pkg/tiff-4.7.0.pkg
	/var/cache/pkg/libinotify-20240724~e1e135f04a.pkg
	/var/cache/pkg/p5-IO-HTML-1.004~59e4c4e9db.pkg
	/var/cache/pkg/py311-colorama-0.4.6.pkg
	/var/cache/pkg/libgcrypt-1.11.0.pkg
	/var/cache/pkg/py311-psycopg-pool-3.2.4~7f319a7178.pkg
	/var/cache/pkg/libffi-3.4.6.pkg
	/var/cache/pkg/lcms2-2.16_2~7ec3b54420.pkg
	/var/cache/pkg/p5-IO-Socket-IP-0.43.pkg
	/var/cache/pkg/suitesparse-ccolamd-3.3.3~a7520fe29c.pkg
	/var/cache/pkg/py311-sgmllib3k-1.0.0_1~fc359bb2b5.pkg
	/var/cache/pkg/py311-six-1.17.0~aa1e72f57c.pkg
	/var/cache/pkg/py311-h2-4.1.0~db895bc96e.pkg
	/var/cache/pkg/py311-dj50-django-debug-toolbar-4.4.6~bb4715c8e9.pkg
	/var/cache/pkg/py311-svgwrite-1.4.3.pkg
	/var/cache/pkg/py311-attrs-24.3.0.pkg
	/var/cache/pkg/netbox-4.1.10~7531feef75.pkg
	/var/cache/pkg/acme.sh-3.1.0.pkg
	/var/cache/pkg/py311-mergedeep-1.3.4~b389b020bb.pkg
	/var/cache/pkg/p5-HTML-Parser-3.83~2c0054980d.pkg
	/var/cache/pkg/py311-attrs-24.3.0~7badfe6c34.pkg
	/var/cache/pkg/py311-netaddr-1.3.0~d8475cd29f.pkg
	/var/cache/pkg/py311-platformdirs-4.3.6.pkg
	/var/cache/pkg/py311-pyyaml-6.0.1.pkg
	/var/cache/pkg/py311-idna-3.10~d99cd9d6d5.pkg
	/var/cache/pkg/py311-dj50-django-htmx-1.21.0~bdbac00ff0.pkg
	/var/cache/pkg/mpfr-4.2.1,1~ec4c77a74d.pkg
	/var/cache/pkg/libXScrnSaver-1.2.4_1~a91125e4b7.pkg
	/var/cache/pkg/ivykis-0.43.2~07934ae53e.pkg
	/var/cache/pkg/py311-dj50-djangorestframework-3.15.2.pkg
	/var/cache/pkg/mpdecimal-4.0.0~355dbb0218.pkg
	/var/cache/pkg/pcre2-10.43~d476f63222.pkg
	/var/cache/pkg/py311-defusedxml-0.7.1~0818f89e0e.pkg
	/var/cache/pkg/jbigkit-2.1_3~44a5669171.pkg
	/var/cache/pkg/py311-uritemplate-3.0.1~9f3e8f052d.pkg
	/var/cache/pkg/py311-jsonschema-4.23.0~da5ba0f6fd.pkg
	/var/cache/pkg/py311-oauthlib-3.2.2_1~88c48a391e.pkg
	/var/cache/pkg/freetype2-2.13.3~07f9354984.pkg
	/var/cache/pkg/suitesparse-colamd-3.3.3.pkg
	/var/cache/pkg/p5-Mozilla-CA-20240924~40cbcfafef.pkg
	/var/cache/pkg/py311-mkdocstrings-0.27.0.pkg
	/var/cache/pkg/libinotify-20240724.pkg
	/var/cache/pkg/p5-Encode-Locale-1.05.pkg
	/var/cache/pkg/py311-xlwt-1.3.0~fdde086010.pkg
	/var/cache/pkg/py311-rq-2.0.0.pkg
	/var/cache/pkg/py311-requests-oauthlib-2.0.0~144614d00b.pkg
	/var/cache/pkg/p5-Digest-HMAC-1.05.pkg
	/var/cache/pkg/p5-URI-5.31.pkg
	/var/cache/pkg/py311-pillow-11.0.0.pkg
	/var/cache/pkg/libX11-1.8.9,1.pkg
	/var/cache/pkg/py311-dj50-django-rq-3.0.0~1734e79e70.pkg
	/var/cache/pkg/p5-Net-SSLeay-1.94~e3e13f37f2.pkg
	/var/cache/pkg/libXrender-0.9.11~45c44ff334.pkg
	/var/cache/pkg/py311-dj50-django-timezone-field-7.0.pkg
	/var/cache/pkg/p5-IO-HTML-1.004.pkg
	/var/cache/pkg/xorgproto-2024.1~c9b6ee4fe6.pkg
	/var/cache/pkg/py311-markdown-callouts-0.4.0~5eadb0e74e.pkg
	/var/cache/pkg/py311-blinker-1.9.0~60a398116c.pkg
	/var/cache/pkg/py311-cffi-1.17.1~fd02191006.pkg
	/var/cache/pkg/netbox-4.1.10.pkg
	/var/cache/pkg/py311-netbox-secrets-2.1.2.pkg
	/var/cache/pkg/py311-graphql-core-3.2.5.pkg
	/var/cache/pkg/py311-referencing-0.35.1~f80307352c.pkg
	/var/cache/pkg/py311-tabulate-0.9.0.pkg
	/var/cache/pkg/py311-bcrypt-3.2.2_1.pkg
	/var/cache/pkg/py311-hpack-4.0.0.pkg
	/var/cache/pkg/jpeg-turbo-3.0.4~a49da1265b.pkg
	/var/cache/pkg/py311-Automat-24.8.1~a91e113db2.pkg
	/var/cache/pkg/py311-django50-5.0.10~e97f464129.pkg
	/var/cache/pkg/py311-pygments-2.18.0.pkg
	/var/cache/pkg/go-1.21_5,2~fad524963a.pkg
	/var/cache/pkg/go-1.21_5,2.pkg
	/var/cache/pkg/py311-priority1-1.3.0_1~90a89cee83.pkg
	/var/cache/pkg/e2fsprogs-libuuid-1.47.1~362f74ac69.pkg
	/var/cache/pkg/gmake-4.4.1.pkg
	/var/cache/pkg/py311-social-auth-core-4.5.4~7b21b0cbe4.pkg
	/var/cache/pkg/py311-numexpr-2.10.2~ab4f9416c6.pkg
	/var/cache/pkg/py311-pyserial-3.5_2.pkg
	/var/cache/pkg/py311-zope.interface-5.3.0~e4f37a4063.pkg
	/var/cache/pkg/libdeflate-1.22.pkg
	/var/cache/pkg/e2fsprogs-libuuid-1.47.1.pkg
	/var/cache/pkg/nspr-4.36.pkg
	/var/cache/pkg/py311-paginate-0.5.7.pkg
	/var/cache/pkg/py311-referencing-0.35.1.pkg
	/var/cache/pkg/py311-dj50-strawberry-graphql-0.254.0~9c1447b1ff.pkg
	/var/cache/pkg/py311-psycopg-3.1.20~0f2afce580.pkg
	/var/cache/pkg/openjpeg-2.5.3.pkg
	/var/cache/pkg/p5-TimeDate-2.33,1~3d6754b570.pkg
	/var/cache/pkg/jbigkit-2.1_3.pkg
	/var/cache/pkg/py311-pyjwt-2.8.0.pkg
	/var/cache/pkg/py311-feedparser-6.0.11~4410195b8e.pkg
	/var/cache/pkg/syslog-ng-4.8.1_3~ca7c71e5a6.pkg
	/var/cache/pkg/py311-mkdocstrings-crystal-0.3.7.pkg
	/var/cache/pkg/py311-dj50-django-htmx-1.21.0.pkg
	/var/cache/pkg/py311-pymdown-extensions-10.13~f8f2c1f583.pkg
	/var/cache/pkg/py311-dj50-django-choices-field-2.3.0.pkg
	/var/cache/pkg/py311-pytz-2024.2,1.pkg
	/var/cache/pkg/py311-Babel-2.16.0.pkg
	/var/cache/pkg/socat-1.8.0.2.pkg
	/var/cache/pkg/py311-hpack-4.0.0~a41298d144.pkg
	/var/cache/pkg/py311-pyasn1-0.6.0~13353217f3.pkg
	/var/cache/pkg/p5-CGI-4.66.pkg
	/var/cache/pkg/libxcb-1.17.0.pkg
	/var/cache/pkg/libX11-1.8.9,1~4942f831e5.pkg
	/var/cache/pkg/giflib-5.2.2~1b9d82c5b4.pkg
	/var/cache/pkg/py311-requests-oauthlib-2.0.0.pkg
	/var/cache/pkg/py311-lxml-4.9.3~e3bc7fa03f.pkg
	/var/cache/pkg/py311-pytkdocs-0.16.2.pkg
	/var/cache/pkg/lcms2-2.16_2.pkg
	/var/cache/pkg/webp-1.5.0~2537dfb2c9.pkg
	/var/cache/pkg/py311-pillow-11.0.0~65f59244ef.pkg
	/var/cache/pkg/libimagequant-4.3.3_4.pkg
	/var/cache/pkg/py311-certifi-2024.12.14~3c4df35176.pkg
	/var/cache/pkg/py311-pyyaml_env_tag-0.1_2.pkg
	/var/cache/pkg/py311-appdirs-1.4.4_1~84d67a46c1.pkg
	/var/cache/pkg/py311-setproctitle-1.3.3~55a771688b.pkg
	/var/cache/pkg/py311-sqlite3-3.11.11_7.pkg
	/var/cache/pkg/py311-et_xmlfile-1.1.0.pkg
	/var/cache/pkg/libXScrnSaver-1.2.4_1.pkg
	/var/cache/pkg/py311-mdurl-0.1.2_2~d09a3b6559.pkg
	/var/cache/pkg/py311-markdown-3.6.pkg
	/var/cache/pkg/py311-pysocks-1.7.1_1~d35c5b77a5.pkg
	/var/cache/pkg/sqlite3-3.46.1,1.pkg
	/var/cache/pkg/mpc-1.3.1_1.pkg
	/var/cache/pkg/fontconfig-2.15.0_3,1~ce246dd60b.pkg
	/var/cache/pkg/libltdl-2.5.4.pkg
	/var/cache/pkg/py311-lxml-4.9.3.pkg
	/var/cache/pkg/py311-priority1-1.3.0_1.pkg
	/var/cache/pkg/gmp-6.3.0.pkg
	/var/cache/pkg/tcl86-8.6.16_2~21cb21e3f0.pkg
	/var/cache/pkg/py311-ghp-import-2.1.0_2~e40833ae27.pkg
	/var/cache/pkg/py311-urllib3-1.26.20,1~8a89af7dae.pkg
	/var/cache/pkg/tcl86-8.6.16_2.pkg
	/var/cache/pkg/py311-h2-4.1.0.pkg
	/var/cache/pkg/py311-xlrd-2.0.1_1.pkg
	/var/cache/pkg/p5-Authen-SASL-2.17_1~8624a95abe.pkg
	/var/cache/pkg/nginx-1.26.2_9,3.pkg
	/var/cache/pkg/p5-HTML-Tagset-3.24~f94b5838a6.pkg
	/var/cache/pkg/libXft-2.3.8.pkg
	/var/cache/pkg/py311-dj50-django-prometheus-2.3.1_1.pkg
	/var/cache/pkg/p5-Error-0.17029~9d53ef9039.pkg
	/var/cache/pkg/py311-pycryptodome-3.21.0.pkg
	/var/cache/pkg/p5-Digest-HMAC-1.05~bd76f0b017.pkg
	/var/cache/pkg/py311-dj50-django-js-asset-2.2.0.pkg
	/var/cache/pkg/py311-mkdocstrings-0.27.0~38034da132.pkg
The cleanup will free 368 MiB
Deleting files: .......... done
Step 31: Install python pip package netbox-inventory
Collecting netbox-inventory==2.2.1
  Downloading netbox_inventory-2.2.1-py3-none-any.whl.metadata (11 kB)
Downloading netbox_inventory-2.2.1-py3-none-any.whl (94 kB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 94.7/94.7 kB 3.0 MB/s eta 0:00:00
Installing collected packages: netbox-inventory
Successfully installed netbox-inventory-2.2.1
Step 32: Install python pip package netbox-bgp
Collecting netbox-bgp==0.14.0
  Downloading netbox_bgp-0.14.0-py3-none-any.whl.metadata (2.0 kB)
Downloading netbox_bgp-0.14.0-py3-none-any.whl (57 kB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 57.2/57.2 kB 1.3 MB/s eta 0:00:00
Installing collected packages: netbox-bgp
Successfully installed netbox-bgp-0.14.0
Step 33: Install python pip package netbox-topology-views
Collecting netbox-topology-views==4.1.0
  Downloading netbox_topology_views-4.1.0-py3-none-any.whl.metadata (12 kB)
Downloading netbox_topology_views-4.1.0-py3-none-any.whl (276 kB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 276.5/276.5 kB 6.2 MB/s eta 0:00:00
Installing collected packages: netbox-topology-views
Successfully installed netbox-topology-views-4.1.0
Step 34: Clean cook artifacts
Step 35: Install pot local
Step 36: Set file ownership on cook scripts
Step 37: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 38: Create rc.d script to start cook
creating rc.d script to start cook
Step 39: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 40: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot netbox-amd64-14_2
=====>  Remove p46782950f12edb epair network interfaces
=====>  unmount /mnt/srv/pot/jails/netbox-amd64-14_2/m/tmp
=====>  unmount /mnt/srv/pot/jails/netbox-amd64-14_2/m/dev
===>  exporting netbox-amd64-14_2 @ 1736611289 to /tmp/netbox-amd64-14_2_0.1.2.xz

This site © Honeyguide Group (Pty) Ltd, all the hosted software their respective license owners 2020 - 2021 - Disclaimer