Nextcloud on NGINX (Nomad)

Overview

This is a Nextcloud on nginx jail that can 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 nextcloud installation into /usr/local/www/nextcloud. If the directory is empty, nextcloud is installed when the jail is started and it can be configured through the normal nextcloud 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 nextcloud instance that has been installed will be reused.

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

Since the service is expected to be published via consul and a web proxy like traefik, plus frontend haproxy no HTTPS configuration is specified in nginx as it is expected that this is happening in the web proxy. HTTPS is merely enabled.

ZFS datasets

Make sure to create the ZFS datasets beforehand, adapt to your data set naming convention:

zfs create data
zfs create data/jaildata
zfs create data/jaildata/nextcloud_basic
zfs create data/jaildata/nextcloud_files

nextcloud_basic is where the nextcloud files are installed and is mounted to /usr/local/www/nextcloud/ inside the image.

nextcloud_files is where the files will be kept, and is mounted to /mnt/filestore or similar inside the image.

Installation

When you first run the image you’ll need to setup Nextcloud via the web interface, or cli.

Make sure to specify /mnt/filestore or similar for DATADIR parameter (-d) in the web interface for Nextcloud setup too by clicking the dropdown for database and storage.

If you have S3 object storage with a self-signed certificate, set the SELFSIGNHOST parameter to ip:port or pass in -s ip:port.

You must also copy-in the rootca.crt certificate from the setup of self-signed certificates for S3.

Custom objectstore.config.php

If you wish to make use of object storage for file backing you will need to copy-in a custom objectstore.config.php to /root/objectstore.config.php.

A sample would look like the following, however please pull your source file from a working instance and include the relevant S3 parameters:

<?php
$CONFIG = array (
  'objectstore' => array (
    'class' => '\\OC\\Files\\ObjectStore\\S3',
    'arguments' => array(
      'bucket' => '<your-bucket>',
      'autocreate' => true,
      'key'    => '<your-key>',
      'secret' => '<your-secret>',
      'hostname' => '<your host>',
      'port' => '<your port>',
      'use_ssl' => true,
      'region' => 'optional',
      'use_path_style' => true
    ),
  ),
);

Take note: the addition of an objectstore array in will stop the mounted-in filestore from working.

Custom mysql.config.php

If you wish to pre-configure MySQL settings you can copy-in a custom mysql.config.php to /root/mysql.config.php.

A sample would look like the following:

<?php
$CONFIG = array (
  'dbtype' => 'mysql',
  'version' => '',
  'dbname' => '<your-database-name>',
  'dbhost' => '<ip>:<port>',
  'dbtableprefix' => 'oc_',
  'dbuser' => '<db-user>',
  'dbpassword' => '<db-pass>',
  'mysql.utf8mb4' => true,
);

Custom custom.config.php

If you have other settings you’d like to preconfigure you can copy in a custom custom.config.php to /root/custom.config.php.

A sample may look like the following:

<?php
$CONFIG = array (
  'apps_paths' =>
  array (
    0 =>
    array (
      'path' => '/usr/local/www/nextcloud/apps',
      'url' => '/apps',
      'writable' => true,
    ),
    1 =>
    array (
      'path' => '/usr/local/www/nextcloud/apps-pkg',
      'url' => '/apps-pkg',
      'writable' => false,
    ),
  ),
  'logfile' => '/mnt/filestore/nextcloud.log',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'trusted_domains' =>
  array (
    0 => '10.0.0.2',
    1 => 'my.host.name',
  ),
  'datadirectory' => '/mnt/filestore',
  'overwrite.cli.url' => 'https://my.host.name',
  'overwritehost' => 'my.host.name',
  'overwriteprotocol' => 'https',
  'theme' => '',
  'loglevel' => 0,
);

Nomad Job File

A sample nomad job file is included here, and includes an optional copy-in step for a custom config.php. Remove if not used.

job "nextcloud" {
  datacenters = ["datacentre"]
  type        = "service"

  group "group1" {
    count = 1

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

    task "nextcloud1" {
      driver = "pot"

      restart {
        attempts = 3
        delay    = "30s"
      }

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

         check {
            type     = "tcp"
            name     = "tcp"
            interval = "300s"
            timeout  = "30s"
          }
          check_restart {
            limit = 0
            grace = "60s"
            ignore_warnings = false
          }
      }

      config {
        image = "https://potluck.honeyguide.net/nextcloud-nginx-nomad"
        pot = "nextcloud-nginx-nomad-amd64-14_0"
        tag = "0.93"
        command = "/usr/local/bin/cook"
        args = ["-d","/mnt/filestore","-s","host:ip"]
        copy = [
          "/path/to/custom/objectstore.config.php:/root/objectstore.config.php",
          "/path/to/custom/mysql.config.php:/root/mysql.config.php",
          "/path/to/custom/custom.config.php:/root/custom.config.php",
          "/path/to/rootca.crt:/root/rootca.crt",
        ]
        mount = [
         "/mnt/data/jaildata/nextcloud_basic:/usr/local/www/nextcloud",
         "/mnt/data/jaildata/nextcloud_files:/mnt/filestore",
        ]
        port_map = {
          http = "80"
        }
      }

      resources {
        cpu = 1000
        memory = 2000
      }
    }
  }
}

Warnings

This is a very large pot image. The nomad job will timeout on first run as pot takes a while to download the image and add it.

The image boots with https enabled in nginx. You will need a frontend proxy like haproxy or traefik or similar to handle the redirect from a domain name, with SSL, to the internal nomad host and port configured in job file. A valid digital certificate would be useful too.

Self-signed SSL for Object storage

Pass in a ip:port paramater for SELFSIGNHOST or -s ip:port. If you don’t specify a port 443 will be used.

You also need to copy-in the rootca.crt file created as part of setting up self-signed certificates. Make sure to copy-in to /root/rootca.crt as the script expecting this file name.

Useful CLI admin commands

The following commands can be entered in via the command line, from the pot host with

pot term nextcloud_id...

Get the LDAP config

su -m www -c 'php /usr/local/www/nextcloud/occ ldap:show-config'
su -m www -c 'php /usr/local/www/nextcloud/occ ldap:show-config' |grep -e ldapHost -e ldapBase

Set a new LDAP server

Get the value in the top row of command above, Configuration, should be something like s01 and set your new LDAP host with

su -m www -c 'php /usr/local/www/nextcloud/occ ldap:set-config s01 ldapHost 10.0.0.2'

or possibly scripted like follows:

myhost=10.0.0.2
myconfig=$(su -m www -c 'php /usr/local/www/nextcloud/occ ldap:show-config' | grep -e "| Configuration" | awk -F"|" '{print $3}' | sed 's/^ //g')
su -m www -c "php /usr/local/www/nextcloud/occ ldap:set-config ${myconfig} ldapHost ${myhost}"

Perform basic maintenance to fix errors with layout or stylesheets

su -m www -c 'php /usr/local/www/nextcloud/occ maintenance:repair'

Get a list of all possible commands

su -m www -c 'php /usr/local/www/nextcloud/occ list'

Getting Started

How To Use The Ready-Made Image

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

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p nextcloud-nginx-nomad-amd64-14_0 -t 0.93 -C potluck.pub -U https://potluck.honeyguide.net/nextcloud-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 nextcloud-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/nextcloud-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

0.93

  • Version bump for new quarterlies

0.92

  • Version bump for rebuild
  • Add storage to build host

0.91

  • Version bump for rebuild

0.90

  • Version bump for FBSD14

0.89

  • Add missing js mimetype

0.88

  • Version bump for rebuild
  • Add php82-sodium

0.87

  • Version bump for rebuild

0.86

  • Version bump for rebuild

0.85

  • Version bump for new version nextcloud
  • Use ImageMagick7 instead of ImageMagick6-nox11 and install all X dependencies too, because php82-pecl-imagick

0.84

  • Version bump for security updates in base

0.83

  • Version bump for new packages

0.82

  • Set X-Robots-Tag to “noindex, nofollow”

0.81

  • Update to php82 versions of everything

0.80

  • Include php package php81-sysvsem

0.79

  • Rebuild for bsd and package updates

0.78

  • Rebuild for pkg updates

0.77

  • Rebuild for failed build
  • php81-pecl-memcached is now php81-pecl-memcache

0.76

  • Version bump for new quarterlies

0.75

  • Version bump to rebuild for 13.2
  • Still using php81 versions

