Wordpress on NGINX (Nomad)

Overview

This is a Wordpress on nginx jail that can be started with pot but it can also be deployed via nomad.

For more details about nomad images, see about potluck.

You should mount an outside directory that can (but does not need to) contain a wordpress installation into /usr/local/www/wordpress. If the directory is empty, wordpress is installed when the jail is started and it can be configured through the normal wordpress configuration website that is shown when it is started the first time. That means if the instance is discarded and restarted by nomad later on, the wordpress instance that has been installed will be reused.

If there already is a wordpress installation present, only nginx is started so that all following updates of Wordpress can be done through the Wordpress web gui itself.

Since the service is expected to be published via consul and a web proxy like traefik, no HTTPS configuration is set up in nginx as it is expected that this is happening in the web proxy.

Nomad Job Description Example

job "example" {
  datacenters = ["datacenter"]
  type        = "service"

  group "group1" {
    count = 1

    network {
      port "http" {
        static = 20000
      }
    }

    task "www1" {
      driver = "pot"

      service {
        tags = ["nginx", "www", "wordpress"]
        name = "wordpress-example-server"
        port = "http"

         check {
            name     = "check http port potname"
            type     = "tcp"
            port     = "http"
            interval = "60s"
            timeout  = "30s"
          }

          check_restart {
            limit = 5
            grace = "120s"
            ignore_warnings = false
          }
      }

      config {
        image = "https://potluck.honeyguide.net/wordpress-nginx-nomad"
        pot = "wordpress-nginx-nomad-amd64-14_0"
        tag = "2.11.1"
        command = "/usr/local/bin/cook"
        args = [""]
        mount = [
         "/path/to/wordpress:/usr/local/www/wordpress"
        ]
        port_map = {
          http = "80"
        }
      }

      resources {
        cpu = 1000
        memory = 1024
      }
    }
  }
}

Getting Started

How To Use The Ready-Made Image

FreeBSD 14.0:
pot import -p wordpress-nginx-nomad-amd64-14_0 -t 2.11.1 -U https://potluck.honeyguide.net/wordpress-nginx-nomad

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p wordpress-nginx-nomad-amd64-14_0 -t 2.11.1 -C potluck.pub -U https://potluck.honeyguide.net/wordpress-nginx-nomad

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 wordpress-nginx-nomad-amd64-14_0 -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/wordpress-nginx-nomad 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.0) 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

2.11

  • Version bump for new base image
  • FBSD14 base image

2.10

  • Version bump for new base image
  • Update nginx for ActivityPub plugin
  • Update to ghostscript10

2.9

  • Version bump for new base image

2.8

  • Version bump for new base image
  • Update to postgresql15-client

2.7

  • Version bump for new base image

2.6

  • Version bump for new base image
  • mariadb106-client
  • Remove legacy newwww group commands

2.5

  • Version bump for new base image

2.4

  • Version bump for new base image
  • Signified

2.3

  • Version bump for new base image
  • Version bump for image rebuild
  • Package libpthread-stubs no longer exists

2.2

  • Version bump for new base image

2.1

  • Version bump for new base image

2.0

  • New version of pot image
  • Include package php82-pear to avoid a plugin error for missing /usr/local/share/pear

1.0.9

  • Version bump for rebuild to fix missing images on potluck site

1.0.8

  • Version bump for p3 rebuild

1.0.7

  • Version bump for FreeBSD-13.1 image
  • php82

1.0.6

  • Rebuild for FreeBSD 12_3 and 13 & pot 13

1.0.5

  • Install php74-openssl to support plugins that require openssl

1.0.4

  • Rebuild for FreeBSD 13 & new packages

1.0.3

  • Add .user.ini setting for users that run Wordfence

1.0.2

  • Increase PHP timeout

1.0.1


1.0

  • First release version

0.9

  • Initial commit, beta

These images were built on Sun Mar 3 20:14:27 UTC 2024

Manual Image Download Links

wordpress-nginx-nomad-amd64-14_0_2.11.1.xz ( )
wordpress-nginx-nomad-amd64-14_0_2.11.1.xz.skein ( ) wordpress-nginx-nomad-amd64-14_0_2.11.1.xz.skein.sig ( ) wordpress-nginx-nomad-amd64-14_0_2.11.1.xz.meta ( )

Jenkins Pot Creation Logs

wordpress-nginx-nomad-amd64-14_0_2.11.1:


wordpress-nginx-nomad/wordpress-nginx-nomad:
set-attribute -A persistent -V OFF
set-attribute -A no-rc-script -V ON
copy-in -s /usr/local/etc/pot/flavours/wordpress-nginx-nomad.d/local -d /root/.pot_local
wordpress-nginx-nomad/wordpress-nginx-nomad.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=true

# 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
# shellcheck disable=SC2016
echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest" }' \
    >/usr/local/etc/pkg/repos/FreeBSD.conf
# remove above and add back below for quarterlies
# only modify repo if not already done in base image
#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

# 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 || true

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

step "Install package openssl"
pkg install -y openssl

# 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 jo"
pkg install -y jo

step "Install package bash"
pkg install -y bash

step "Install package rsync"
pkg install -y rsync

step "Install package sudo"
pkg install -y sudo

step "Install package nginx"
pkg install -y nginx

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

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

step "Install package php82"
pkg install -y php82

step "Install package php82-extensions"
pkg install -y php82-extensions

step "Install package ImageMagick7-nox11"
pkg install -y ImageMagick7-nox11

step "Install package avahi-app"
pkg install -y avahi-app

step "Install package bash-completion"
pkg install -y bash-completion

step "Install package cups"
pkg install -y cups

step "Install package dbus"
pkg install -y dbus

step "Install package dbus-glib"
pkg install -y dbus-glib

step "Install package expat"
pkg install -y expat

step "Install package fftw3"
pkg install -y fftw3

step "Install package fontconfig"
pkg install -y fontconfig

step "Install package freetype2"
pkg install -y freetype2

step "Install package fribidi"
pkg install -y fribidi

step "Install package gdbm"
pkg install -y gdbm

#This port expired on: 2023-12-31
#step "Install package ghostscript9-agpl-base"
#pkg install -y ghostscript9-agpl-base

step "Install package ghostscript10"
pkg install -y ghostscript10

step "Install package giflib"
pkg install -y giflib

step "Install package glib"
pkg install -y glib

step "Install package gmp"
pkg install -y gmp

step "Install package gnome_subr"
pkg install -y gnome_subr

step "Install package gnutls"
pkg install -y gnutls

step "Install package graphite2"
pkg install -y graphite2

step "Install package gsfonts"
pkg install -y gsfonts

step "Install package harfbuzz"
pkg install -y harfbuzz

step "Install package jbig2dec"
pkg install -y jbig2dec

step "Install package jbigkit"
pkg install -y jbigkit

step "Install package jpeg-turbo"
pkg install -y jpeg-turbo

step "Install package lcms2"
pkg install -y lcms2

step "Install package libICE"
pkg install -y libICE

step "Install package libSM"
pkg install -y libSM

step "Install package libX11"
pkg install -y libX11

step "Install package libXau"
pkg install -y libXau

step "Install package libXdmcp"
pkg install -y libXdmcp

step "Install package libdaemon"
pkg install -y libdaemon

step "Install package libevent"
pkg install -y libevent

step "Install package libffi"
pkg install -y libffi

step "Install package libgd"
pkg install -y libgd

step "Install package libidn"
pkg install -y libidn

step "Install package libidn2"
pkg install -y libidn2