0.74

  • Version bump for rebuild
  • Signify enabled

0.73

  • Version bump for new base image
  • Signified

0.72

  • Version bump for rebuild
  • Experimental NGINX change to include backlog and reuseport

0.71

  • Version bump for rebuild

0.70

  • Version bump for rebuild

0.69

  • Version bump for rebuild

0.68

  • Version bump for new base image

0.67

  • nextcloud-twofactor_totp is included in base nextcloud package from v25.0.1 on

0.66

  • Non-layered version with latest package sources

0.65

  • php81 versions of nextcloud

0.64

  • Fix nextcloud versions nextcloud-php80-* with dependancies on php80
  • Incorrectly assumed php82 versions of nextcloud after checking all the other php package names

0.63

  • Bump to php82 versions of nextcloud

0.62

  • Remove default nextcloud config.php
  • x.y.z versioning numbering not implemented yet for this image

0.61

  • Improved process for new installs
  • Copy in multiple config files
  • Update README

0.60

  • Version bump for rebuild

0.59

  • Version bump for rebuild! fails to export

0.58

  • Version bump for rebuild

0.57

  • Version bump for rebuild again

0.56

  • Version bump for rebuild

0.55

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

0.54

  • Version bump for p3 rebuild

0.53

  • Updating php-fpm config
  • Adding www.conf.in file
  • openldap26-client

0.52

  • Formatting in new patch file, add comma

0.51

  • Tabs and newline in new patch file for no-ssl-verify

0.50

  • Remove erroneous log statement

0.49

  • Make patching nextcloud a specific option
  • Set non-verify parameters in new fashion

0.48

  • Patch file path fix

0.47

  • Comment out newwww group changes, not using fusemounts
  • Split configure-nextcloud.sh into multiple mini-scripts to isolate problems

0.46

  • Unquote “0” for group check

0.45

  • Need a check for group existing

0.44

  • Simplify start of php-fpm and nginx due to crash error

0.43

  • Reorder items
  • Add checklist for changes
  • First-time runs of image may bomb out when nomad restarts it, but pkg install still happening

0.42

  • Trying different approach copying in self-signed rootCA file
  • If you generated self-signed certs, you’ll have the file to copy in

0.41

  • Openssl s_client expects (no)servername flag

0.40

  • Undo pkg fetch, make sure to run pkg update

0.39

  • Pkg fetch nextcloud packages early on, include as local in package cache

0.38

  • For fresh installs, force pkg update before installing nextcloud

0.37

  • Completely remove syslog-ng as not working with nomad pots
  • fix nc-config.php setup, needs manual copy-in

0.36

  • Version bump for rebuild
  • Adding OPTIND to getopts
  • Fixing .env.cook with if statement
  • Remove ssh disable as done in base

0.35

  • fixing copy-in to reflect nextcloud-nginx-nomad flavour not freebsd-potluck

0.34

  • Setting runs in nomad correctly all over
  • Increment version in README nomad job

0.33

  • Version bump for rebuild
  • Correct README added back from previous cook format image
  • README update for version in job file

0.32

  • Update image to use newer cook format
  • Rebuild for layered images again

0.31

  • Version bump to build a non-layered image

0.30

  • Nginx improvements for proxy and fastcgi timeouts
  • Adjust php-fpm and nginx start again, restart loops with failure for nginx

0.29

  • Trial with php80
  • Fixed README for job file version and FreeBSD version
  • Using pkill to stop nginx and replace a kill pgrep pipe
  • Adjusting start process for php-fpm and nginx to use restart

0.28

  • Missing ’then’ in if statement
  • Fixed CHANGELOG versioning

0.27

  • Revert to php74-* and next update do the php82 change
  • Remove syslogd, replace with syslog-ng

0.26

  • Setting cron job to every 15mins because no checks if existing job running
  • revert to ImageMagick6-nox11 for testing

0.25

  • Version bump for FreeBSD-13.1 image
  • php74-* to php82-*
  • no more php82-openssl, possibly in php core
  • no more php82-json, in php core
  • ImageMagick7-nox11 instead of ImageMagick6-nox11

0.24

  • Replacing package ImageMagick7 with ImageMagick6-nox11
  • Removing php74-pHash due to conflicts
  • Fixing version in nomad job file in readme missed last update
  • Adding package libheif
  • Fixing occache setup in php.ini extra file

0.23

  • Adding package ImageMagick7, php74-mysqli
  • Additions to php.ini extra file

0.22

  • Fixing nginx and php-fpm problems

0.21

  • Updates to nginx.conf copy in
  • Adding missing packages for php libraries
  • Added cron job to /etc/crontab

0.20

  • Added ocdata dotfile setup

0.19

  • Include self-signed CA cert in nextcloud files

0.18

  • Improved patch file

0.17

  • Patch nextcloud for self-signed S3 if self-signed var enabled

0.16

  • Enable fopen for php
  • Enable apc.enable_cli for php

0.15

  • Include basic cli admin scripts
  • Set php error log

0.14

  • Add nextcloud logs with www perms
  • Added mechanism to import self-signed cert for libcurl usage

0.13

  • Check for presence of /root/nc-config.php and copy to /usr/local/www/nextcloud/config/config.php if exists, to allow for custom config setup

0.12

  • Adjust start process for php-fpm and nginx, rebuild for latest packages
  • Fixup nomad job file example

0.11

  • Rebuild for new potluck template and other changes

0.10

  • Rebuild for FreeBSD 12_3 and 13 & pot 13

0.9

  • Adding -9 to killall command as nginx not restarting correctly. Including setting of www perms, removing tweak for S3 mounts.

0.8

  • Fixing bad path for php-fpm again

0.7

  • Fixing bad path for php-fpm from nextcloud docs in reorg

0.6

  • Re-organising nginx.conf as per nextcloud docs

0.5

  • Fixing php-fpm config to use socket, old sed didn’t work

0.4

  • Enabling php errors in browser, improvements and fixes to nginx.conf. Adding memcached.

0.3

  • Correcting nginx.conf as documented parts don’t work

0.2

  • Fixing path for copy in of config files

0.1

  • First release nextcloud flavour

0.0

  • Initial commit

These images were built on Tue Apr 23 08:09:01 UTC 2024

Manual Image Download Links

nextcloud-nginx-nomad-amd64-14_0_0.93.xz ( )
nextcloud-nginx-nomad-amd64-14_0_0.93.xz.skein ( ) nextcloud-nginx-nomad-amd64-14_0_0.93.xz.skein.sig ( ) nextcloud-nginx-nomad-amd64-14_0_0.93.xz.meta ( )

Jenkins Pot Creation Logs

nextcloud-nginx-nomad-amd64-14_0_0.93:


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

##############
# non-layered image additions
#############
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 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 memcached"
pkg install -y memcached

step "Install package fontconfig"
pkg install -y fontconfig

step "Install package freetype2"
pkg install -y freetype2

step "Install package giflib"
pkg install -y giflib

step "Install package gmp"
pkg install -y gmp

step "Install package icu"
pkg install -y icu

step "Install package jbigkit"
pkg install -y jbigkit

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

step "Install package libargon2"
pkg install -y libargon2

step "Install package libgcrypt"
pkg install -y libgcrypt

step "Install package libgd"
pkg install -y libgd

step "Install package libgpg-error"
pkg install -y libgpg-error

step "Install package libxslt"
pkg install -y libxslt

step "Install package libzip"
pkg install -y libzip

step "Install package oniguruma"
pkg install -y oniguruma

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

step "Install package png"
pkg install -y png

step "Install package tiff"
pkg install -y tiff

step "Install package webp"
pkg install -y webp

step "Install package pkgconf"
pkg install -y pkgconf

step "Install package php82"
pkg install -y php82

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

# this is giving problems Dec 2023, missing in package sources
step "Install package php82-pecl-imagick"
pkg install -y php82-pecl-imagick

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

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

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

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

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

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

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

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

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

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

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

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

# php82-pecl-imagick installs ImageMagick7 as dependency.
#step "Install package ImageMagick6-nox11"
#pkg install -y ImageMagick6-nox11

step "Install package ImageMagick7"
pkg install -y ImageMagick7

step "Install package libheif"
pkg install -y libheif

step "Install package ffmpeg"
pkg install -y ffmpeg

step "Install package jq"
pkg install -y jq

step "Install package nano"
pkg install -y nano

step "Install package sudo"
pkg install -y sudo