step "Install package liblqr-1"
pkg install -y liblqr-1

step "Install package libltdl"
pkg install -y libltdl

step "Install package libpaper"
pkg install -y libpaper

# removed
#step "Install package libpthread-stubs"
#pkg install -y libpthread-stubs

step "Install package libraqm"
pkg install -y libraqm

step "Install package libraw"
pkg install -y libraw

step "Install package libtasn1"
pkg install -y libtasn1

step "Install package libunistring"
pkg install -y libunistring

step "Install package libwmf-nox11"
pkg install -y libwmf-nox11

step "Install package libxcb"
pkg install -y libxcb

step "Install package libzip"
pkg install -y libzip

step "Install package nettle"
pkg install -y nettle

step "Install package openjpeg"
pkg install -y openjpeg

step "Install package p11-kit"
pkg install -y p11-kit

step "Install package perl5"
pkg install -y perl5

step "Install package php82-curl"
pkg install -y php82-curl

step "Install package php82-exif"
pkg install -y php82-exif

step "Install package php82-fileinfo"
pkg install -y php82-fileinfo

step "Install package php82-ftp"
pkg install -y php82-ftp

step "Install package php82-gd"
pkg install -y php82-gd

step "Install package php82-mysqli"
pkg install -y php82-mysqli

step "Install package php82-pecl-imagick"
pkg install -y php82-pecl-imagick

step "Install package php82-zip"
pkg install -y php82-zip

step "Install package php82-zlib"
pkg install -y php82-zlib

step "Install package php82-pear"
pkg install -y php82-pear

step "Install package pkgconf"
pkg install -y pkgconf

step "Install package png"
pkg install -y png

step "Install package poppler-data"
pkg install -y poppler-data

step "Install package python39"
pkg install -y python39

step "Install package tiff"
pkg install -y tiff

step "Install package tpm-emulator"
pkg install -y tpm-emulator

step "Install package trousers"
pkg install -y trousers

step "Install package webp"
pkg install -y webp

step "Install package xorgproto"
pkg install -y xorgproto

step "Clean package installation"
pkg clean -y

step "Enable nginx"
service nginx enable

step "Enable php-fpm"
service php-fpm enable

# -------------- Custom directories ------------

# Create .snapshots
step "Create snapshots directory"
mkdir /.snapshots

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

#
# 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

wordpress-nginx-nomad/wordpress-nginx-nomad+1:
wordpress-nginx-nomad/wordpress-nginx-nomad+1.sh:

wordpress-nginx-nomad/wordpress-nginx-nomad+2:
wordpress-nginx-nomad/wordpress-nginx-nomad+2.sh:

wordpress-nginx-nomad/wordpress-nginx-nomad+3:
wordpress-nginx-nomad/wordpress-nginx-nomad+3.sh:

wordpress-nginx-nomad/wordpress-nginx-nomad+4:
set-cmd -c "/usr/local/bin/cook"
wordpress-nginx-nomad/wordpress-nginx-nomad+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/conf)
=====>  Cloning freebsd-potluck-amd64-14_0_0_0_22 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_0_0_0_22/m@1709457007 into zroot/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m
=====>  Flavour: fbsd-update
=====>  Starting wordpress-nginx-nomad-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot wordpress-nginx-nomad-amd64-14_0
=====>  Pot wordpress-nginx-nomad-amd64-14_0 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=wordpress-nginx-nomad-amd64-14_0 host.hostname=wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p5 path=/mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/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:a0:4b:af:41: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.

Sun Mar  3 20:06:14 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on wordpress-nginx-nomad-amd64-14_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching metadata signature for 14.0-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 14.0-RELEASE-p5.
No updates are available to install.
=====>  Stop the pot wordpress-nginx-nomad-amd64-14_0
=====>  Remove p465e4d83410657 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/dev
=====>  Flavour: wordpress-nginx-nomad
=====>  Executing wordpress-nginx-nomad pot commands on wordpress-nginx-nomad-amd64-14_0
=====>  mount /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/wordpress-nginx-nomad.d/local copied in the pot wordpress-nginx-nomad-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/dev is already unmounted
=====>  Starting wordpress-nginx-nomad-amd64-14_0 pot for the initial bootstrap
=====>  Setting pot wordpress-nginx-nomad-amd64-14_0 temporarily to persistent
=====>  mount /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/tmp
===>  Starting the pot wordpress-nginx-nomad-amd64-14_0
=====>  Pot wordpress-nginx-nomad-amd64-14_0 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=wordpress-nginx-nomad-amd64-14_0 host.hostname=wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p5 path=/mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m persist vnet vnet.interface=epair0b
add net default: gateway 10.192.0.1
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:0e:3e:86:50: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.

Sun Mar  3 20:06:43 UTC 2024
/usr/local/etc/pot/flavours/wordpress-nginx-nomad.sh -> /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/tmp/wordpress-nginx-nomad.sh
=====>  Executing wordpress-nginx-nomad script on wordpress-nginx-nomad-amd64-14_0
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: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Install package openssl
Updating FreeBSD repository catalogue...
pkg: Repository FreeBSD has a wrong packagesite, need to re-create database
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 32177 packages processed.
All repositories are up to date.
New version of pkg detected; it needs to be installed first.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	pkg: 1.20.9 -> 1.20.9_1

Number of packages to be upgraded: 1

11 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching pkg-1.20.9_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Upgrading pkg from 1.20.9 to 1.20.9_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting pkg-1.20.9_1: .......... done
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 7: 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 8: Install package curl
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 jo
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:
	jo: 1.6 -> 1.6_1

Number of packages to be upgraded: 1

21 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jo-1.6_1.pkg: ..... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Upgrading jo from 1.6 to 1.6_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jo-1.6_1: ....... done
Step 10: Install package bash
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:
	bash: 5.2.21 -> 5.2.26_1

Number of packages to be upgraded: 1

2 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching bash-5.2.26_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Upgrading bash from 5.2.21 to 5.2.26_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting bash-5.2.26_1: .......... done
Step 11: Install package rsync
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:
	rsync: 3.2.7 -> 3.2.7_1

Number of packages to be upgraded: 1

395 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching rsync-3.2.7_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Upgrading rsync from 3.2.7 to 3.2.7_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting rsync-3.2.7_1: .......... done
Step 12: 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.15p5 -> 1.9.15p5_4

Number of packages to be upgraded: 1

2 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching sudo-1.9.15p5_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Upgrading sudo from 1.9.15p5 to 1.9.15p5_4...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting sudo-1.9.15p5_4: .......... done
Step 13: Install package nginx
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:
	nginx: 1.24.0_15,3
	pcre2: 10.43

Number of packages to be installed: 2

The process will require 9 MiB more space.
2 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.24.0_15,3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching pcre2-10.43.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing pcre2-10.43...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting pcre2-10.43: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing nginx-1.24.0_15,3...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.24.0_15,3: .......... done
=====
Message from nginx-1.24.0_15,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 14: Install package mariadb106-client
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:
	libedit: 3.1.20230828_1,1
	mariadb106-client: 10.6.16

Number of packages to be installed: 2

The process will require 52 MiB more space.
2 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libedit-3.1.20230828_1,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching mariadb106-client-10.6.16.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libedit-3.1.20230828_1,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libedit-3.1.20230828_1,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing mariadb106-client-10.6.16...
===> Creating groups.
Creating group 'mysql' with gid '88'.
===> Creating users
Creating user 'mysql' with uid '88'.
===> Creating homedir(s)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting mariadb106-client-10.6.16: .......... done
=====
Message from mariadb106-client-10.6.16:

--
MariaDB respects hier(7) and doesn't check /etc and /etc/mysql for
my.cnf. Please move existing my.cnf files from those paths to
/usr/local/etc/mysql or /usr/local/etc. Sample
configuration files are provided in /usr/local/etc/mysql
and /usr/local/etc/mysql/conf.d.
The rc(8) script no longer uses /var/db/mysql/my.cnf for configuration
nor /var/db/mysql for logs and PID-file.

This port does NOT include the mytop perl script, this is included in
the MariaDB tarball but the most recent version can be found in the
databases/mytop port

%%WSREP%%Using wsrep clustering requires adding a configuration file.
%%WSREP%%Copy /usr/local/etc/mysql/conf.d/wsrep.conf.sample to
%%WSREP%%/usr/local/etc/mysql/conf.d/wsrep.conf and change what you need there.
Step 15: Install package postgresql15-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:
	postgresql15-client: 15.6

Number of packages to be installed: 1

The process will require 14 MiB more space.
3 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching postgresql15-client-15.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing postgresql15-client-15.6...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting postgresql15-client-15.6: .......... done
=====
Message from postgresql15-client-15.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 16: Install package php82
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libargon2: 20190702_1
	libxml2: 2.11.7
	php82: 8.2.16

Number of packages to be installed: 3

The process will require 30 MiB more space.
5 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching libxml2-2.11.7.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching libargon2-20190702_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching php82-8.2.16.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Installing libxml2-2.11.7...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting libxml2-2.11.7: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Installing libargon2-20190702_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting libargon2-20190702_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Installing php82-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting php82-8.2.16: .......... done
Step 17: Install package php82-extensions
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 18 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	php82-ctype: 8.2.16
	php82-dom: 8.2.16
	php82-extensions: 1.0
	php82-filter: 8.2.16
	php82-iconv: 8.2.16
	php82-opcache: 8.2.16
	php82-pdo: 8.2.16
	php82-pdo_sqlite: 8.2.16
	php82-phar: 8.2.16
	php82-posix: 8.2.16
	php82-session: 8.2.16
	php82-simplexml: 8.2.16
	php82-sqlite3: 8.2.16
	php82-tokenizer: 8.2.16
	php82-xml: 8.2.16
	php82-xmlreader: 8.2.16
	php82-xmlwriter: 8.2.16
	sqlite3: 3.45.0_1,1

Number of packages to be installed: 18

The process will require 8 MiB more space.
2 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/18] Fetching php82-pdo-8.2.16.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/18] Fetching php82-session-8.2.16.pkg: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/18] Fetching php82-xmlwriter-8.2.16.pkg: ... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/18] Fetching sqlite3-3.45.0_1,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/18] Fetching php82-posix-8.2.16.pkg: .... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/18] Fetching php82-sqlite3-8.2.16.pkg: ...... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/18] Fetching php82-tokenizer-8.2.16.pkg: ... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/18] Fetching php82-xmlreader-8.2.16.pkg: .... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/18] Fetching php82-extensions-1.0.pkg: . done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/18] Fetching php82-ctype-8.2.16.pkg: . done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/18] Fetching php82-dom-8.2.16.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/18] Fetching php82-xml-8.2.16.pkg: ..... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/18] Fetching php82-simplexml-8.2.16.pkg: ...... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/18] Fetching php82-iconv-8.2.16.pkg: ..... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/18] Fetching php82-phar-8.2.16.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/18] Fetching php82-opcache-8.2.16.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/18] Fetching php82-filter-8.2.16.pkg: ..... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/18] Fetching php82-pdo_sqlite-8.2.16.pkg: ..... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/18] Installing php82-pdo-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/18] Extracting php82-pdo-8.2.16: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/18] Installing sqlite3-3.45.0_1,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/18] Extracting sqlite3-3.45.0_1,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/18] Installing php82-dom-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/18] Extracting php82-dom-8.2.16: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/18] Installing php82-session-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/18] Extracting php82-session-8.2.16: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/18] Installing php82-xmlwriter-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/18] Extracting php82-xmlwriter-8.2.16: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/18] Installing php82-posix-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/18] Extracting php82-posix-8.2.16: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/18] Installing php82-sqlite3-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/18] Extracting php82-sqlite3-8.2.16: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/18] Installing php82-tokenizer-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/18] Extracting php82-tokenizer-8.2.16: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/18] Installing php82-xmlreader-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/18] Extracting php82-xmlreader-8.2.16: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/18] Installing php82-ctype-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/18] Extracting php82-ctype-8.2.16: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/18] Installing php82-xml-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/18] Extracting php82-xml-8.2.16: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/18] Installing php82-simplexml-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/18] Extracting php82-simplexml-8.2.16: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/18] Installing php82-iconv-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/18] Extracting php82-iconv-8.2.16: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/18] Installing php82-phar-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/18] Extracting php82-phar-8.2.16: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/18] Installing php82-opcache-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/18] Extracting php82-opcache-8.2.16: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/18] Installing php82-filter-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/18] Extracting php82-filter-8.2.16: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/18] Installing php82-pdo_sqlite-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/18] Extracting php82-pdo_sqlite-8.2.16: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/18] Installing php82-extensions-1.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/18] Extracting php82-extensions-1.0: ... done
=====
Message from php82-pdo-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pdo.ini.sample
=====
Message from php82-dom-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-dom.ini.sample
=====
Message from php82-session-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-18-session.ini.sample
=====
Message from php82-xmlwriter-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xmlwriter.ini.sample
=====
Message from php82-posix-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-posix.ini.sample
=====
Message from php82-sqlite3-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-sqlite3.ini.sample
=====
Message from php82-tokenizer-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-tokenizer.ini.sample
=====
Message from php82-xmlreader-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xmlreader.ini.sample
=====
Message from php82-ctype-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ctype.ini.sample
=====
Message from php82-xml-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xml.ini.sample
=====
Message from php82-simplexml-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-simplexml.ini.sample
=====
Message from php82-iconv-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-iconv.ini.sample
=====
Message from php82-phar-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-phar.ini.sample
=====
Message from php82-opcache-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-10-opcache.ini.sample
=====
Message from php82-filter-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-filter.ini.sample
=====
Message from php82-pdo_sqlite-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_sqlite.ini.sample
Step 18: Install package ImageMagick7-nox11
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 99 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	ImageMagick7-nox11: 7.1.1.26_3
	Imath: 3.1.10
	aom: 3.8.1_1
	argp-standalone: 1.5.0
	avahi-app: 0.8_2
	brotli: 1.1.0,1
	cups: 2.4.7_2
	dav1d: 1.4.0
	dbus: 1.14.10_4,1
	dbus-glib: 0.112_1
	expat: 2.6.0
	ffmpeg: 6.1.1_4,1
	fftw3: 3.3.10_5
	fontconfig: 2.15.0_2,1
	freetype2: 2.13.2
	fribidi: 1.0.13_1
	gdbm: 1.23
	gdk-pixbuf2: 2.42.10_2
	ghostscript10: 10.02.1_2
	giflib: 5.2.1_1
	glib: 2.78.4,2
	gmp: 6.3.0
	gnome_subr: 1.0
	gnutls: 3.7.10_1
	graphite2: 1.3.14
	gsfonts: 8.11_8
	harfbuzz: 8.3.0
	highway: 1.1.0
	jbig2dec: 0.20_1
	jbigkit: 2.1_2
	jpeg-turbo: 3.0.2
	lame: 3.100_5
	lcms2: 2.16_1
	libICE: 1.1.0_2,1
	libSM: 1.2.3_1,1
	libX11: 1.8.7_1,1
	libXau: 1.0.9_1
	libXdmcp: 1.1.3
	libXext: 1.3.6,1
	libXfixes: 6.0.0_1
	libXrandr: 1.5.2_1
	libXrender: 0.9.10_2
	libXt: 1.2.1_1,1
	libass: 0.17.1_1
	libdaemon: 0.14_1
	libdeflate: 1.19
	libdrm: 2.4.120_1,1
	libepoll-shim: 0.0.20230411
	libevent: 2.1.12
	libffi: 3.4.4_1
	libfontenc: 1.1.7
	libgd: 2.3.3_9,1
	libglvnd: 1.7.0
	libheif: 1.17.6_1
	libidn: 1.38_1
	libjxl: 0.10.0
	liblqr-1: 0.4.2
	libltdl: 2.4.7
	libogg: 1.3.5,4
	libpaper: 1.1.28_1
	libpciaccess: 0.18
	libplacebo: 6.338.2
	libraw: 0.21.2
	libtasn1: 4.19.0_1
	libudev-devd: 0.5.2
	libunibreak: 5.1,1
	libunwind: 20240112
	libv4l: 1.23.0_3
	libva: 2.20.0_2
	libvdpau: 1.5
	libvorbis: 1.3.7_2,3
	libvpx: 1.14.0
	libwmf-nox11: 0.2.13_2
	libx264: 0.164.3095
	libxcb: 1.15_2
	libzip: 1.10.1
	mkfontscale: 1.2.1_1
	mpdecimal: 2.5.1
	nettle: 3.9.1
	openexr: 3.2.2
	openjpeg: 2.5.0_1
	opus: 1.4
	p11-kit: 0.25.3_1
	perl5: 5.36.3_1
	pkgconf: 2.0.3_2,1
	png: 1.6.42
	poppler-data: 0.4.12
	python39: 3.9.18_1
	shaderc: 2023.8
	shared-mime-info: 2.2_2
	svt-av1: 1.8.0
	tiff: 4.4.0_3
	urw-base35-fonts: 20200910
	vmaf: 3.0.0
	vulkan-loader: 1.3.278
	wayland: 1.22.0
	webp: 1.3.2_1
	x265: 3.5_1
	xorgproto: 2023.2

Number of packages to be installed: 99

The process will require 581 MiB more space.
128 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/99] Fetching libzip-1.10.1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/99] Fetching mpdecimal-2.5.1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/99] Fetching freetype2-2.13.2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/99] Fetching libx264-0.164.3095.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/99] Fetching libglvnd-1.7.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/99] Fetching nettle-3.9.1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/99] Fetching lcms2-2.16_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/99] Fetching vmaf-3.0.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/99] Fetching openjpeg-2.5.0_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/99] Fetching libva-2.20.0_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/99] Fetching libXfixes-6.0.0_1.pkg: .... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/99] Fetching aom-3.8.1_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/99] Fetching libgd-2.3.3_9,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/99] Fetching python39-3.9.18_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/99] Fetching gdk-pixbuf2-2.42.10_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/99] Fetching shaderc-2023.8.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/99] Fetching gnutls-3.7.10_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/99] Fetching libepoll-shim-0.0.20230411.pkg: ..... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/99] Fetching libX11-1.8.7_1,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/99] Fetching giflib-5.2.1_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/99] Fetching xorgproto-2023.2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/99] Fetching urw-base35-fonts-20200910.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/99] Fetching ImageMagick7-nox11-7.1.1.26_3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/99] Fetching shared-mime-info-2.2_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/99] Fetching graphite2-1.3.14.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/99] Fetching libevent-2.1.12.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/99] Fetching lame-3.100_5.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/99] Fetching gdbm-1.23.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/99] Fetching libpciaccess-0.18.pkg: .... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/99] Fetching vulkan-loader-1.3.278.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/99] Fetching avahi-app-0.8_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/99] Fetching libass-0.17.1_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/99] Fetching dbus-1.14.10_4,1.pkg: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/99] Fetching ffmpeg-6.1.1_4,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/99] Fetching opus-1.4.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [36/99] Fetching libunwind-20240112.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [37/99] Fetching brotli-1.1.0,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [38/99] Fetching Imath-3.1.10.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [39/99] Fetching svt-av1-1.8.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [40/99] Fetching dbus-glib-0.112_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [41/99] Fetching jbig2dec-0.20_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [42/99] Fetching libXau-1.0.9_1.pkg: ... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [43/99] Fetching libplacebo-6.338.2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [44/99] Fetching libltdl-2.4.7.pkg: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [45/99] Fetching fontconfig-2.15.0_2,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [46/99] Fetching libwmf-nox11-0.2.13_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [47/99] Fetching fftw3-3.3.10_5.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [48/99] Fetching glib-2.78.4,2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [49/99] Fetching perl5-5.36.3_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [50/99] Fetching jbigkit-2.1_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [51/99] Fetching libdaemon-0.14_1.pkg: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [52/99] Fetching libvdpau-1.5.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [53/99] Fetching libXdmcp-1.1.3.pkg: ... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [54/99] Fetching tiff-4.4.0_3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [55/99] Fetching expat-2.6.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [56/99] Fetching gsfonts-8.11_8.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [57/99] Fetching poppler-data-0.4.12.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [58/99] Fetching png-1.6.42.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [59/99] Fetching libxcb-1.15_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [60/99] Fetching jpeg-turbo-3.0.2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [61/99] Fetching libXt-1.2.1_1,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [62/99] Fetching cups-2.4.7_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [63/99] Fetching libXrandr-1.5.2_1.pkg: ....... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [64/99] Fetching libunibreak-5.1,1.pkg: ....... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [65/99] Fetching mkfontscale-1.2.1_1.pkg: .... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [66/99] Fetching libdeflate-1.19.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [67/99] Fetching fribidi-1.0.13_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [68/99] Fetching libidn-1.38_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [69/99] Fetching libdrm-2.4.120_1,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [70/99] Fetching libtasn1-4.19.0_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [71/99] Fetching liblqr-1-0.4.2.pkg: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [72/99] Fetching gnome_subr-1.0.pkg: . done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [73/99] Fetching wayland-1.22.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [74/99] Fetching libpaper-1.1.28_1.pkg: ...... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [75/99] Fetching libjxl-0.10.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [76/99] Fetching libXrender-0.9.10_2.pkg: ....... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [77/99] Fetching libraw-0.21.2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [78/99] Fetching webp-1.3.2_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [79/99] Fetching pkgconf-2.0.3_2,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [80/99] Fetching libv4l-1.23.0_3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [81/99] Fetching harfbuzz-8.3.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [82/99] Fetching ghostscript10-10.02.1_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [83/99] Fetching x265-3.5_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [84/99] Fetching libfontenc-1.1.7.pkg: .... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [85/99] Fetching highway-1.1.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [86/99] Fetching libudev-devd-0.5.2.pkg: ... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [87/99] Fetching gmp-6.3.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [88/99] Fetching libvorbis-1.3.7_2,3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [89/99] Fetching libXext-1.3.6,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [90/99] Fetching argp-standalone-1.5.0.pkg: ...... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [91/99] Fetching libogg-1.3.5,4.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [92/99] Fetching p11-kit-0.25.3_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [93/99] Fetching libICE-1.1.0_2,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [94/99] Fetching dav1d-1.4.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [95/99] Fetching libSM-1.2.3_1,1.pkg: ...... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [96/99] Fetching openexr-3.2.2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [97/99] Fetching libheif-1.17.6_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [98/99] Fetching libvpx-1.14.0.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [99/99] Fetching libffi-3.4.4_1.pkg: ......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/99] Installing xorgproto-2023.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/99] Extracting xorgproto-2023.2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/99] Installing libXau-1.0.9_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/99] Extracting libXau-1.0.9_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/99] Installing libXdmcp-1.1.3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/99] Extracting libXdmcp-1.1.3: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/99] Installing mpdecimal-2.5.1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/99] Extracting mpdecimal-2.5.1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/99] Installing libxcb-1.15_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/99] Extracting libxcb-1.15_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/99] Installing libffi-3.4.4_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/99] Extracting libffi-3.4.4_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/99] Installing python39-3.9.18_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/99] Extracting python39-3.9.18_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/99] Installing libX11-1.8.7_1,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/99] Extracting libX11-1.8.7_1,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/99] Installing libICE-1.1.0_2,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/99] Extracting libICE-1.1.0_2,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/99] Installing libepoll-shim-0.0.20230411...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/99] Extracting libepoll-shim-0.0.20230411: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/99] Installing brotli-1.1.0,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/99] Extracting brotli-1.1.0,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/99] Installing glib-2.78.4,2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/99] Extracting glib-2.78.4,2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/99] Installing jbigkit-2.1_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/99] Extracting jbigkit-2.1_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/99] Installing expat-2.6.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/99] Extracting expat-2.6.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/99] Installing png-1.6.42...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/99] Extracting png-1.6.42: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/99] Installing jpeg-turbo-3.0.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/99] Extracting jpeg-turbo-3.0.2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/99] Installing libdeflate-1.19...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/99] Extracting libdeflate-1.19: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/99] Installing libXrender-0.9.10_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/99] Extracting libXrender-0.9.10_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/99] Installing libXext-1.3.6,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/99] Extracting libXext-1.3.6,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/99] Installing libSM-1.2.3_1,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/99] Extracting libSM-1.2.3_1,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/99] Installing freetype2-2.13.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/99] Extracting freetype2-2.13.2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/99] Installing shared-mime-info-2.2_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/99] Extracting shared-mime-info-2.2_2: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/99] Installing graphite2-1.3.14...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/99] Extracting graphite2-1.3.14: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/99] Installing libpciaccess-0.18...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/99] Extracting libpciaccess-0.18: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/99] Installing dbus-1.14.10_4,1...
===> Creating groups.
Creating group 'messagebus' with gid '556'.
===> Creating users
Creating user 'messagebus' with uid '556'.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/99] Extracting dbus-1.14.10_4,1: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/99] Installing Imath-3.1.10...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/99] Extracting Imath-3.1.10: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/99] Installing tiff-4.4.0_3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/99] Extracting tiff-4.4.0_3: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/99] Installing libXrandr-1.5.2_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/99] Extracting libXrandr-1.5.2_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/99] Installing libtasn1-4.19.0_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/99] Extracting libtasn1-4.19.0_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/99] Installing wayland-1.22.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/99] Extracting wayland-1.22.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/99] Installing gmp-6.3.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/99] Extracting gmp-6.3.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/99] Installing libglvnd-1.7.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/99] Extracting libglvnd-1.7.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/99] Installing nettle-3.9.1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/99] Extracting nettle-3.9.1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/99] Installing lcms2-2.16_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/99] Extracting lcms2-2.16_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/99] Installing vmaf-3.0.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/99] Extracting vmaf-3.0.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [36/99] Installing libXfixes-6.0.0_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [36/99] Extracting libXfixes-6.0.0_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [37/99] Installing gdk-pixbuf2-2.42.10_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [37/99] Extracting gdk-pixbuf2-2.42.10_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [38/99] Installing shaderc-2023.8...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [38/99] Extracting shaderc-2023.8: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [39/99] Installing giflib-5.2.1_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [39/99] Extracting giflib-5.2.1_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [40/99] Installing libevent-2.1.12...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [40/99] Extracting libevent-2.1.12: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [41/99] Installing gdbm-1.23...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [41/99] Extracting gdbm-1.23: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [42/99] Installing vulkan-loader-1.3.278...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [42/99] Extracting vulkan-loader-1.3.278: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [43/99] Installing libunwind-20240112...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [43/99] Extracting libunwind-20240112: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [44/99] Installing dbus-glib-0.112_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [44/99] Extracting dbus-glib-0.112_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [45/99] Installing fontconfig-2.15.0_2,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [45/99] Extracting fontconfig-2.15.0_2,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [46/99] Installing libdaemon-0.14_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [46/99] Extracting libdaemon-0.14_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [47/99] Installing libunibreak-5.1,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [47/99] Extracting libunibreak-5.1,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [48/99] Installing fribidi-1.0.13_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [48/99] Extracting fribidi-1.0.13_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [49/99] Installing libdrm-2.4.120_1,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [49/99] Extracting libdrm-2.4.120_1,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [50/99] Installing gnome_subr-1.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [50/99] Extracting gnome_subr-1.0: .... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [51/99] Installing harfbuzz-8.3.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [51/99] Extracting harfbuzz-8.3.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [52/99] Installing libfontenc-1.1.7...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [52/99] Extracting libfontenc-1.1.7: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [53/99] Installing highway-1.1.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [53/99] Extracting highway-1.1.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [54/99] Installing libudev-devd-0.5.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [54/99] Extracting libudev-devd-0.5.2: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [55/99] Installing argp-standalone-1.5.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [55/99] Extracting argp-standalone-1.5.0: ........ done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [56/99] Installing libogg-1.3.5,4...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [56/99] Extracting libogg-1.3.5,4: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [57/99] Installing p11-kit-0.25.3_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [57/99] Extracting p11-kit-0.25.3_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [58/99] Installing openexr-3.2.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [58/99] Extracting openexr-3.2.2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [59/99] Installing libx264-0.164.3095...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [59/99] Extracting libx264-0.164.3095: ......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [60/99] Installing libva-2.20.0_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [60/99] Extracting libva-2.20.0_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [61/99] Installing aom-3.8.1_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [61/99] Extracting aom-3.8.1_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [62/99] Installing gnutls-3.7.10_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [62/99] Extracting gnutls-3.7.10_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [63/99] Installing lame-3.100_5...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [63/99] Extracting lame-3.100_5: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [64/99] Installing avahi-app-0.8_2...
===> Creating groups.
Creating group 'avahi' with gid '558'.
===> Creating users
Creating user 'avahi' with uid '558'.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [64/99] Extracting avahi-app-0.8_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [65/99] Installing libass-0.17.1_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [65/99] Extracting libass-0.17.1_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [66/99] Installing opus-1.4...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [66/99] Extracting opus-1.4: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [67/99] Installing svt-av1-1.8.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [67/99] Extracting svt-av1-1.8.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [68/99] Installing libplacebo-6.338.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [68/99] Extracting libplacebo-6.338.2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [69/99] Installing libvdpau-1.5...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [69/99] Extracting libvdpau-1.5: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [70/99] Installing mkfontscale-1.2.1_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [70/99] Extracting mkfontscale-1.2.1_1: ....... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [71/99] Installing libpaper-1.1.28_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [71/99] Extracting libpaper-1.1.28_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [72/99] Installing libjxl-0.10.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [72/99] Extracting libjxl-0.10.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [73/99] Installing webp-1.3.2_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [73/99] Extracting webp-1.3.2_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [74/99] Installing libv4l-1.23.0_3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [74/99] Extracting libv4l-1.23.0_3: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [75/99] Installing x265-3.5_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [75/99] Extracting x265-3.5_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [76/99] Installing libvorbis-1.3.7_2,3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [76/99] Extracting libvorbis-1.3.7_2,3: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [77/99] Installing dav1d-1.4.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [77/99] Extracting dav1d-1.4.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [78/99] Installing libvpx-1.14.0...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [78/99] Extracting libvpx-1.14.0: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [79/99] Installing openjpeg-2.5.0_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [79/99] Extracting openjpeg-2.5.0_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [80/99] Installing libgd-2.3.3_9,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [80/99] Extracting libgd-2.3.3_9,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [81/99] Installing urw-base35-fonts-20200910...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [81/99] Extracting urw-base35-fonts-20200910: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [82/99] Installing ffmpeg-6.1.1_4,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [82/99] Extracting ffmpeg-6.1.1_4,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [83/99] Installing jbig2dec-0.20_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [83/99] Extracting jbig2dec-0.20_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [84/99] Installing poppler-data-0.4.12...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [84/99] Extracting poppler-data-0.4.12: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [85/99] Installing libXt-1.2.1_1,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [85/99] Extracting libXt-1.2.1_1,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [86/99] Installing cups-2.4.7_2...
===> Creating groups.
Creating group 'cups' with gid '193'.
===> Creating users
Creating user 'cups' with uid '193'.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [86/99] Extracting cups-2.4.7_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [87/99] Installing libidn-1.38_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [87/99] Extracting libidn-1.38_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [88/99] Installing libzip-1.10.1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [88/99] Extracting libzip-1.10.1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [89/99] Installing libltdl-2.4.7...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [89/99] Extracting libltdl-2.4.7: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [90/99] Installing libwmf-nox11-0.2.13_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [90/99] Extracting libwmf-nox11-0.2.13_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [91/99] Installing fftw3-3.3.10_5...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [91/99] Extracting fftw3-3.3.10_5: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [92/99] Installing perl5-5.36.3_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [92/99] Extracting perl5-5.36.3_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [93/99] Installing gsfonts-8.11_8...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [93/99] Extracting gsfonts-8.11_8: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [94/99] Installing liblqr-1-0.4.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [94/99] Extracting liblqr-1-0.4.2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [95/99] Installing libraw-0.21.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [95/99] Extracting libraw-0.21.2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [96/99] Installing pkgconf-2.0.3_2,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [96/99] Extracting pkgconf-2.0.3_2,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [97/99] Installing ghostscript10-10.02.1_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [97/99] Extracting ghostscript10-10.02.1_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [98/99] Installing libheif-1.17.6_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [98/99] Extracting libheif-1.17.6_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [99/99] Installing ImageMagick7-nox11-7.1.1.26_3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [99/99] Extracting ImageMagick7-nox11-7.1.1.26_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
==> Running trigger: shared-mime-info.ucl
Building the Shared MIME-Info database cache
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
=====
Message from python39-3.9.18_1:

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