step "Clean package installation"
pkg clean -y

step "Create necessary directories if they don't exist"
# Create mountpoints
mkdir /.snapshots

step "Enable nginx"
service nginx enable

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

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

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

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

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

nextcloud-nginx-nomad/nextcloud-nginx-nomad+4:
set-cmd -c "/usr/local/bin/cook"
nextcloud-nginx-nomad/nextcloud-nginx-nomad+4.sh:
===>  Creating a new pot
===>  pot name     : nextcloud-nginx-nomad-amd64-14_0
===>  type         : single
===>  base         : 14.0
===>  pot_base     : 
===>  level        : 0
===>  network-type : public-bridge
===>  network-stack: ipv4
===>  ip           : 10.192.0.3
===>  bridge       : 
===>  dns          : inherit
===>  flavours     : fbsd-update nextcloud-nginx-nomad
===>  Fetching FreeBSD 14.0
/var/cache/pot/14.0-RELEASE_base.txz                   190 MB 8333 kBps    23s
===>  Extract the tarball
=====>  Flavour: fbsd-update
=====>  Starting nextcloud-nginx-nomad-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/tmp
defaultrouter: NO -> 10.192.0.1
===>  Starting the pot nextcloud-nginx-nomad-amd64-14_0
=====>  Pot nextcloud-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=nextcloud-nginx-nomad-amd64-14_0 host.hostname=nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE path=/mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
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:58:4f:b1:84: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
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Clearing /tmp (X related).
Starting syslogd.
Starting cron.

Tue Apr 23 07:57:24 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on nextcloud-nginx-nomad-amd64-14_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching public key from update1.freebsd.org... done.
Fetching metadata signature for 14.0-RELEASE from update1.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 138 patches.....10....20....30....40....50....60....70....80....90....100....110....120....130.... done.
Applying patches... done.
The following files will be updated as part of updating to
14.0-RELEASE-p6:
/bin/df
/bin/freebsd-version
/bin/mv
/etc/defaults/rc.conf
/etc/periodic/daily/480.leapfile-ntpd
/lib/libbe.so.1
/lib/libc.so.7
/lib/libspl.so.2
/lib/libufs.so.7
/lib/libutil.so.9
/lib/libzfs.so.4
/lib/libzpool.so.2
/libexec/ld-elf.so.1
/libexec/ld-elf32.so.1
/rescue/[
/rescue/bectl
/rescue/bsdlabel
/rescue/bunzip2
/rescue/bzcat
/rescue/bzip2
/rescue/camcontrol
/rescue/cat
/rescue/ccdconfig
/rescue/chflags
/rescue/chgrp
/rescue/chio
/rescue/chmod
/rescue/chown
/rescue/chroot
/rescue/clri
/rescue/cp
/rescue/csh
/rescue/date
/rescue/dd
/rescue/devfs
/rescue/df
/rescue/dhclient
/rescue/disklabel
/rescue/dmesg
/rescue/dump
/rescue/dumpfs
/rescue/dumpon
/rescue/echo
/rescue/ed
/rescue/ex
/rescue/expr
/rescue/fastboot
/rescue/fasthalt
/rescue/fdisk
/rescue/fetch
/rescue/fsck
/rescue/fsck_4.2bsd
/rescue/fsck_ffs
/rescue/fsck_msdosfs
/rescue/fsck_ufs
/rescue/fsdb
/rescue/fsirand
/rescue/gbde
/rescue/geom
/rescue/getfacl
/rescue/glabel
/rescue/gpart
/rescue/groups
/rescue/gunzip
/rescue/gzcat
/rescue/gzip
/rescue/halt
/rescue/head
/rescue/hostname
/rescue/id
/rescue/ifconfig
/rescue/init
/rescue/ipf
/rescue/iscsictl
/rescue/iscsid
/rescue/kenv
/rescue/kill
/rescue/kldconfig
/rescue/kldload
/rescue/kldstat
/rescue/kldunload
/rescue/ldconfig
/rescue/less
/rescue/link
/rescue/ln
/rescue/ls
/rescue/lzcat
/rescue/lzma
/rescue/md5
/rescue/mdconfig
/rescue/mdmfs
/rescue/mkdir
/rescue/mknod
/rescue/more
/rescue/mount
/rescue/mount_cd9660
/rescue/mount_msdosfs
/rescue/mount_nfs
/rescue/mount_nullfs
/rescue/mount_udf
/rescue/mount_unionfs
/rescue/mt
/rescue/mv
/rescue/nc
/rescue/newfs
/rescue/newfs_msdos
/rescue/nos-tun
/rescue/pgrep
/rescue/ping
/rescue/ping6
/rescue/pkill
/rescue/poweroff
/rescue/ps
/rescue/pwd
/rescue/rcorder
/rescue/rdump
/rescue/realpath
/rescue/reboot
/rescue/red
/rescue/rescue
/rescue/restore
/rescue/rm
/rescue/rmdir
/rescue/route
/rescue/routed
/rescue/rrestore
/rescue/rtquery
/rescue/rtsol
/rescue/savecore
/rescue/sed
/rescue/setfacl
/rescue/sh
/rescue/shutdown
/rescue/sleep
/rescue/stty
/rescue/swapon
/rescue/sync
/rescue/sysctl
/rescue/tail
/rescue/tar
/rescue/tcsh
/rescue/tee
/rescue/test
/rescue/tunefs
/rescue/umount
/rescue/unlink
/rescue/unlzma
/rescue/unxz
/rescue/unzstd
/rescue/vi
/rescue/whoami
/rescue/xz
/rescue/xzcat
/rescue/zcat
/rescue/zdb
/rescue/zfs
/rescue/zpool
/rescue/zstd
/rescue/zstdcat
/rescue/zstdmt
/sbin/bectl
/sbin/dump
/sbin/fdisk
/sbin/fsck
/sbin/fsck_4.2bsd
/sbin/fsck_ffs
/sbin/fsck_ufs
/sbin/growfs
/sbin/init
/sbin/mdmfs
/sbin/mksnap_ffs
/sbin/mount
/sbin/mount_cd9660
/sbin/mount_fusefs
/sbin/mount_mfs
/sbin/mount_msdosfs
/sbin/mount_nfs
/sbin/mount_nullfs
/sbin/mount_udf
/sbin/mount_unionfs
/sbin/newfs_msdos
/sbin/nfsiod
/sbin/rdump
/sbin/savecore
/sbin/tunefs
/sbin/umount
/sbin/zfs
/usr/bin/c++
/usr/bin/c++filt
/usr/bin/cc
/usr/bin/clang
/usr/bin/clang++
/usr/bin/clang-cpp
/usr/bin/cpp
/usr/bin/find
/usr/bin/gcov
/usr/bin/kyua
/usr/bin/ld.lld
/usr/bin/lldb
/usr/bin/lldb-server
/usr/bin/llvm-addr2line
/usr/bin/llvm-ar
/usr/bin/llvm-cov
/usr/bin/llvm-cxxfilt
/usr/bin/llvm-nm
/usr/bin/llvm-objcopy
/usr/bin/llvm-objdump
/usr/bin/llvm-profdata
/usr/bin/llvm-ranlib
/usr/bin/llvm-readelf
/usr/bin/llvm-readobj
/usr/bin/llvm-size
/usr/bin/llvm-strings
/usr/bin/llvm-strip
/usr/bin/llvm-symbolizer
/usr/bin/lsvfs
/usr/bin/mkuzip
/usr/bin/nfsstat
/usr/bin/objdump
/usr/bin/quota
/usr/bin/readlink
/usr/bin/slogin
/usr/bin/ssh
/usr/bin/ssh-keyscan
/usr/bin/stat
/usr/bin/tail
/usr/include/fs/nfs/nfs_var.h
/usr/include/netinet/in_pcb.h
/usr/include/sys/mount.h
/usr/lib/clang/16/lib/freebsd/libclang_rt.asan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.asan-x86_64.so
/usr/lib/clang/16/lib/freebsd/libclang_rt.cfi-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.cfi_diag-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.dd-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.msan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.stats-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.tsan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.xray-x86_64.a
/usr/lib/lib9p.a
/usr/lib/lib9p.so.1
/usr/lib/libbe.a
/usr/lib/libc.a
/usr/lib/libc_pic.a
/usr/lib/libefivar.a
/usr/lib/libefivar.so.1
/usr/lib/libkadm5srv.a
/usr/lib/libkadm5srv.so.11
/usr/lib/libkrb5.a
/usr/lib/libkrb5.so.11
/usr/lib/libprivateauditd.a
/usr/lib/libprivateauditd.so.5
/usr/lib/libprivatessh.a
/usr/lib/libprivatessh.so.5
/usr/lib/libprivateunbound.a
/usr/lib/libprivateunbound.so.5
/usr/lib/libroken.a
/usr/lib/libroken.so.11
/usr/lib/libspl.a
/usr/lib/libufs.a
/usr/lib/libugidfw.a
/usr/lib/libugidfw.so.5
/usr/lib/libutil.a
/usr/lib/libzfs.a
/usr/lib/libzpool.a
/usr/lib/snmp_hostres.so.6
/usr/libexec/sendmail/sendmail
/usr/libexec/ssh-keysign
/usr/sbin/automount
/usr/sbin/automountd
/usr/sbin/autounmountd
/usr/sbin/bhyveload
/usr/sbin/extattrctl
/usr/sbin/hv_vss_daemon
/usr/sbin/jail
/usr/sbin/local-unbound
/usr/sbin/local-unbound-anchor
/usr/sbin/local-unbound-checkconf
/usr/sbin/local-unbound-control
/usr/sbin/lpd
/usr/sbin/mount_smbfs
/usr/sbin/mountd
/usr/sbin/pnfsdscopymr
/usr/sbin/quot
/usr/sbin/rpc.lockd
/usr/sbin/rpc.umntall
/usr/sbin/snapinfo
/usr/sbin/sshd
/usr/sbin/zdb
/usr/share/zoneinfo/America/Godthab
/usr/share/zoneinfo/America/Miquelon
/usr/share/zoneinfo/America/Montreal
/usr/share/zoneinfo/America/Nassau
/usr/share/zoneinfo/America/Nipigon
/usr/share/zoneinfo/America/Nuuk
/usr/share/zoneinfo/America/Scoresbysund
/usr/share/zoneinfo/America/Thunder_Bay
/usr/share/zoneinfo/America/Toronto
/usr/share/zoneinfo/Antarctica/Casey
/usr/share/zoneinfo/Antarctica/Vostok
/usr/share/zoneinfo/Asia/Almaty
/usr/share/zoneinfo/Asia/Gaza
/usr/share/zoneinfo/Asia/Hebron
/usr/share/zoneinfo/Asia/Ho_Chi_Minh
/usr/share/zoneinfo/Asia/Qostanay
/usr/share/zoneinfo/Asia/Saigon
/usr/share/zoneinfo/Canada/Eastern
/usr/share/zoneinfo/zone.tab
/usr/share/zoneinfo/zone1970.tab
/var/db/etcupdate/current/etc/defaults/rc.conf
/var/db/etcupdate/current/etc/periodic/daily/480.leapfile-ntpd
/var/db/mergemaster.mtree
Installing updates...Scanning /usr/share/certs/untrusted for certificates...
Scanning /usr/share/certs/trusted for certificates...
 done.
=====>  Stop the pot nextcloud-nginx-nomad-amd64-14_0
=====>  Remove p4662769e23ee epair network interfaces
=====>  unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/dev
=====>  Flavour: nextcloud-nginx-nomad
=====>  Executing nextcloud-nginx-nomad pot commands on nextcloud-nginx-nomad-amd64-14_0
=====>  mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/local copied in the pot nextcloud-nginx-nomad-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/dev is already unmounted
=====>  Starting nextcloud-nginx-nomad-amd64-14_0 pot for the initial bootstrap
=====>  Setting pot nextcloud-nginx-nomad-amd64-14_0 temporarily to persistent
=====>  mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/tmp
===>  Starting the pot nextcloud-nginx-nomad-amd64-14_0
=====>  Pot nextcloud-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=nextcloud-nginx-nomad-amd64-14_0 host.hostname=nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p6 path=/mnt/srv/pot/jails/nextcloud-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
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:77:2f:2a:10: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
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Clearing /tmp (X related).
Starting syslogd.
Starting cron.

Tue Apr 23 07:59:56 UTC 2024
/usr/local/etc/pot/flavours/nextcloud-nginx-nomad.sh -> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/tmp/nextcloud-nginx-nomad.sh
=====>  Executing nextcloud-nginx-nomad script on nextcloud-nginx-nomad-amd64-14_0
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Installing pkg-1.21.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Extracting pkg-1.21.2: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:14:amd64/latest, please wait...
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail 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...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Fetching meta.conf: . done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 34080 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	openssl: 3.0.13_3,1

Number of packages to be installed: 1

The process will require 22 MiB more space.
6 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching openssl-3.0.13_3,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing openssl-3.0.13_3,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting openssl-3.0.13_3,1: .......... done
Step 7: Install package ca_root_nss
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:
	ca_root_nss: 3.93_2

Number of packages to be installed: 1

281 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching ca_root_nss-3.93_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing ca_root_nss-3.93_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting ca_root_nss-3.93_2: ....... done
Scanning /usr/share/certs/untrusted for certificates...
Scanning /usr/share/certs/trusted for certificates...
Scanning /usr/local/share/certs for certificates...
=====
Message from ca_root_nss-3.93_2:

--
FreeBSD does not, and can not warrant that the certification authorities
whose certificates are included in this package have in any way been
audited for trustworthiness or RFC 3647 compliance.

Assessment and verification of trust is the complete responsibility of
the system administrator.

This package installs symlinks to support root certificate discovery
for software that either uses other cryptographic libraries than
OpenSSL, or use OpenSSL but do not follow recommended practice.

If you prefer to do this manually, replace the following symlinks with
either an empty file or your site-local certificate bundle.

  * /etc/ssl/cert.pem
  * /usr/local/etc/ssl/cert.pem
  * /usr/local/openssl/cert.pem
Step 8: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 7 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	curl: 8.7.1
	indexinfo: 0.3.1
	libidn2: 2.3.7
	libnghttp2: 1.61.0
	libpsl: 0.21.5
	libssh2: 1.11.0_1,3
	libunistring: 1.2

Number of packages to be installed: 7

The process will require 10 MiB more space.
3 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/7] Fetching indexinfo-0.3.1.pkg: . done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/7] Fetching libnghttp2-1.61.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/7] Fetching libidn2-2.3.7.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/7] Fetching libunistring-1.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/7] Fetching libssh2-1.11.0_1,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/7] Fetching libpsl-0.21.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/7] Fetching curl-8.7.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/7] Installing indexinfo-0.3.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/7] Extracting indexinfo-0.3.1: .... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/7] Installing libunistring-1.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/7] Extracting libunistring-1.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/7] Installing libidn2-2.3.7...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/7] Extracting libidn2-2.3.7: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/7] Installing libnghttp2-1.61.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/7] Extracting libnghttp2-1.61.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/7] Installing libssh2-1.11.0_1,3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/7] Extracting libssh2-1.11.0_1,3: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/7] Installing libpsl-0.21.5...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/7] Extracting libpsl-0.21.5: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/7] Installing curl-8.7.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/7] Extracting curl-8.7.1: .......... done
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):

New packages to be INSTALLED:
	jo: 1.6_1

Number of packages to be installed: 1

21 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching jo-1.6_1.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing jo-1.6_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.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 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	bash: 5.2.26_1
	gettext-runtime: 0.22.5
	readline: 8.2.10

Number of packages to be installed: 3

The process will require 12 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching readline-8.2.10.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching bash-5.2.26_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching gettext-runtime-0.22.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing readline-8.2.10...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting readline-8.2.10: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing gettext-runtime-0.22.5...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting gettext-runtime-0.22.5: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing bash-5.2.26_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] 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 5 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libiconv: 1.17_1
	liblz4: 1.9.4_1,1
	rsync: 3.2.7_1
	xxhash: 0.8.2_1
	zstd: 1.5.6

Number of packages to be installed: 5

The process will require 7 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Fetching rsync-3.2.7_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Fetching liblz4-1.9.4_1,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Fetching zstd-1.5.6.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Fetching xxhash-0.8.2_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Fetching libiconv-1.17_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Installing liblz4-1.9.4_1,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Extracting liblz4-1.9.4_1,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Installing zstd-1.5.6...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Extracting zstd-1.5.6: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Installing xxhash-0.8.2_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Extracting xxhash-0.8.2_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Installing libiconv-1.17_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Extracting libiconv-1.17_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Installing rsync-3.2.7_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Extracting rsync-3.2.7_1: .......... done
=====
Message from rsync-3.2.7_1:

--
Some scripts provided by rsync, such as rrsync,
require Python, which is not installed by default.
Step 12: 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_16,3
	pcre2: 10.43

Number of packages to be installed: 2

The process will require 9 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.24.0_16,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching pcre2-10.43.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing pcre2-10.43...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting pcre2-10.43: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing nginx-1.24.0_16,3...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.24.0_16,3: .......... done
=====
Message from nginx-1.24.0_16,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 13: 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.17

Number of packages to be installed: 2

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

--
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 14: 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.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching postgresql15-client-15.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing postgresql15-client-15.6...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.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 15: Install package memcached
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:
	cyrus-sasl: 2.1.28_4
	libevent: 2.1.12
	memcached: 1.6.26

Number of packages to be installed: 3

The process will require 11 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching cyrus-sasl-2.1.28_4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching memcached-1.6.26.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching libevent-2.1.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing cyrus-sasl-2.1.28_4...
*** Added group `cyrus' (id 60)
*** Added user `cyrus' (id 60)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting cyrus-sasl-2.1.28_4: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing libevent-2.1.12...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting libevent-2.1.12: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing memcached-1.6.26...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting memcached-1.6.26: .......... done
=====
Message from cyrus-sasl-2.1.28_4:

--
You can use sasldb2 for authentication, to add users use:

	saslpasswd2 -c username

If you want to enable SMTP AUTH with the system Sendmail, read
Sendmail.README