py39-gdbm       databases/py-gdbm@py39
py39-sqlite3    databases/py-sqlite3@py39
py39-tkinter    x11-toolkits/py-tkinter@py39
=====
Message from freetype2-2.13.2:

--
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 wayland-1.22.0:

--
Wayland requires XDG_RUNTIME_DIR to be defined to a path that will
contain "wayland-%d" unix(4) sockets. This is usually handled by
consolekit2 (via ck-launch-session) or pam_xdg (via login).
=====
Message from libjxl-0.10.0:

--
Additional packages recommended for new users:
- imlib2-jxl (e.g., feh, scrot)
- kf5-kimageformats (e.g., nomacs, flameshot, skanlite)
- gimp-jxl-plugin
=====
Message from libwmf-nox11-0.2.13_2:

--
===>   NOTICE:

The libwmf-nox11 port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:

https://bugs.freebsd.org/bugzilla

More information about port maintainership is available at:

https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from gsfonts-8.11_8:

--
===>   NOTICE:

The gsfonts port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:

https://bugs.freebsd.org/bugzilla

More information about port maintainership is available at:

https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from liblqr-1-0.4.2:

--
NOTE: In order to compile examples for liblqr, you will
also need pngwriter port (/usr/ports/graphics/pngwriter).
Examples are located in /usr/local/share/examples/liblqr-1
=====
Message from ghostscript10-10.02.1_2:

--
This package installs a script named dvipdf that depends on dvips.  If you
want to use this script you need to install print/tex-dvipsk.
Step 19: Install package avahi-app
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 20: Install package bash-completion
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:
	bash-completion: 2.11_2,2

Number of packages to be installed: 1

The process will require 1 MiB more space.
231 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching bash-completion-2.11_2,2.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing bash-completion-2.11_2,2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting bash-completion-2.11_2,2: .......... done
=====
Message from bash-completion-2.11_2,2:

--
To enable the bash completion library, add the following to
your .bashrc file:

[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] && \
	source /usr/local/share/bash-completion/bash_completion.sh

See /usr/local/share/doc/bash-completion/README.md for more information.
Step 21: Install package cups
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 22: Install package dbus
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 23: Install package dbus-glib
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 24: Install package expat
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 25: Install package fftw3
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 26: Install package fontconfig
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 27: Install package freetype2
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 28: Install package fribidi
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 29: Install package gdbm
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 30: Install package ghostscript10
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 31: Install package giflib
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 32: Install package glib
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 33: Install package gmp
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 34: Install package gnome_subr
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 35: Install package gnutls
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 36: Install package graphite2
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 37: Install package gsfonts
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 38: Install package harfbuzz
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 39: Install package jbig2dec
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 40: Install package jbigkit
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 41: Install package jpeg-turbo
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 42: Install package lcms2
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 43: Install package libICE
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 44: Install package libSM
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 45: Install package libX11
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 46: Install package libXau
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 47: Install package libXdmcp
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 48: Install package libdaemon
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 49: Install package libevent
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 50: Install package libffi
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 51: Install package libgd
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 52: Install package libidn
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 53: Install package libidn2
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:
	libidn2: 2.3.4 -> 2.3.7

Number of packages to be upgraded: 1

156 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libidn2-2.3.7.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Upgrading libidn2 from 2.3.4 to 2.3.7...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libidn2-2.3.7: .......... done
Step 54: Install package liblqr-1
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 55: Install package libltdl
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 56: Install package libpaper
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 57: Install package libraqm
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:
	libraqm: 0.10.1

Number of packages to be installed: 1

33 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libraqm-0.10.1.pkg: ....... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing libraqm-0.10.1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libraqm-0.10.1: .......... done
Step 58: Install package libraw
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 59: Install package libtasn1
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 60: Install package libunistring
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 61: Install package libwmf-nox11
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 62: Install package libxcb
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 63: Install package libzip
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 64: Install package nettle
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 65: Install package openjpeg
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 66: Install package p11-kit
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 67: Install package perl5
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 68: Install package php82-curl
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:
	php82-curl: 8.2.16

Number of packages to be installed: 1

46 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-curl-8.2.16.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-curl-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-curl-8.2.16: .......... done
=====
Message from php82-curl-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-curl.ini.sample
Step 69: Install package php82-exif
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:
	php82-exif: 8.2.16

Number of packages to be installed: 1

32 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-exif-8.2.16.pkg: ...... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-exif-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-exif-8.2.16: ........ done
=====
Message from php82-exif-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-exif.ini.sample
Step 70: Install package php82-fileinfo
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:
	php82-fileinfo: 8.2.16

Number of packages to be installed: 1

The process will require 7 MiB more space.
311 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-fileinfo-8.2.16.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-fileinfo-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-fileinfo-8.2.16: .......... done
=====
Message from php82-fileinfo-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-fileinfo.ini.sample
Step 71: Install package php82-ftp
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:
	php82-ftp: 8.2.16

Number of packages to be installed: 1

28 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-ftp-8.2.16.pkg: ...... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-ftp-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-ftp-8.2.16: ......... done
=====
Message from php82-ftp-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ftp.ini.sample
Step 72: Install package php82-gd
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:
	php82-gd: 8.2.16

Number of packages to be installed: 1

37 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-gd-8.2.16.pkg: ......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-gd-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-gd-8.2.16: ......... done
=====
Message from php82-gd-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gd.ini.sample
Step 73: Install package php82-mysqli
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:
	php82-mysqli: 8.2.16

Number of packages to be installed: 1

53 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-mysqli-8.2.16.pkg: ......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-mysqli-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-mysqli-8.2.16: .......... done
=====
Message from php82-mysqli-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mysqli.ini.sample
Step 74: Install package php82-pecl-imagick
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 16 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	ImageMagick7: 7.1.1.26_3
	cairo: 1.17.4_2,3
	dejavu: 2.37_3
	encodings: 1.0.5,1
	font-bh-ttf: 1.0.3_5
	font-misc-ethiopic: 1.0.4
	font-misc-meltho: 1.0.3_5
	libXft: 2.3.7_1
	libdatrie: 0.2.13_2
	librsvg2-rust: 2.56.4_5
	libthai: 0.1.29_1
	libwmf: 0.2.13_2
	pango: 1.50.14
	php82-pecl-imagick: 3.7.0_3
	pixman: 0.42.2
	xorg-fonts-truetype: 7.7_1

Number of packages to be installed: 16

The process will require 90 MiB more space.
23 MiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/16] Fetching libwmf-0.2.13_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/16] Fetching libthai-0.1.29_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/16] Fetching libXft-2.3.7_1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/16] Fetching cairo-1.17.4_2,3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/16] Fetching font-misc-meltho-1.0.3_5.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/16] Fetching ImageMagick7-7.1.1.26_3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/16] Fetching xorg-fonts-truetype-7.7_1.pkg: . done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/16] Fetching dejavu-2.37_3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/16] Fetching libdatrie-0.2.13_2.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/16] Fetching librsvg2-rust-2.56.4_5.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/16] Fetching php82-pecl-imagick-3.7.0_3.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/16] Fetching font-misc-ethiopic-1.0.4.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/16] Fetching encodings-1.0.5,1.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/16] Fetching font-bh-ttf-1.0.3_5.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/16] Fetching pango-1.50.14.pkg: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/16] Fetching pixman-0.42.2.pkg: .......... done
Checking integrity... done (4 conflicting)
  - libwmf-0.2.13_2 conflicts with libwmf-nox11-0.2.13_2 on /usr/local/bin/libwmf-config
  - libwmf-0.2.13_2 conflicts with libwmf-nox11-0.2.13_2 on /usr/local/bin/libwmf-config
  - ImageMagick7-7.1.1.26_3 conflicts with ImageMagick7-nox11-7.1.1.26_3 on /usr/local/bin/Magick++-config
  - ImageMagick7-7.1.1.26_3 conflicts with ImageMagick7-nox11-7.1.1.26_3 on /usr/local/bin/Magick++-config
Checking integrity... done (0 conflicting)
Conflicts with the existing packages have been found.
One more solver iteration is needed to resolve them.
The following 18 package(s) will be affected (of 0 checked):

Installed packages to be REMOVED:
	ImageMagick7-nox11: 7.1.1.26_3
	libwmf-nox11: 0.2.13_2

New packages to be INSTALLED:
	ImageMagick7: 7.1.1.26_3
	cairo: 1.17.4_2,3
	dejavu: 2.37_3
	encodings: 1.0.5,1
	font-bh-ttf: 1.0.3_5
	font-misc-ethiopic: 1.0.4
	font-misc-meltho: 1.0.3_5
	libXft: 2.3.7_1
	libdatrie: 0.2.13_2
	librsvg2-rust: 2.56.4_5
	libthai: 0.1.29_1
	libwmf: 0.2.13_2
	pango: 1.50.14
	php82-pecl-imagick: 3.7.0_3
	pixman: 0.42.2
	xorg-fonts-truetype: 7.7_1

Number of packages to be removed: 2
Number of packages to be installed: 16

The process will require 57 MiB more space.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/18] Deinstalling ImageMagick7-nox11-7.1.1.26_3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/18] Deleting files for ImageMagick7-nox11-7.1.1.26_3: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/18] Deinstalling libwmf-nox11-0.2.13_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/18] Deleting files for libwmf-nox11-0.2.13_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/18] Installing font-misc-meltho-1.0.3_5...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/18] Extracting font-misc-meltho-1.0.3_5: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/18] Installing dejavu-2.37_3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/18] Extracting dejavu-2.37_3: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/18] Installing libdatrie-0.2.13_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/18] Extracting libdatrie-0.2.13_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/18] Installing font-misc-ethiopic-1.0.4...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/18] Extracting font-misc-ethiopic-1.0.4: ...... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/18] Installing encodings-1.0.5,1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/18] Extracting encodings-1.0.5,1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/18] Installing font-bh-ttf-1.0.3_5...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/18] Extracting font-bh-ttf-1.0.3_5: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/18] Installing pixman-0.42.2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/18] Extracting pixman-0.42.2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/18] Installing libthai-0.1.29_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/18] Extracting libthai-0.1.29_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/18] Installing libXft-2.3.7_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/18] Extracting libXft-2.3.7_1: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/18] Installing cairo-1.17.4_2,3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/18] Extracting cairo-1.17.4_2,3: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/18] Installing xorg-fonts-truetype-7.7_1...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/18] Extracting xorg-fonts-truetype-7.7_1: ... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/18] Installing pango-1.50.14...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/18] Extracting pango-1.50.14: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/18] Installing libwmf-0.2.13_2...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/18] Extracting libwmf-0.2.13_2: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/18] Installing librsvg2-rust-2.56.4_5...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/18] Extracting librsvg2-rust-2.56.4_5: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/18] Installing ImageMagick7-7.1.1.26_3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/18] Extracting ImageMagick7-7.1.1.26_3: .......... done
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/18] Installing php82-pecl-imagick-3.7.0_3...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/18] Extracting php82-pecl-imagick-3.7.0_3: .......... done
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
=====
Message from dejavu-2.37_3:

--
Make sure that the freetype module is loaded.  If it is not, add the following
line to the "Modules" section of your X Windows configuration file:

	Load "freetype"

Add the following line to the "Files" section of X Windows configuration file:

	FontPath "/usr/local/share/fonts/dejavu/"

Note: your X Windows configuration file is typically /etc/X11/XF86Config
if you are using XFree86, and /etc/X11/xorg.conf if you are using X.Org.
=====
Message from libwmf-0.2.13_2:

--
===>   NOTICE:

The libwmf port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:

https://bugs.freebsd.org/bugzilla

More information about port maintainership is available at:

https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from php82-pecl-imagick-3.7.0_3:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-imagick.ini.sample
Step 75: Install package php82-zip
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:
	php82-zip: 8.2.16

Number of packages to be installed: 1

34 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-zip-8.2.16.pkg: ....... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-zip-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-zip-8.2.16: ........ done
=====
Message from php82-zip-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zip.ini.sample
Step 76: Install package php82-zlib
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:
	php82-zlib: 8.2.16