NOTE: This port has been compiled with a default pwcheck_method of
      auxprop.  If you want to authenticate your user by /etc/passwd,
      PAM or LDAP, install ports/security/cyrus-sasl2-saslauthd and
      set sasl_pwcheck_method to saslauthd after installing the
      Cyrus-IMAPd 2.X port.  You should also check the
      /usr/local/lib/sasl2/*.conf files for the correct
      pwcheck_method.
      If you want to use GSSAPI mechanism, install
      ports/security/cyrus-sasl2-gssapi.
      If you want to use SRP mechanism, install
      ports/security/cyrus-sasl2-srp.
      If you want to use LDAP auxprop plugin, install
      ports/security/cyrus-sasl2-ldapdb.
Step 16: Install package fontconfig
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 5 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	brotli: 1.1.0,1
	expat: 2.6.2
	fontconfig: 2.15.0_2,1
	freetype2: 2.13.2
	png: 1.6.43

Number of packages to be installed: 5

The process will require 11 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Fetching png-1.6.43.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Fetching freetype2-2.13.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Fetching fontconfig-2.15.0_2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Fetching brotli-1.1.0,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Fetching expat-2.6.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Installing png-1.6.43...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Extracting png-1.6.43: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Installing brotli-1.1.0,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Extracting brotli-1.1.0,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Installing freetype2-2.13.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Extracting freetype2-2.13.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Installing expat-2.6.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Extracting expat-2.6.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Installing fontconfig-2.15.0_2,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Extracting fontconfig-2.15.0_2,1: .......... done
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
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).
Step 17: 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 18: Install package giflib
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:
	giflib: 5.2.1_1

Number of packages to be installed: 1

238 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching giflib-5.2.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing giflib-5.2.1_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting giflib-5.2.1_1: .......... done
Step 19: Install package gmp
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:
	gmp: 6.3.0

Number of packages to be installed: 1

The process will require 3 MiB more space.
498 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching gmp-6.3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing gmp-6.3.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting gmp-6.3.0: .......... done
Step 20: Install package icu
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:
	icu: 74.2_1,1

Number of packages to be installed: 1

The process will require 52 MiB more space.
13 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching icu-74.2_1,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing icu-74.2_1,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting icu-74.2_1,1: .......... done
Step 21: Install package jbigkit
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:
	jbigkit: 2.1_2

Number of packages to be installed: 1

78 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching jbigkit-2.1_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing jbigkit-2.1_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting jbigkit-2.1_2: .......... done
Step 22: Install package jpeg-turbo
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:
	jpeg-turbo: 3.0.2

Number of packages to be installed: 1

The process will require 3 MiB more space.
472 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching jpeg-turbo-3.0.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing jpeg-turbo-3.0.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting jpeg-turbo-3.0.2: .......... done
Step 23: Install package libargon2
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:
	libargon2: 20190702_1

Number of packages to be installed: 1

69 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching libargon2-20190702_1.pkg: ......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing libargon2-20190702_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting libargon2-20190702_1: .......... done
Step 24: Install package libgcrypt
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:
	libgcrypt: 1.10.3_1
	libgpg-error: 1.48

Number of packages to be installed: 2

The process will require 6 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching libgcrypt-1.10.3_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching libgpg-error-1.48.pkg: ........ done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libgpg-error-1.48...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libgpg-error-1.48: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing libgcrypt-1.10.3_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting libgcrypt-1.10.3_1: .......... done
Step 25: Install package libgd
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 4 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libdeflate: 1.20
	libgd: 2.3.3_12,1
	tiff: 4.4.0_3
	webp: 1.4.0

Number of packages to be installed: 4

The process will require 7 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching libgd-2.3.3_12,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching webp-1.4.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching tiff-4.4.0_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching libdeflate-1.20.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Installing libdeflate-1.20...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting libdeflate-1.20: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Installing tiff-4.4.0_3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting tiff-4.4.0_3: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Installing webp-1.4.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting webp-1.4.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Installing libgd-2.3.3_12,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting libgd-2.3.3_12,1: .......... done
Step 26: Install package libgpg-error
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 libxslt
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:
	libxml2: 2.11.7
	libxslt: 1.1.37_1

Number of packages to be installed: 2

The process will require 6 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching libxml2-2.11.7.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching libxslt-1.1.37_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libxml2-2.11.7...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libxml2-2.11.7: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing libxslt-1.1.37_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting libxslt-1.1.37_1: .......... done
Step 28: Install package libzip
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:
	libzip: 1.10.1

Number of packages to be installed: 1

246 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching libzip-1.10.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing libzip-1.10.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting libzip-1.10.1: .......... done
Step 29: Install package oniguruma
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:
	oniguruma: 6.9.9

Number of packages to be installed: 1

The process will require 1 MiB more space.
251 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching oniguruma-6.9.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing oniguruma-6.9.9...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting oniguruma-6.9.9: .......... done
Step 30: Install package openldap26-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:
	openldap26-client: 2.6.7

Number of packages to be installed: 1

The process will require 5 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching openldap26-client-2.6.7.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing openldap26-client-2.6.7...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting openldap26-client-2.6.7: .......... done
=====
Message from openldap26-client-2.6.7:

--
The OpenLDAP client package has been successfully installed.

Edit
  /usr/local/etc/openldap/ldap.conf
to change the system-wide client defaults.

Try `man ldap.conf' and visit the OpenLDAP FAQ-O-Matic at
  http://www.OpenLDAP.org/faq/index.cgi?file=3
for more information.
Step 31: 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 32: 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 33: 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 34: Install package pkgconf
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:
	pkgconf: 2.2.0,1

Number of packages to be installed: 1

82 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching pkgconf-2.2.0,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing pkgconf-2.2.0,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting pkgconf-2.2.0,1: .......... done
Step 35: Install package php82
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: 8.2.18

Number of packages to be installed: 1

The process will require 25 MiB more space.
4 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-8.2.18.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-8.2.18: .......... done
Step 36: 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.18
	php82-dom: 8.2.18
	php82-extensions: 1.0
	php82-filter: 8.2.18
	php82-iconv: 8.2.18
	php82-opcache: 8.2.18
	php82-pdo: 8.2.18
	php82-pdo_sqlite: 8.2.18
	php82-phar: 8.2.18
	php82-posix: 8.2.18
	php82-session: 8.2.18
	php82-simplexml: 8.2.18
	php82-sqlite3: 8.2.18
	php82-tokenizer: 8.2.18
	php82-xml: 8.2.18
	php82-xmlreader: 8.2.18
	php82-xmlwriter: 8.2.18
	sqlite3: 3.45.1,1

Number of packages to be installed: 18

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

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

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

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

--
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.18:

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

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

--
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.18:

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

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

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

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

--
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.18:

--
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.18:

--
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.18:

--
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.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_sqlite.ini.sample
Step 37: Install package php82-bcmath
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-bcmath: 8.2.18

Number of packages to be installed: 1

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

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

Number of packages to be installed: 1

13 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-bz2-8.2.18.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-bz2-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-bz2-8.2.18: ........ done
=====
Message from php82-bz2-8.2.18:

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

Number of packages to be installed: 1

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

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

Number of packages to be installed: 1

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

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

Number of packages to be installed: 1

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

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

Number of packages to be installed: 1

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

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

Number of packages to be installed: 1

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

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

Number of packages to be installed: 1

24 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-gmp-8.2.18.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-gmp-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-gmp-8.2.18: ......... done
=====
Message from php82-gmp-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gmp.ini.sample
Step 48: Install package php82-iconv
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 php82-imap
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:
	panda-cclient: 20130621_3
	php82-imap: 8.2.18

Number of packages to be installed: 2

The process will require 6 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-imap-8.2.18.pkg: ....... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching panda-cclient-20130621_3.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing panda-cclient-20130621_3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting panda-cclient-20130621_3: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-imap-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-imap-8.2.18: ........ done
=====
Message from panda-cclient-20130621_3:

--
Warning: You have chosen to include SSL support. Applications/ports that use
the cclient library but do not support SSL may stop working or have problems
linking. Linking them explicitly with ssl (-lssl -lcrypto) may or may not help.
=====
Message from php82-imap-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-imap.ini.sample
Step 50: Install package php82-intl
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-intl: 8.2.18

Number of packages to be installed: 1

143 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-intl-8.2.18.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-intl-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-intl-8.2.18: .......... done
=====
Message from php82-intl-8.2.18:

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

Number of packages to be installed: 1

36 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-ldap-8.2.18.pkg: ...... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-ldap-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-ldap-8.2.18: ........ done
=====
Message from php82-ldap-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ldap.ini.sample
Step 52: 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.18

Number of packages to be installed: 1

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

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

Number of packages to be installed: 1

The process will require 4 MiB more space.
914 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-mbstring-8.2.18.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-mbstring-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-mbstring-8.2.18: .......... done
=====
Message from php82-mbstring-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mbstring.ini.sample
Step 54: Install package php82-opcache
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 php82-pcntl
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-pcntl: 8.2.18

Number of packages to be installed: 1

20 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pcntl-8.2.18.pkg: ...... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pcntl-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pcntl-8.2.18: ......... done
=====
Message from php82-pcntl-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pcntl.ini.sample
Step 56: Install package php82-pdo
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 php82-pdo_mysql
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-pdo_mysql: 8.2.18

Number of packages to be installed: 1

19 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pdo_mysql-8.2.18.pkg: ..... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pdo_mysql-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pdo_mysql-8.2.18: ......... done
=====
Message from php82-pdo_mysql-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_mysql.ini.sample
Step 58: Install package php82-pecl-APCu
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-pecl-APCu: 5.1.23

Number of packages to be installed: 1

55 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pecl-APCu-5.1.23.pkg: ......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pecl-APCu-5.1.23...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pecl-APCu-5.1.23: .......... done
=====
Message from php82-pecl-APCu-5.1.23:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-apcu.ini.sample
Step 59: Install package php82-pecl-memcache
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:
	php82-pecl-memcache: 8.2
	php82-zlib: 8.2.18

Number of packages to be installed: 2

64 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-pecl-memcache-8.2.pkg: ...... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching php82-zlib-8.2.18.pkg: ..... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing php82-zlib-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting php82-zlib-8.2.18: ........ done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-pecl-memcache-8.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-pecl-memcache-8.2: ....... done
=====
Message from php82-zlib-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zlib.ini.sample
=====
Message from php82-pecl-memcache-8.2:

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

New packages to be INSTALLED:
	php82-pecl-redis: 5.3.7_1

Number of packages to be installed: 1

160 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-pecl-redis-5.3.7_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-pecl-redis-5.3.7_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-pecl-redis-5.3.7_1: .......... done
=====
Message from php82-pecl-redis-5.3.7_1:

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

New packages to be INSTALLED:
	ImageMagick7: 7.1.1.26_3
	Imath: 3.1.11
	aom: 3.8.2
	avahi-app: 0.8_2
	cairo: 1.17.4_2,3
	cups: 2.4.7_2
	dav1d: 1.4.1
	dbus: 1.14.10_5,1
	dbus-glib: 0.112_1
	dejavu: 2.37_3
	encodings: 1.1.0,1
	ffmpeg: 6.1.1_5,1
	fftw3: 3.3.10_5
	font-bh-ttf: 1.0.3_5
	font-misc-ethiopic: 1.0.4
	font-misc-meltho: 1.0.3_5
	fribidi: 1.0.13_1
	gdbm: 1.23
	gdk-pixbuf2: 2.42.10_2
	ghostscript10: 10.03.0_1
	glib: 2.80.0,2
	gnome_subr: 1.0
	gnutls: 3.8.5_1
	graphite2: 1.3.14
	gsfonts: 8.11_8
	harfbuzz: 8.4.0
	highway: 1.1.0
	jbig2dec: 0.20_1
	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.5
	libXext: 1.3.6,1
	libXfixes: 6.0.0_1
	libXft: 2.3.7_1
	libXrandr: 1.5.2_1
	libXrender: 0.9.10_2
	libXt: 1.3.0,1
	libass: 0.17.1_2
	libdaemon: 0.14_1
	libdatrie: 0.2.13_2
	libdrm: 2.4.120_1,1
	libepoll-shim: 0.0.20230411
	libffi: 3.4.4_1
	libfontenc: 1.1.8
	libglvnd: 1.7.0
	libheif: 1.17.6_2
	libidn: 1.38_1
	libjxl: 0.10.2
	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
	libraqm: 0.10.1
	libraw: 0.21.2
	librsvg2-rust: 2.58.0_1
	libtasn1: 4.19.0_1
	libthai: 0.1.29_1
	libudev-devd: 0.5.2
	libunibreak: 6.1,1
	libunwind: 20240221
	libv4l: 1.23.0_4
	libva: 2.21.0
	libvdpau: 1.5
	libvorbis: 1.3.7_2,3
	libvpx: 1.14.0
	libwmf: 0.2.13_2
	libx264: 0.164.3095
	libxcb: 1.16.1
	mkfontscale: 1.2.3
	mpdecimal: 4.0.0
	nettle: 3.9.1
	openexr: 3.2.4
	openjpeg: 2.5.2
	opus: 1.5.1
	p11-kit: 0.25.3_2
	pango: 1.50.14
	perl5: 5.36.3_1
	php82-pecl-imagick: 3.7.0_3
	pixman: 0.42.2
	poppler-data: 0.4.12
	py39-packaging: 23.2
	python39: 3.9.18_2
	shaderc: 2024.0
	shared-mime-info: 2.2_2
	svt-av1: 2.0.0
	urw-base35-fonts: 20200910
	vmaf: 3.0.0
	vulkan-loader: 1.3.281
	wayland: 1.22.0
	x265: 3.5_1
	xorg-fonts-truetype: 7.7_1
	xorgproto: 2023.2

Number of packages to be installed: 98

The process will require 623 MiB more space.
139 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/98] Fetching mpdecimal-4.0.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/98] Fetching libx264-0.164.3095.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/98] Fetching libglvnd-1.7.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/98] Fetching libwmf-0.2.13_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/98] Fetching nettle-3.9.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/98] Fetching lcms2-2.16_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/98] Fetching libthai-0.1.29_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/98] Fetching vmaf-3.0.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/98] Fetching openjpeg-2.5.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/98] Fetching libva-2.21.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/98] Fetching libXfixes-6.0.0_1.pkg: ... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/98] Fetching aom-3.8.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/98] Fetching python39-3.9.18_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/98] Fetching gdk-pixbuf2-2.42.10_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/98] Fetching shaderc-2024.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/98] Fetching gnutls-3.8.5_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/98] Fetching libepoll-shim-0.0.20230411.pkg: ..... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/98] Fetching libX11-1.8.7_1,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/98] Fetching xorgproto-2023.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/98] Fetching urw-base35-fonts-20200910.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/98] Fetching libXft-2.3.7_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/98] Fetching cairo-1.17.4_2,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/98] Fetching graphite2-1.3.14.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/98] Fetching shared-mime-info-2.2_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/98] Fetching lame-3.100_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/98] Fetching libpciaccess-0.18.pkg: ..... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/98] Fetching gdbm-1.23.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/98] Fetching vulkan-loader-1.3.281.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/98] Fetching avahi-app-0.8_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/98] Fetching libass-0.17.1_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/98] Fetching dbus-1.14.10_5,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/98] Fetching opus-1.5.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/98] Fetching ffmpeg-6.1.1_5,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/98] Fetching libunwind-20240221.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/98] Fetching Imath-3.1.11.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/98] Fetching svt-av1-2.0.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/98] Fetching dbus-glib-0.112_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/98] Fetching jbig2dec-0.20_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/98] Fetching libXau-1.0.9_1.pkg: ... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/98] Fetching libplacebo-6.338.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/98] Fetching libltdl-2.4.7.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/98] Fetching fftw3-3.3.10_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/98] Fetching glib-2.80.0,2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/98] Fetching perl5-5.36.3_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/98] Fetching font-misc-meltho-1.0.3_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/98] Fetching libdaemon-0.14_1.pkg: ........ done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/98] Fetching ImageMagick7-7.1.1.26_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/98] Fetching libvdpau-1.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/98] Fetching libXdmcp-1.1.5.pkg: ...... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/98] Fetching gsfonts-8.11_8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/98] Fetching xorg-fonts-truetype-7.7_1.pkg: . done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/98] Fetching dejavu-2.37_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/98] Fetching poppler-data-0.4.12.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/98] Fetching libxcb-1.16.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/98] Fetching libdatrie-0.2.13_2.pkg: ....... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/98] Fetching libraqm-0.10.1.pkg: ...... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/98] Fetching libXt-1.3.0,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/98] Fetching librsvg2-rust-2.58.0_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/98] Fetching php82-pecl-imagick-3.7.0_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/98] Fetching cups-2.4.7_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/98] Fetching libXrandr-1.5.2_1.pkg: ........ done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/98] Fetching libunibreak-6.1,1.pkg: ...... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/98] Fetching mkfontscale-1.2.3.pkg: .... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/98] Fetching fribidi-1.0.13_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/98] Fetching libidn-1.38_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/98] Fetching libdrm-2.4.120_1,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/98] Fetching libtasn1-4.19.0_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/98] Fetching liblqr-1-0.4.2.pkg: ......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/98] Fetching gnome_subr-1.0.pkg: . done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/98] Fetching wayland-1.22.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/98] Fetching libpaper-1.1.28_1.pkg: ..... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/98] Fetching libjxl-0.10.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/98] Fetching font-misc-ethiopic-1.0.4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/98] Fetching libXrender-0.9.10_2.pkg: ....... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/98] Fetching libraw-0.21.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/98] Fetching libv4l-1.23.0_4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/98] Fetching encodings-1.1.0,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/98] Fetching harfbuzz-8.4.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/98] Fetching ghostscript10-10.03.0_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/98] Fetching x265-3.5_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/98] Fetching libfontenc-1.1.8.pkg: .... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/98] Fetching highway-1.1.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/98] Fetching libudev-devd-0.5.2.pkg: .. done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/98] Fetching font-bh-ttf-1.0.3_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/98] Fetching pango-1.50.14.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/98] Fetching py39-packaging-23.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/98] Fetching libvorbis-1.3.7_2,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/98] Fetching libXext-1.3.6,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/98] Fetching libogg-1.3.5,4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/98] Fetching p11-kit-0.25.3_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/98] Fetching libICE-1.1.0_2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/98] Fetching pixman-0.42.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/98] Fetching dav1d-1.4.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/98] Fetching libSM-1.2.3_1,1.pkg: .... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/98] Fetching openexr-3.2.4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/98] Fetching libheif-1.17.6_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/98] Fetching libvpx-1.14.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/98] Fetching libffi-3.4.4_1.pkg: . done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/98] Installing xorgproto-2023.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/98] Extracting xorgproto-2023.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/98] Installing mpdecimal-4.0.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/98] Extracting mpdecimal-4.0.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/98] Installing libXau-1.0.9_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/98] Extracting libXau-1.0.9_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/98] Installing libXdmcp-1.1.5...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/98] Extracting libXdmcp-1.1.5: ......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/98] Installing libffi-3.4.4_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/98] Extracting libffi-3.4.4_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/98] Installing python39-3.9.18_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/98] Extracting python39-3.9.18_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/98] Installing libxcb-1.16.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/98] Extracting libxcb-1.16.1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/98] Installing libX11-1.8.7_1,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/98] Extracting libX11-1.8.7_1,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/98] Installing py39-packaging-23.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/98] Extracting py39-packaging-23.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/98] Installing libICE-1.1.0_2,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/98] Extracting libICE-1.1.0_2,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/98] Installing libepoll-shim-0.0.20230411...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/98] Extracting libepoll-shim-0.0.20230411: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/98] Installing glib-2.80.0,2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/98] Extracting glib-2.80.0,2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/98] Installing libXrender-0.9.10_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/98] Extracting libXrender-0.9.10_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/98] Installing libfontenc-1.1.8...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/98] Extracting libfontenc-1.1.8: ......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/98] Installing libXext-1.3.6,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/98] Extracting libXext-1.3.6,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/98] Installing libSM-1.2.3_1,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/98] Extracting libSM-1.2.3_1,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/98] Installing graphite2-1.3.14...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/98] Extracting graphite2-1.3.14: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/98] Installing shared-mime-info-2.2_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/98] Extracting shared-mime-info-2.2_2: ......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/98] Installing libpciaccess-0.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/98] Extracting libpciaccess-0.18: ........ done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/98] Installing dbus-1.14.10_5,1...
===> Creating groups.
Creating group 'messagebus' with gid '556'.
===> Creating users
Creating user 'messagebus' with uid '556'.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/98] Extracting dbus-1.14.10_5,1: ......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/98] Installing Imath-3.1.11...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/98] Extracting Imath-3.1.11: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/98] Installing libXrandr-1.5.2_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/98] Extracting libXrandr-1.5.2_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/98] Installing mkfontscale-1.2.3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/98] Extracting mkfontscale-1.2.3: ....... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/98] Installing libtasn1-4.19.0_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/98] Extracting libtasn1-4.19.0_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/98] Installing wayland-1.22.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/98] Extracting wayland-1.22.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/98] Installing libglvnd-1.7.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/98] Extracting libglvnd-1.7.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/98] Installing nettle-3.9.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/98] Extracting nettle-3.9.1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/98] Installing lcms2-2.16_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/98] Extracting lcms2-2.16_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/98] Installing vmaf-3.0.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/98] Extracting vmaf-3.0.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/98] Installing libXfixes-6.0.0_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/98] Extracting libXfixes-6.0.0_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/98] Installing gdk-pixbuf2-2.42.10_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/98] Extracting gdk-pixbuf2-2.42.10_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/98] Installing shaderc-2024.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/98] Extracting shaderc-2024.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/98] Installing gdbm-1.23...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/98] Extracting gdbm-1.23: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/98] Installing vulkan-loader-1.3.281...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/98] Extracting vulkan-loader-1.3.281: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/98] Installing libunwind-20240221...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/98] Extracting libunwind-20240221: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/98] Installing dbus-glib-0.112_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/98] Extracting dbus-glib-0.112_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/98] Installing font-misc-meltho-1.0.3_5...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/98] Extracting font-misc-meltho-1.0.3_5: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/98] Installing libdaemon-0.14_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/98] Extracting libdaemon-0.14_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/98] Installing dejavu-2.37_3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/98] Extracting dejavu-2.37_3: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/98] Installing libdatrie-0.2.13_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/98] Extracting libdatrie-0.2.13_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/98] Installing libunibreak-6.1,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/98] Extracting libunibreak-6.1,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/98] Installing fribidi-1.0.13_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/98] Extracting fribidi-1.0.13_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/98] Installing libdrm-2.4.120_1,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/98] Extracting libdrm-2.4.120_1,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/98] Installing gnome_subr-1.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/98] Extracting gnome_subr-1.0: .... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/98] Installing font-misc-ethiopic-1.0.4...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/98] Extracting font-misc-ethiopic-1.0.4: ...... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/98] Installing encodings-1.1.0,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/98] Extracting encodings-1.1.0,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/98] Installing harfbuzz-8.4.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/98] Extracting harfbuzz-8.4.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/98] Installing highway-1.1.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/98] Extracting highway-1.1.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/98] Installing libudev-devd-0.5.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/98] Extracting libudev-devd-0.5.2: ........ done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/98] Installing font-bh-ttf-1.0.3_5...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/98] Extracting font-bh-ttf-1.0.3_5: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/98] Installing libogg-1.3.5,4...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/98] Extracting libogg-1.3.5,4: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/98] Installing p11-kit-0.25.3_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/98] Extracting p11-kit-0.25.3_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/98] Installing pixman-0.42.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/98] Extracting pixman-0.42.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/98] Installing openexr-3.2.4...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/98] Extracting openexr-3.2.4: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/98] Installing libx264-0.164.3095...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/98] Extracting libx264-0.164.3095: ......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/98] Installing libthai-0.1.29_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/98] Extracting libthai-0.1.29_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/98] Installing libva-2.21.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/98] Extracting libva-2.21.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/98] Installing aom-3.8.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/98] Extracting aom-3.8.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/98] Installing gnutls-3.8.5_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/98] Extracting gnutls-3.8.5_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/98] Installing libXft-2.3.7_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/98] Extracting libXft-2.3.7_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/98] Installing cairo-1.17.4_2,3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/98] Extracting cairo-1.17.4_2,3: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/98] Installing lame-3.100_5...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/98] Extracting lame-3.100_5: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/98] Installing avahi-app-0.8_2...
===> Creating groups.
Creating group 'avahi' with gid '558'.
===> Creating users
Creating user 'avahi' with uid '558'.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/98] Extracting avahi-app-0.8_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/98] Installing libass-0.17.1_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/98] Extracting libass-0.17.1_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/98] Installing opus-1.5.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/98] Extracting opus-1.5.1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/98] Installing svt-av1-2.0.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/98] Extracting svt-av1-2.0.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/98] Installing libplacebo-6.338.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/98] Extracting libplacebo-6.338.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/98] Installing libvdpau-1.5...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/98] Extracting libvdpau-1.5: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/98] Installing xorg-fonts-truetype-7.7_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/98] Extracting xorg-fonts-truetype-7.7_1: ... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/98] Installing libpaper-1.1.28_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/98] Extracting libpaper-1.1.28_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/98] Installing libjxl-0.10.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/98] Extracting libjxl-0.10.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/98] Installing libv4l-1.23.0_4...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/98] Extracting libv4l-1.23.0_4: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/98] Installing x265-3.5_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/98] Extracting x265-3.5_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/98] Installing libvorbis-1.3.7_2,3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/98] Extracting libvorbis-1.3.7_2,3: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/98] Installing dav1d-1.4.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/98] Extracting dav1d-1.4.1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/98] Installing libvpx-1.14.0...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/98] Extracting libvpx-1.14.0: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/98] Installing openjpeg-2.5.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/98] Extracting openjpeg-2.5.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/98] Installing urw-base35-fonts-20200910...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/98] Extracting urw-base35-fonts-20200910: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/98] Installing ffmpeg-6.1.1_5,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/98] Extracting ffmpeg-6.1.1_5,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/98] Installing jbig2dec-0.20_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/98] Extracting jbig2dec-0.20_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/98] Installing poppler-data-0.4.12...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/98] Extracting poppler-data-0.4.12: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/98] Installing libXt-1.3.0,1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/98] Extracting libXt-1.3.0,1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/98] Installing cups-2.4.7_2...
===> Creating groups
Creating group 'cups' with gid '193'
===> Creating users
Creating user 'cups' with uid '193'
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/98] Extracting cups-2.4.7_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/98] Installing libidn-1.38_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/98] Extracting libidn-1.38_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/98] Installing pango-1.50.14...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/98] Extracting pango-1.50.14: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/98] Installing libwmf-0.2.13_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/98] Extracting libwmf-0.2.13_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/98] Installing libltdl-2.4.7...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/98] Extracting libltdl-2.4.7: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/98] Installing fftw3-3.3.10_5...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/98] Extracting fftw3-3.3.10_5: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/98] Installing perl5-5.36.3_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/98] Extracting perl5-5.36.3_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/98] Installing gsfonts-8.11_8...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/98] Extracting gsfonts-8.11_8: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/98] Installing libraqm-0.10.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/98] Extracting libraqm-0.10.1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/98] Installing librsvg2-rust-2.58.0_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/98] Extracting librsvg2-rust-2.58.0_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/98] Installing liblqr-1-0.4.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/98] Extracting liblqr-1-0.4.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/98] Installing libraw-0.21.2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/98] Extracting libraw-0.21.2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/98] Installing ghostscript10-10.03.0_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/98] Extracting ghostscript10-10.03.0_1: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/98] Installing libheif-1.17.6_2...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/98] Extracting libheif-1.17.6_2: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/98] Installing ImageMagick7-7.1.1.26_3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/98] Extracting ImageMagick7-7.1.1.26_3: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/98] Installing php82-pecl-imagick-3.7.0_3...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/98] Extracting php82-pecl-imagick-3.7.0_3: .......... done
==> 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
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from python39-3.9.18_2:

--
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 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 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 libjxl-0.10.2:

--
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-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 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.03.0_1:

--
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.
=====
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 62: Install package php82-phar
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 php82-posix
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 php82-session
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 php82-simplexml
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 php82-sodium
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:
	libsodium: 1.0.18
	php82-sodium: 8.2.18

Number of packages to be installed: 2

The process will require 1 MiB more space.
266 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching php82-sodium-8.2.18.pkg: ....... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching libsodium-1.0.18.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libsodium-1.0.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libsodium-1.0.18: .......... done
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing php82-sodium-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting php82-sodium-8.2.18: ........ done
=====
Message from php82-sodium-8.2.18:

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

Number of packages to be installed: 1

8 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-sysvsem-8.2.18.pkg: . done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-sysvsem-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-sysvsem-8.2.18: ........ done
=====
Message from php82-sysvsem-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-sysvsem.ini.sample
Step 68: Install package php82-xml
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 69: Install package php82-xmlreader
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 70: Install package php82-xmlwriter
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 71: Install package php82-xsl
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-xsl: 8.2.18

Number of packages to be installed: 1

16 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching php82-xsl-8.2.18.pkg: ..... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing php82-xsl-8.2.18...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting php82-xsl-8.2.18: ........ done
=====
Message from php82-xsl-8.2.18:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xsl.ini.sample
Step 72: 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.18

Number of packages to be installed: 1

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

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zip.ini.sample
Step 73: Install package php82-zlib
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 74: Install package ImageMagick7
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 75: Install package libheif
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 76: Install package ffmpeg
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 77: Install package jq
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:
	jq: 1.7.1

Number of packages to be installed: 1

The process will require 2 MiB more space.
356 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching jq-1.7.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing jq-1.7.1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting jq-1.7.1: .......... done
Step 78: Install package nano
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:
	nano: 7.2_1

Number of packages to be installed: 1

The process will require 3 MiB more space.
667 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching nano-7.2_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing nano-7.2_1...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting nano-7.2_1: .......... done
Step 79: 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):

New packages to be INSTALLED:
	sudo: 1.9.15p5_4

Number of packages to be installed: 1

The process will require 8 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching sudo-1.9.15p5_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing sudo-1.9.15p5_4...
[nextcloud-nginx-nomad-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting sudo-1.9.15p5_4: .......... done
Step 80: Clean package installation
Nothing to do.
Step 81: Create necessary directories if they don't exist
Step 82: Enable nginx
nginx enabled in /etc/rc.conf
Step 83: Enable php-fpm
php_fpm enabled in /etc/rc.conf
Step 84: Clean cook artifacts
Step 85: Install pot local
Step 86: Set file ownership on cook scripts
Step 87: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 88: Create rc.d script to start cook
creating rc.d script to start cook
Step 89: Make rc.d script to start cook executable
Setting executable bit on cook rc file
=====>  Stop the pot nextcloud-nginx-nomad-amd64-14_0
=====>  Remove p466276a7b3ee epair network interfaces
=====>  unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-14_0/m/dev
=====>  Reverting pot nextcloud-nginx-nomad-amd64-14_0 to non-persistent
===>  exporting nextcloud-nginx-nomad-amd64-14_0 @ 1713859413 to /tmp/nextcloud-nginx-nomad-amd64-14_0_0.93.xz

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