Number of packages to be installed: 1

22 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-zlib-8.2.16.pkg: .... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-zlib-8.2.16...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-zlib-8.2.16: ........ done
=====
Message from php82-zlib-8.2.16:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zlib.ini.sample
Step 77: Install package php82-pear
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:
	php82-pear: 1.10.13

Number of packages to be installed: 1

The process will require 2 MiB more space.
254 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-pear-1.10.13.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-pear-1.10.13...
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-pear-1.10.13: .......... done
Step 78: Install package pkgconf
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 79: Install package png
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 80: Install package poppler-data
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 81: Install package python39
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 82: Install package tiff
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 83: Install package tpm-emulator
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:
	tpm-emulator: 0.7.4_2

Number of packages to be installed: 1

124 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching tpm-emulator-0.7.4_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing tpm-emulator-0.7.4_2...
===> Creating groups.
Creating group '_tss' with gid '601'.
===> Creating users
Creating user '_tss' with uid '601'.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting tpm-emulator-0.7.4_2: ......... done
Step 84: Install package trousers
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:
	trousers: 0.3.14_4

Number of packages to be installed: 1

The process will require 2 MiB more space.
510 KiB to be downloaded.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching trousers-0.3.14_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing trousers-0.3.14_4...
===> Creating groups.
Using existing group '_tss'.
===> Creating users
Using existing user '_tss'.
[wordpress-nginx-nomad-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting trousers-0.3.14_4: .......... done
=====
Message from trousers-0.3.14_4:

--
To run tcsd automatically, add the following line to /etc/rc.conf:

tcsd_enable="YES"

You might want to edit /usr/local/etc/tcsd.conf to reflect your setup.

If you want to use tcsd with software TPM emulator, use the following
configuration in /etc/rc.conf:

tcsd_enable="YES"
tcsd_mode="emulator"
tpmd_enable="YES"

To use TPM, add your_account to '_tss' group like following:

# pw groupmod _tss -m your_account
Step 85: Install package webp
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 86: Install package xorgproto
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 87: Clean package installation
The following package files will be deleted:
	/var/cache/pkg/jq-1.7_2~d1313a5a65.pkg
	/var/cache/pkg/libssh2-1.11.0,3.pkg
	/var/cache/pkg/rsync-3.2.7.pkg
	/var/cache/pkg/openssl-3.0.13,1~9fd27750d7.pkg
	/var/cache/pkg/oniguruma-6.9.9.pkg
	/var/cache/pkg/zstd-1.5.5.pkg
	/var/cache/pkg/openssl-3.0.13,1.pkg
	/var/cache/pkg/gettext-runtime-0.22.3~c19fcc427e.pkg
	/var/cache/pkg/libunistring-1.1.pkg
	/var/cache/pkg/readline-8.2.7~858c37afa1.pkg
	/var/cache/pkg/libiconv-1.17~2fdbb2ef18.pkg
	/var/cache/pkg/nano-7.2.pkg
	/var/cache/pkg/xxhash-0.8.2.pkg
	/var/cache/pkg/libidn2-2.3.4~be85e061d2.pkg
	/var/cache/pkg/jo-1.6.pkg
	/var/cache/pkg/jq-1.7_2.pkg
	/var/cache/pkg/bash-5.2.21.pkg
	/var/cache/pkg/libssh2-1.11.0,3~2ed66d6bc2.pkg
	/var/cache/pkg/sudo-1.9.15p5~8fef8ae843.pkg
	/var/cache/pkg/bash-5.2.21~f167acae8e.pkg
	/var/cache/pkg/indexinfo-0.3.1~82cee451d4.pkg
	/var/cache/pkg/indexinfo-0.3.1.pkg
	/var/cache/pkg/gettext-runtime-0.22.3.pkg
	/var/cache/pkg/libiconv-1.17.pkg
	/var/cache/pkg/libpsl-0.21.2_4.pkg
	/var/cache/pkg/oniguruma-6.9.9~21e7c55a85.pkg
	/var/cache/pkg/rsync-3.2.7~266f36b515.pkg
	/var/cache/pkg/jo-1.6~72b963174c.pkg
	/var/cache/pkg/ca_root_nss-3.93_2~c5b7d835c6.pkg
	/var/cache/pkg/ca_root_nss-3.93_2.pkg
	/var/cache/pkg/liblz4-1.9.4,1.pkg
	/var/cache/pkg/nano-7.2~dbd430fe46.pkg
	/var/cache/pkg/sudo-1.9.15p5.pkg
	/var/cache/pkg/libpsl-0.21.2_4~26b486c31f.pkg
	/var/cache/pkg/libnghttp2-1.58.0~4f9cf8e38b.pkg
	/var/cache/pkg/curl-8.6.0.pkg
	/var/cache/pkg/libnghttp2-1.58.0.pkg
	/var/cache/pkg/xxhash-0.8.2~1c79ae7aa8.pkg
	/var/cache/pkg/zstd-1.5.5~e0f5a9ea5d.pkg
	/var/cache/pkg/readline-8.2.7.pkg
	/var/cache/pkg/libunistring-1.1~c208dcb19c.pkg
	/var/cache/pkg/curl-8.6.0~7df4269b9d.pkg
	/var/cache/pkg/liblz4-1.9.4,1~9c698d3d2a.pkg
	/var/cache/pkg/libidn2-2.3.4.pkg
The cleanup will free 17 MiB
Deleting files: .......... done
All done
Step 88: Enable nginx
nginx enabled in /etc/rc.conf
Step 89: Enable php-fpm
php_fpm enabled in /etc/rc.conf
Step 90: Create snapshots directory
Step 91: Clean cook artifacts
Step 92: Install pot local
Step 93: Set file ownership on cook scripts
Step 94: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 95: Create rc.d script to start cook
creating rc.d script to start cook
Step 96: Make rc.d script to start cook executable
Setting executable bit on cook rc file
=====>  Stop the pot wordpress-nginx-nomad-amd64-14_0
=====>  Remove p465e4d85310657 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/wordpress-nginx-nomad-amd64-14_0/m/dev
=====>  Reverting pot wordpress-nginx-nomad-amd64-14_0 to non-persistent
=====>  Flavour: wordpress-nginx-nomad+1
=====>  Executing wordpress-nginx-nomad+1 pot commands on wordpress-nginx-nomad-amd64-14_0
=====>  No shell script available for the flavour wordpress-nginx-nomad+1
=====>  Flavour: wordpress-nginx-nomad+2
=====>  Executing wordpress-nginx-nomad+2 pot commands on wordpress-nginx-nomad-amd64-14_0
=====>  No shell script available for the flavour wordpress-nginx-nomad+2
=====>  Flavour: wordpress-nginx-nomad+3
=====>  Executing wordpress-nginx-nomad+3 pot commands on wordpress-nginx-nomad-amd64-14_0
=====>  No shell script available for the flavour wordpress-nginx-nomad+3
=====>  Flavour: wordpress-nginx-nomad+4
=====>  Executing wordpress-nginx-nomad+4 pot commands on wordpress-nginx-nomad-amd64-14_0
=====>  No shell script available for the flavour wordpress-nginx-nomad+4
===>  exporting wordpress-nginx-nomad-amd64-14_0 @ 1709496640 to /tmp/wordpress-nginx-nomad-amd64-14_0_2.11.1.xz
xz: Reduced the number of threads from 4 to 3 to not exceed the memory usage limit of 503 MiB

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