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-13_2"
tag = "0.79"
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
- Image Readme
- How To Use The Ready-Made Image
- Alternatively: Create a Jail With This Flavour Yourself
- Version History
- Manual Image Download Links
- Jenkins Pot Creation Logs
How To Use The Ready-Made Image
FreeBSD 13.2:
pot import -p nextcloud-nginx-nomad-amd64-13_2 -t 0.79 -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-13_2 -t 0.79 -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-13_2 -p my-cloned-jail -N alias -i "em0|10.10.10.10"
Note: Some images might require specific network configuration, double check the Overview-chapter at the top.
Alternatively: Create a Jail With This Flavour Yourself
1. Create Flavour Files
Save all files and directories from https://github.com/hny-gd/potluck/tree/master/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. 13.2) 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.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 Fri Sep 8 21:12:36 UTC 2023
Manual Image Download Links
nextcloud-nginx-nomad-amd64-13_2_0.79.xz (
)
nextcloud-nginx-nomad-amd64-13_2_0.79.xz.skein (
)
nextcloud-nginx-nomad-amd64-13_2_0.79.xz.skein.sig (
)
nextcloud-nginx-nomad-amd64-13_2_0.79.xz.meta (
)
Jenkins Pot Creation Logs
nextcloud-nginx-nomad-amd64-13_2_0.79:
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 postgresql13-client"
pkg install -y postgresql13-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 php81"
pkg install -y php81
step "Install package php81-extensions"
pkg install -y php81-extensions
step "Install package php81-bcmath"
pkg install -y php81-bcmath
step "Install package php81-bz2"
pkg install -y php81-bz2
step "Install package php81-ctype"
pkg install -y php81-ctype
step "Install package php81-curl"
pkg install -y php81-curl
step "Install package php81-dom"
pkg install -y php81-dom
step "Install package php81-exif"
pkg install -y php81-exif
step "Install package php81-fileinfo"
pkg install -y php81-fileinfo
step "Install package php81-filter"
pkg install -y php81-filter
step "Install package php81-ftp"
pkg install -y php81-ftp
step "Install package php81-gd"
pkg install -y php81-gd
step "Install package php81-gmp"
pkg install -y php81-gmp
step "Install package php81-iconv"
pkg install -y php81-iconv
step "Install package php81-imap"
pkg install -y php81-imap
step "Install package php81-intl"
pkg install -y php81-intl
step "Install package php81-ldap"
pkg install -y php81-ldap
step "Install package php81-mysqli"
pkg install -y php81-mysqli
step "Install package php81-mbstring"
pkg install -y php81-mbstring
step "Install package php81-opcache"
pkg install -y php81-opcache
step "Install package php81-pcntl"
pkg install -y php81-pcntl
step "Install package php81-pdo"
pkg install -y php81-pdo
step "Install package php81-pdo_mysql"
pkg install -y php81-pdo_mysql
step "Install package php81-pecl-APCu"
pkg install -y php81-pecl-APCu
step "Install package php81-pecl-memcache"
pkg install -y php81-pecl-memcache
step "Install package php81-pecl-redis"
pkg install -y php81-pecl-redis
step "Install package php81-pecl-imagick"
pkg install -y php81-pecl-imagick
step "Install package php81-phar"
pkg install -y php81-phar
step "Install package php81-posix"
pkg install -y php81-posix
step "Install package php81-session"
pkg install -y php81-session
step "Install package php81-simplexml"
pkg install -y php81-simplexml
step "Install package php81-xml"
pkg install -y php81-xml
step "Install package php81-xmlreader"
pkg install -y php81-xmlreader
step "Install package php81-xmlwriter"
pkg install -y php81-xmlwriter
step "Install package php81-xsl"
pkg install -y php81-xsl
step "Install package php81-zip"
pkg install -y php81-zip
step "Install package php81-zlib"
pkg install -y php81-zlib
step "Install package ImageMagick6-nox11"
pkg install -y ImageMagick6-nox11
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-13_2
===> type : single
===> base : 13.2
===> 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 13.2
===> Extract the tarball
=====> Flavour: fbsd-update
=====> Starting nextcloud-nginx-nomad-amd64-13_2 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/tmp
defaultrouter: NO -> 10.192.0.1
===> Starting the pot nextcloud-nginx-nomad-amd64-13_2
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
inet 127.0.0.1 netmask 0xff000000
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:2c:f1:7d:39: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.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Fri Sep 8 21:01:52 UTC 2023
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/tmp/fbsd-update.sh
=====> Executing fbsd-update script on nextcloud-nginx-nomad-amd64-13_2
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching public key from update1.freebsd.org... done.
Fetching metadata signature for 13.2-RELEASE from update1.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 25 patches.....10....20.. done.
Applying patches... done.
Fetching 20 files... ....10....20 done.
The following files will be added as part of updating to
13.2-RELEASE-p3:
/etc/ssl/certs/0179095f.0
/etc/ssl/certs/08063a00.0
/etc/ssl/certs/0b9bc432.0
/etc/ssl/certs/3e359ba6.0
/etc/ssl/certs/5860aaa6.0
/etc/ssl/certs/5931b5bc.0
/etc/ssl/certs/5a7722fb.0
/etc/ssl/certs/66445960.0
/etc/ssl/certs/7a3adc42.0
/etc/ssl/certs/7a780d93.0
/etc/ssl/certs/8508e720.0
/etc/ssl/certs/8f103249.0
/etc/ssl/certs/90c5a3c8.0
/etc/ssl/certs/9846683b.0
/etc/ssl/certs/9ef4a08a.0
/etc/ssl/certs/9f727ac7.0
/etc/ssl/certs/d52c538d.0
/etc/ssl/certs/ecccd8db.0
/etc/ssl/certs/ed858448.0
/etc/ssl/certs/fd64f3fc.0
/usr/share/certs/trusted/BJCA_Global_Root_CA1.pem
/usr/share/certs/trusted/BJCA_Global_Root_CA2.pem
/usr/share/certs/trusted/Certainly_Root_E1.pem
/usr/share/certs/trusted/Certainly_Root_R1.pem
/usr/share/certs/trusted/D-TRUST_BR_Root_CA_1_2020.pem
/usr/share/certs/trusted/D-TRUST_EV_Root_CA_1_2020.pem
/usr/share/certs/trusted/DigiCert_TLS_ECC_P384_Root_G5.pem
/usr/share/certs/trusted/DigiCert_TLS_RSA4096_Root_G5.pem
/usr/share/certs/trusted/E-Tugra_Global_Root_CA_ECC_v3.pem
/usr/share/certs/trusted/E-Tugra_Global_Root_CA_RSA_v3.pem
/usr/share/certs/trusted/HARICA_TLS_ECC_Root_CA_2021.pem
/usr/share/certs/trusted/HARICA_TLS_RSA_Root_CA_2021.pem
/usr/share/certs/trusted/HiPKI_Root_CA_-_G1.pem
/usr/share/certs/trusted/ISRG_Root_X2.pem
/usr/share/certs/trusted/Security_Communication_ECC_RootCA1.pem
/usr/share/certs/trusted/Security_Communication_RootCA3.pem
/usr/share/certs/trusted/Telia_Root_CA_v2.pem
/usr/share/certs/trusted/TunTrust_Root_CA.pem
/usr/share/certs/trusted/vTrus_ECC_Root_CA.pem
/usr/share/certs/trusted/vTrus_Root_CA.pem
The following files will be updated as part of updating to
13.2-RELEASE-p3:
/bin/freebsd-version
/boot/loader
/boot/loader.efi
/boot/loader_4th
/boot/loader_4th.efi
/boot/loader_lua
/boot/loader_lua.efi
/boot/loader_simp
/boot/loader_simp.efi
/boot/pxeboot
/boot/zfsloader
/etc/ssh/sshd_config
/usr/bin/slogin
/usr/bin/ssh
/usr/bin/ssh-agent
/usr/lib/libpam.a
/usr/lib/libprivatessh.a
/usr/lib/libprivatessh.so.5
/usr/lib/libprivatessh_p.a
/usr/lib/pam_krb5.so.6
/usr/libexec/ssh-keysign
/usr/libexec/ssh-pkcs11-helper
/usr/sbin/bhyve
/usr/sbin/freebsd-update
/usr/sbin/sshd
/usr/share/man/man1/ssh-agent.1.gz
/usr/share/man/man5/sshd_config.5.gz
/usr/share/man/man8/pam_krb5.8.gz
/var/db/etcupdate/current/etc/ssh/sshd_config
/var/db/mergemaster.mtree
Installing updates...
Restarting sshd after upgrade
Cannot 'restart' sshd. Set sshd_enable to YES in /etc/rc.conf or use 'onerestart' instead of 'restart'.
Scanning //usr/share/certs/blacklisted for certificates...
Scanning //usr/share/certs/trusted for certificates...
done.
=====> Stop the pot nextcloud-nginx-nomad-amd64-13_2
=====> Remove p464fb8bbcb904 epair network interfaces
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/tmp
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/dev
=====> Flavour: nextcloud-nginx-nomad
=====> Executing nextcloud-nginx-nomad pot commands on nextcloud-nginx-nomad-amd64-13_2
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/tmp
=====> Source /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/local copied in the pot nextcloud-nginx-nomad-amd64-13_2
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/tmp
=====> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/dev is already unmounted
=====> Starting nextcloud-nginx-nomad-amd64-13_2 pot for the initial bootstrap
=====> Setting pot nextcloud-nginx-nomad-amd64-13_2 temporarily to persistent
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/tmp
===> Starting the pot nextcloud-nginx-nomad-amd64-13_2
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=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
inet 127.0.0.1 netmask 0xff000000
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:08:56:7e:b8: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.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Fri Sep 8 21:02:10 UTC 2023
/usr/local/etc/pot/flavours/nextcloud-nginx-nomad.sh -> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/tmp/nextcloud-nginx-nomad.sh
=====> Executing nextcloud-nginx-nomad script on nextcloud-nginx-nomad-amd64-13_2
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.20.6...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.20.6: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:13: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_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Install package openssl
Updating FreeBSD repository catalogue...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 34047 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: 1.1.1v,1
Number of packages to be installed: 1
The process will require 14 MiB more space.
4 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching openssl-1.1.1v,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing openssl-1.1.1v,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting openssl-1.1.1v,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
Number of packages to be installed: 1
272 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching ca_root_nss-3.93.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing ca_root_nss-3.93...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting ca_root_nss-3.93: .......... done
=====
Message from ca_root_nss-3.93:
--
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 certificates discovery by
default for software that uses OpenSSL.
This enables SSL Certificate Verification by client software without manual
intervention.
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.2.1
indexinfo: 0.3.1
libidn2: 2.3.4
libnghttp2: 1.55.1_1
libpsl: 0.21.2_3
libssh2: 1.11.0,3
libunistring: 1.1
Number of packages to be installed: 7
The process will require 10 MiB more space.
3 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Fetching indexinfo-0.3.1.pkg: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Fetching libnghttp2-1.55.1_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Fetching libidn2-2.3.4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Fetching libunistring-1.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Fetching libssh2-1.11.0,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Fetching libpsl-0.21.2_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Fetching curl-8.2.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Installing indexinfo-0.3.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/7] Extracting indexinfo-0.3.1: .... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Installing libunistring-1.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/7] Extracting libunistring-1.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Installing libidn2-2.3.4...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/7] Extracting libidn2-2.3.4: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Installing libnghttp2-1.55.1_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/7] Extracting libnghttp2-1.55.1_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Installing libssh2-1.11.0,3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/7] Extracting libssh2-1.11.0,3: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Installing libpsl-0.21.2_3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/7] Extracting libpsl-0.21.2_3: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Installing curl-8.2.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/7] Extracting curl-8.2.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
Number of packages to be installed: 1
20 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jo-1.6.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jo-1.6...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jo-1.6: ....... 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.15
gettext-runtime: 0.22_1
readline: 8.2.1
Number of packages to be installed: 3
The process will require 12 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching readline-8.2.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching bash-5.2.15.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching gettext-runtime-0.22_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Installing readline-8.2.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting readline-8.2.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Installing gettext-runtime-0.22_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting gettext-runtime-0.22_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Installing bash-5.2.15...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting bash-5.2.15: .......... 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
liblz4: 1.9.4,1
rsync: 3.2.7
xxhash: 0.8.2
zstd: 1.5.5
Number of packages to be installed: 5
The process will require 8 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Fetching rsync-3.2.7.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Fetching liblz4-1.9.4,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Fetching zstd-1.5.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Fetching xxhash-0.8.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Fetching libiconv-1.17.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Installing liblz4-1.9.4,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Extracting liblz4-1.9.4,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Installing zstd-1.5.5...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Extracting zstd-1.5.5: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Installing xxhash-0.8.2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Extracting xxhash-0.8.2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Installing libiconv-1.17...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Extracting libiconv-1.17: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Installing rsync-3.2.7...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Extracting rsync-3.2.7: .......... done
=====
Message from rsync-3.2.7:
--
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_12,3
pcre2: 10.42
Number of packages to be installed: 2
The process will require 8 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.24.0_12,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching pcre2-10.42.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing pcre2-10.42...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting pcre2-10.42: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing nginx-1.24.0_12,3...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.24.0_12,3: .......... done
=====
Message from nginx-1.24.0_12,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.20221030,1
mariadb106-client: 10.6.14
Number of packages to be installed: 2
The process will require 52 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libedit-3.1.20221030,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching mariadb106-client-10.6.14.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libedit-3.1.20221030,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libedit-3.1.20221030,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing mariadb106-client-10.6.14...
===> Creating groups.
Creating group 'mysql' with gid '88'.
===> Creating users
Creating user 'mysql' with uid '88'.
===> Creating homedir(s)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting mariadb106-client-10.6.14: .......... done
=====
Message from mariadb106-client-10.6.14:
--
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 postgresql13-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:
postgresql13-client: 13.12
Number of packages to be installed: 1
The process will require 12 MiB more space.
3 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching postgresql13-client-13.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing postgresql13-client-13.12...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting postgresql13-client-13.12: .......... done
=====
Message from postgresql13-client-13.12:
--
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
libevent: 2.1.12
memcached: 1.6.21
Number of packages to be installed: 3
The process will require 11 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching cyrus-sasl-2.1.28.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching memcached-1.6.21.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching libevent-2.1.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Installing cyrus-sasl-2.1.28...
*** Added group `cyrus' (id 60)
*** Added user `cyrus' (id 60)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting cyrus-sasl-2.1.28: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Installing libevent-2.1.12...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting libevent-2.1.12: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Installing memcached-1.6.21...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting memcached-1.6.21: .......... done
=====
Message from cyrus-sasl-2.1.28:
--
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.0.9,1
expat: 2.5.0
fontconfig: 2.14.2,1
freetype2: 2.13.1
png: 1.6.40
Number of packages to be installed: 5
The process will require 12 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Fetching png-1.6.40.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Fetching freetype2-2.13.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Fetching fontconfig-2.14.2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Fetching brotli-1.0.9,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Fetching expat-2.5.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Installing png-1.6.40...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Extracting png-1.6.40: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Installing brotli-1.0.9,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Extracting brotli-1.0.9,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Installing freetype2-2.13.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Extracting freetype2-2.13.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Installing expat-2.5.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Extracting expat-2.5.0: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Installing fontconfig-2.14.2,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Extracting fontconfig-2.14.2,1: .......... done
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
Message from freetype2-2.13.1:
--
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
Number of packages to be installed: 1
231 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching giflib-5.2.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing giflib-5.2.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting giflib-5.2.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.
477 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching gmp-6.3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing gmp-6.3.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.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: 73.2,1
Number of packages to be installed: 1
The process will require 53 MiB more space.
11 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching icu-73.2,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing icu-73.2,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting icu-73.2,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_1
Number of packages to be installed: 1
74 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jbigkit-2.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jbigkit-2.1_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jbigkit-2.1_1: .......... 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.0
Number of packages to be installed: 1
The process will require 3 MiB more space.
442 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jpeg-turbo-3.0.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jpeg-turbo-3.0.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jpeg-turbo-3.0.0: .......... 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
Number of packages to be installed: 1
64 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libargon2-20190702.pkg: ......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing libargon2-20190702...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libargon2-20190702: .......... 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.2
libgpg-error: 1.47
Number of packages to be installed: 2
The process will require 6 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libgcrypt-1.10.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libgpg-error-1.47.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libgpg-error-1.47...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libgpg-error-1.47: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing libgcrypt-1.10.2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting libgcrypt-1.10.2: .......... 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.18
libgd: 2.3.3_7,1
tiff: 4.4.0_2
webp: 1.3.1_1
Number of packages to be installed: 4
The process will require 7 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching libgd-2.3.3_7,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching webp-1.3.1_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching tiff-4.4.0_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching libdeflate-1.18.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Installing libdeflate-1.18...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting libdeflate-1.18: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Installing tiff-4.4.0_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting tiff-4.4.0_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Installing webp-1.3.1_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting webp-1.3.1_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Installing libgd-2.3.3_7,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting libgd-2.3.3_7,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.10.4
libxslt: 1.1.37
Number of packages to be installed: 2
The process will require 9 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libxml2-2.10.4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libxslt-1.1.37.pkg: ........ done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libxml2-2.10.4...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libxml2-2.10.4: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing libxslt-1.1.37...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting libxslt-1.1.37: .......... 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.0
Number of packages to be installed: 1
239 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libzip-1.10.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing libzip-1.10.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libzip-1.10.0: .......... 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.8_1
Number of packages to be installed: 1
The process will require 1 MiB more space.
229 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching oniguruma-6.9.8_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing oniguruma-6.9.8_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting oniguruma-6.9.8_1: .......... 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.6
Number of packages to be installed: 1
The process will require 5 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching openldap26-client-2.6.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing openldap26-client-2.6.6...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting openldap26-client-2.6.6: .......... done
=====
Message from openldap26-client-2.6.6:
--
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.0.3,1
Number of packages to be installed: 1
75 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching pkgconf-2.0.3,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing pkgconf-2.0.3,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting pkgconf-2.0.3,1: .......... done
Step 35: Install package php81
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:
php81: 8.1.23
Number of packages to be installed: 1
The process will require 28 MiB more space.
4 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-8.1.23.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-8.1.23: .......... done
Step 36: Install package php81-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:
php81-ctype: 8.1.23
php81-dom: 8.1.23
php81-extensions: 1.1
php81-filter: 8.1.23
php81-iconv: 8.1.23
php81-opcache: 8.1.23
php81-pdo: 8.1.23
php81-pdo_sqlite: 8.1.23
php81-phar: 8.1.23
php81-posix: 8.1.23
php81-session: 8.1.23
php81-simplexml: 8.1.23
php81-sqlite3: 8.1.23
php81-tokenizer: 8.1.23
php81-xml: 8.1.23
php81-xmlreader: 8.1.23
php81-xmlwriter: 8.1.23
sqlite3: 3.42.0,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-13_2.vsf00001.cpt.za.honeyguide.net] [1/18] Fetching php81-simplexml-8.1.23.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/18] Fetching php81-session-8.1.23.pkg: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/18] Fetching php81-sqlite3-8.1.23.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/18] Fetching php81-iconv-8.1.23.pkg: .... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/18] Fetching php81-posix-8.1.23.pkg: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/18] Fetching php81-xmlreader-8.1.23.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/18] Fetching php81-pdo_sqlite-8.1.23.pkg: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/18] Fetching php81-phar-8.1.23.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/18] Fetching php81-filter-8.1.23.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/18] Fetching php81-dom-8.1.23.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/18] Fetching php81-opcache-8.1.23.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/18] Fetching php81-tokenizer-8.1.23.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/18] Fetching sqlite3-3.42.0,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/18] Fetching php81-xml-8.1.23.pkg: .... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/18] Fetching php81-pdo-8.1.23.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/18] Fetching php81-extensions-1.1.pkg: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/18] Fetching php81-xmlwriter-8.1.23.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/18] Fetching php81-ctype-8.1.23.pkg: . done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/18] Installing php81-dom-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/18] Extracting php81-dom-8.1.23: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/18] Installing sqlite3-3.42.0,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/18] Extracting sqlite3-3.42.0,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/18] Installing php81-pdo-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/18] Extracting php81-pdo-8.1.23: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/18] Installing php81-simplexml-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/18] Extracting php81-simplexml-8.1.23: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/18] Installing php81-session-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/18] Extracting php81-session-8.1.23: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/18] Installing php81-sqlite3-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/18] Extracting php81-sqlite3-8.1.23: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/18] Installing php81-iconv-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/18] Extracting php81-iconv-8.1.23: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/18] Installing php81-posix-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/18] Extracting php81-posix-8.1.23: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/18] Installing php81-xmlreader-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/18] Extracting php81-xmlreader-8.1.23: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/18] Installing php81-pdo_sqlite-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/18] Extracting php81-pdo_sqlite-8.1.23: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/18] Installing php81-phar-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/18] Extracting php81-phar-8.1.23: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/18] Installing php81-filter-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/18] Extracting php81-filter-8.1.23: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/18] Installing php81-opcache-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/18] Extracting php81-opcache-8.1.23: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/18] Installing php81-tokenizer-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/18] Extracting php81-tokenizer-8.1.23: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/18] Installing php81-xml-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/18] Extracting php81-xml-8.1.23: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/18] Installing php81-xmlwriter-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/18] Extracting php81-xmlwriter-8.1.23: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/18] Installing php81-ctype-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/18] Extracting php81-ctype-8.1.23: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/18] Installing php81-extensions-1.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/18] Extracting php81-extensions-1.1: ... done
=====
Message from php81-dom-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-dom.ini
=====
Message from php81-pdo-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pdo.ini
=====
Message from php81-simplexml-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-simplexml.ini
=====
Message from php81-session-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-18-session.ini
=====
Message from php81-sqlite3-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-sqlite3.ini
=====
Message from php81-iconv-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-iconv.ini
=====
Message from php81-posix-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-posix.ini
=====
Message from php81-xmlreader-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xmlreader.ini
=====
Message from php81-pdo_sqlite-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_sqlite.ini
=====
Message from php81-phar-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-phar.ini
=====
Message from php81-filter-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-filter.ini
=====
Message from php81-opcache-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-10-opcache.ini
=====
Message from php81-tokenizer-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-tokenizer.ini
=====
Message from php81-xml-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xml.ini
=====
Message from php81-xmlwriter-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xmlwriter.ini
=====
Message from php81-ctype-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ctype.ini
Step 37: Install package php81-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:
php81-bcmath: 8.1.23
Number of packages to be installed: 1
20 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-bcmath-8.1.23.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-bcmath-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-bcmath-8.1.23: .......... done
=====
Message from php81-bcmath-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-bcmath.ini
Step 38: Install package php81-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:
php81-bz2: 8.1.23
Number of packages to be installed: 1
11 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-bz2-8.1.23.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-bz2-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-bz2-8.1.23: ........ done
=====
Message from php81-bz2-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-bz2.ini
Step 39: Install package php81-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 php81-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:
php81-curl: 8.1.23
Number of packages to be installed: 1
36 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-curl-8.1.23.pkg: ...... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-curl-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-curl-8.1.23: .......... done
=====
Message from php81-curl-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-curl.ini
Step 41: Install package php81-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 php81-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:
php81-exif: 8.1.23
Number of packages to be installed: 1
30 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-exif-8.1.23.pkg: ..... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-exif-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-exif-8.1.23: ........ done
=====
Message from php81-exif-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-exif.ini
Step 43: Install package php81-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:
php81-fileinfo: 8.1.23
Number of packages to be installed: 1
The process will require 7 MiB more space.
299 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-fileinfo-8.1.23.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-fileinfo-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-fileinfo-8.1.23: .......... done
=====
Message from php81-fileinfo-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-fileinfo.ini
Step 44: Install package php81-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 php81-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:
php81-ftp: 8.1.23
Number of packages to be installed: 1
26 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-ftp-8.1.23.pkg: ..... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-ftp-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-ftp-8.1.23: ......... done
=====
Message from php81-ftp-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ftp.ini
Step 46: Install package php81-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:
php81-gd: 8.1.23
Number of packages to be installed: 1
33 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-gd-8.1.23.pkg: ...... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-gd-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-gd-8.1.23: ......... done
=====
Message from php81-gd-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gd.ini
Step 47: Install package php81-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:
php81-gmp: 8.1.23
Number of packages to be installed: 1
22 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-gmp-8.1.23.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-gmp-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-gmp-8.1.23: ......... done
=====
Message from php81-gmp-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gmp.ini
Step 48: Install package php81-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 php81-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
php81-imap: 8.1.23
Number of packages to be installed: 2
The process will require 6 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching panda-cclient-20130621_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching php81-imap-8.1.23.pkg: ........ done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing panda-cclient-20130621_3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting panda-cclient-20130621_3: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php81-imap-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php81-imap-8.1.23: ........ 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 php81-imap-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-imap.ini
Step 50: Install package php81-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:
php81-intl: 8.1.23
Number of packages to be installed: 1
128 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-intl-8.1.23.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-intl-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-intl-8.1.23: .......... done
=====
Message from php81-intl-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-intl.ini
Step 51: Install package php81-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:
php81-ldap: 8.1.23
Number of packages to be installed: 1
32 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-ldap-8.1.23.pkg: ...... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-ldap-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-ldap-8.1.23: ........ done
=====
Message from php81-ldap-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ldap.ini
Step 52: Install package php81-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:
php81-mysqli: 8.1.23
Number of packages to be installed: 1
48 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-mysqli-8.1.23.pkg: ........ done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-mysqli-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-mysqli-8.1.23: .......... done
=====
Message from php81-mysqli-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mysqli.ini
Step 53: Install package php81-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:
php81-mbstring: 8.1.23
Number of packages to be installed: 1
The process will require 4 MiB more space.
750 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-mbstring-8.1.23.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-mbstring-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-mbstring-8.1.23: .......... done
=====
Message from php81-mbstring-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mbstring.ini
Step 54: Install package php81-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 php81-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:
php81-pcntl: 8.1.23
Number of packages to be installed: 1
15 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-pcntl-8.1.23.pkg: ..... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-pcntl-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-pcntl-8.1.23: ......... done
=====
Message from php81-pcntl-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pcntl.ini
Step 56: Install package php81-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 php81-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:
php81-pdo_mysql: 8.1.23
Number of packages to be installed: 1
17 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-pdo_mysql-8.1.23.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-pdo_mysql-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-pdo_mysql-8.1.23: ......... done
=====
Message from php81-pdo_mysql-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_mysql.ini
Step 58: Install package php81-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:
php81-pecl-APCu: 5.1.22
Number of packages to be installed: 1
51 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-pecl-APCu-5.1.22.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-pecl-APCu-5.1.22...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-pecl-APCu-5.1.22: .......... done
=====
Message from php81-pecl-APCu-5.1.22:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-apcu.ini
Step 59: Install package php81-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:
php81-pecl-memcache: 8.2
php81-zlib: 8.1.23
Number of packages to be installed: 2
61 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching php81-zlib-8.1.23.pkg: .... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching php81-pecl-memcache-8.2.pkg: ........ done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing php81-zlib-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting php81-zlib-8.1.23: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php81-pecl-memcache-8.2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php81-pecl-memcache-8.2: ....... done
=====
Message from php81-zlib-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zlib.ini
=====
Message from php81-pecl-memcache-8.2:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-memcache.ini
Step 60: Install package php81-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:
php81-pecl-redis: 5.3.7_1
Number of packages to be installed: 1
156 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-pecl-redis-5.3.7_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-pecl-redis-5.3.7_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-pecl-redis-5.3.7_1: .......... done
=====
Message from php81-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
Step 61: Install package php81-pecl-imagick
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 75 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
ImageMagick7: 7.1.0.62_6
Imath: 3.1.9
aom: 3.7.0
avahi-app: 0.8_1
cairo: 1.17.4_2,3
cups: 2.4.6
dav1d: 1.2.1_1
dbus: 1.14.6,1
dbus-glib: 0.112
dejavu: 2.37_2
encodings: 1.0.5,1
fftw3: 3.3.10_3
font-bh-ttf: 1.0.3_5
font-misc-ethiopic: 1.0.4
font-misc-meltho: 1.0.3_5
fribidi: 1.0.13
gdbm: 1.23
gdk-pixbuf2: 2.42.10_1
ghostscript9-agpl-base: 9.56.1_12
ghostscript9-agpl-x11: 9.56.1
glib: 2.76.5,2
gnome_subr: 1.0
gnutls: 3.7.9
graphite2: 1.3.14
gsfonts: 8.11_8
harfbuzz: 8.1.1
highway: 1.0.7
jbig2dec: 0.19
lcms2: 2.15_2
libICE: 1.1.0_2,1
libSM: 1.2.3_1,1
libX11: 1.8.6_1,1
libXau: 1.0.9
libXdmcp: 1.1.3
libXext: 1.3.4,1
libXft: 2.3.7
libXrender: 0.9.10_2
libXt: 1.2.1,1
libdaemon: 0.14_1
libdatrie: 0.2.13_1
libde265: 1.0.12
libffi: 3.4.4
libfontenc: 1.1.7
libglvnd: 1.6.0_2
libheif: 1.16.1
libidn: 1.38
libjxl: 0.8.2_2
liblqr-1: 0.4.2
libltdl: 2.4.7
libpaper: 1.1.28
libraqm: 0.10.1
libraw: 0.21.1_2
librsvg2-rust: 2.56.3
libtasn1: 4.19.0
libthai: 0.1.29
libwmf: 0.2.13_2
libxcb: 1.15_1
mkfontscale: 1.2.1
mpdecimal: 2.5.1
nettle: 3.9.1
openexr: 3.1.11
openjpeg: 2.5.0_1
p11-kit: 0.24.1_2
pango: 1.50.14
perl5: 5.34.1_3
php81-pecl-imagick: 3.7.0_2
pixman: 0.42.2
poppler-data: 0.4.12
python39: 3.9.17
shared-mime-info: 2.2_1
svt-av1: 1.7.0
vmaf: 2.3.1
x265: 3.4_2
xorg-fonts-truetype: 7.7_1
xorgproto: 2022.1_1
Number of packages to be installed: 75
The process will require 556 MiB more space.
116 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/75] Fetching libxcb-1.15_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/75] Fetching libdatrie-0.2.13_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/75] Fetching mpdecimal-2.5.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/75] Fetching libraqm-0.10.1.pkg: ....... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/75] Fetching php81-pecl-imagick-3.7.0_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/75] Fetching libXt-1.2.1,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/75] Fetching librsvg2-rust-2.56.3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/75] Fetching libglvnd-1.6.0_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/75] Fetching libwmf-0.2.13_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/75] Fetching cups-2.4.6.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/75] Fetching nettle-3.9.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/75] Fetching lcms2-2.15_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/75] Fetching libthai-0.1.29.pkg: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/75] Fetching ghostscript9-agpl-x11-9.56.1.pkg: ....... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/75] Fetching mkfontscale-1.2.1.pkg: ...... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/75] Fetching fribidi-1.0.13.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/75] Fetching libidn-1.38.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/75] Fetching vmaf-2.3.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/75] Fetching openjpeg-2.5.0_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/75] Fetching libtasn1-4.19.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/75] Fetching liblqr-1-0.4.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/75] Fetching gnome_subr-1.0.pkg: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/75] Fetching aom-3.7.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/75] Fetching python39-3.9.17.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/75] Fetching gdk-pixbuf2-2.42.10_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/75] Fetching gnutls-3.7.9.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/75] Fetching libpaper-1.1.28.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/75] Fetching libjxl-0.8.2_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/75] Fetching font-misc-ethiopic-1.0.4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/75] Fetching libX11-1.8.6_1,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/75] Fetching libXrender-0.9.10_2.pkg: ...... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/75] Fetching xorgproto-2022.1_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/75] Fetching ghostscript9-agpl-base-9.56.1_12.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/75] Fetching libXft-2.3.7.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/75] Fetching libraw-0.21.1_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/75] Fetching cairo-1.17.4_2,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/75] Fetching graphite2-1.3.14.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/75] Fetching shared-mime-info-2.2_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/75] Fetching encodings-1.0.5,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/75] Fetching harfbuzz-8.1.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/75] Fetching gdbm-1.23.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/75] Fetching avahi-app-0.8_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/75] Fetching dbus-1.14.6,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/75] Fetching x265-3.4_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/75] Fetching libfontenc-1.1.7.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/75] Fetching highway-1.0.7.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/75] Fetching libde265-1.0.12.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/75] Fetching font-bh-ttf-1.0.3_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/75] Fetching pango-1.50.14.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/75] Fetching Imath-3.1.9.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/75] Fetching libXext-1.3.4,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/75] Fetching svt-av1-1.7.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/75] Fetching p11-kit-0.24.1_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/75] Fetching dbus-glib-0.112.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/75] Fetching jbig2dec-0.19.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [56/75] Fetching libXau-1.0.9.pkg: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [57/75] Fetching libICE-1.1.0_2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [58/75] Fetching libltdl-2.4.7.pkg: ....... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [59/75] Fetching pixman-0.42.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [60/75] Fetching dav1d-1.2.1_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [61/75] Fetching fftw3-3.3.10_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [62/75] Fetching libSM-1.2.3_1,1.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [63/75] Fetching openexr-3.1.11.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [64/75] Fetching glib-2.76.5,2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [65/75] Fetching libheif-1.16.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [66/75] Fetching perl5-5.34.1_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [67/75] Fetching font-misc-meltho-1.0.3_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [68/75] Fetching libffi-3.4.4.pkg: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [69/75] Fetching ImageMagick7-7.1.0.62_6.pkg: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [70/75] Fetching libdaemon-0.14_1.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [71/75] Fetching libXdmcp-1.1.3.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [72/75] Fetching gsfonts-8.11_8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [73/75] Fetching xorg-fonts-truetype-7.7_1.pkg: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [74/75] Fetching dejavu-2.37_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [75/75] Fetching poppler-data-0.4.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/75] Installing xorgproto-2022.1_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/75] Extracting xorgproto-2022.1_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/75] Installing libXau-1.0.9...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/75] Extracting libXau-1.0.9: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/75] Installing libXdmcp-1.1.3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/75] Extracting libXdmcp-1.1.3: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/75] Installing libxcb-1.15_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/75] Extracting libxcb-1.15_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/75] Installing mpdecimal-2.5.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/75] Extracting mpdecimal-2.5.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/75] Installing libICE-1.1.0_2,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/75] Extracting libICE-1.1.0_2,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/75] Installing libffi-3.4.4...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/75] Extracting libffi-3.4.4: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/75] Installing python39-3.9.17...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/75] Extracting python39-3.9.17: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/75] Installing libX11-1.8.6_1,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/75] Extracting libX11-1.8.6_1,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/75] Installing libSM-1.2.3_1,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/75] Extracting libSM-1.2.3_1,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/75] Installing libtasn1-4.19.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/75] Extracting libtasn1-4.19.0: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/75] Installing dbus-1.14.6,1...
===> Creating groups.
Creating group 'messagebus' with gid '556'.
===> Creating users
Creating user 'messagebus' with uid '556'.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/75] Extracting dbus-1.14.6,1: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/75] Installing libfontenc-1.1.7...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/75] Extracting libfontenc-1.1.7: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/75] Installing glib-2.76.5,2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/75] Extracting glib-2.76.5,2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/75] Installing nettle-3.9.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/75] Extracting nettle-3.9.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/75] Installing mkfontscale-1.2.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/75] Extracting mkfontscale-1.2.1: ....... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/75] Installing gnome_subr-1.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/75] Extracting gnome_subr-1.0: .... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/75] Installing shared-mime-info-2.2_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/75] Extracting shared-mime-info-2.2_1: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/75] Installing gdbm-1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/75] Extracting gdbm-1.23: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/75] Installing Imath-3.1.9...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/75] Extracting Imath-3.1.9: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/75] Installing libXext-1.3.4,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/75] Extracting libXext-1.3.4,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/75] Installing p11-kit-0.24.1_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/75] Extracting p11-kit-0.24.1_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/75] Installing dbus-glib-0.112...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/75] Extracting dbus-glib-0.112: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/75] Installing libdaemon-0.14_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/75] Extracting libdaemon-0.14_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/75] Installing libdatrie-0.2.13_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/75] Extracting libdatrie-0.2.13_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/75] Installing libglvnd-1.6.0_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/75] Extracting libglvnd-1.6.0_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/75] Installing lcms2-2.15_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/75] Extracting lcms2-2.15_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/75] Installing gdk-pixbuf2-2.42.10_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/75] Extracting gdk-pixbuf2-2.42.10_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/75] Installing gnutls-3.7.9...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/75] Extracting gnutls-3.7.9: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/75] Installing libpaper-1.1.28...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/75] Extracting libpaper-1.1.28: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/75] Installing font-misc-ethiopic-1.0.4...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/75] Extracting font-misc-ethiopic-1.0.4: ...... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/75] Installing libXrender-0.9.10_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/75] Extracting libXrender-0.9.10_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/75] Installing graphite2-1.3.14...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/75] Extracting graphite2-1.3.14: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/75] Installing encodings-1.0.5,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/75] Extracting encodings-1.0.5,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/75] Installing avahi-app-0.8_1...
===> Creating groups.
Creating group 'avahi' with gid '558'.
===> Creating users
Creating user 'avahi' with uid '558'.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/75] Extracting avahi-app-0.8_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/75] Installing highway-1.0.7...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/75] Extracting highway-1.0.7: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/75] Installing font-bh-ttf-1.0.3_5...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/75] Extracting font-bh-ttf-1.0.3_5: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/75] Installing pixman-0.42.2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/75] Extracting pixman-0.42.2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/75] Installing openexr-3.1.11...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/75] Extracting openexr-3.1.11: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/75] Installing font-misc-meltho-1.0.3_5...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/75] Extracting font-misc-meltho-1.0.3_5: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/75] Installing dejavu-2.37_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/75] Extracting dejavu-2.37_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/75] Installing cups-2.4.6...
===> Creating groups.
Creating group 'cups' with gid '193'.
===> Creating users
Creating user 'cups' with uid '193'.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/75] Extracting cups-2.4.6: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/75] Installing libthai-0.1.29...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/75] Extracting libthai-0.1.29: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/75] Installing fribidi-1.0.13...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/75] Extracting fribidi-1.0.13: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/75] Installing libidn-1.38...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/75] Extracting libidn-1.38: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/75] Installing vmaf-2.3.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/75] Extracting vmaf-2.3.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/75] Installing openjpeg-2.5.0_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/75] Extracting openjpeg-2.5.0_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/75] Installing libjxl-0.8.2_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/75] Extracting libjxl-0.8.2_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/75] Installing libXft-2.3.7...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/75] Extracting libXft-2.3.7: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/75] Installing cairo-1.17.4_2,3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/75] Extracting cairo-1.17.4_2,3: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/75] Installing harfbuzz-8.1.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/75] Extracting harfbuzz-8.1.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/75] Installing jbig2dec-0.19...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/75] Extracting jbig2dec-0.19: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/75] Installing xorg-fonts-truetype-7.7_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/75] Extracting xorg-fonts-truetype-7.7_1: ... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/75] Installing poppler-data-0.4.12...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/75] Extracting poppler-data-0.4.12: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/75] Installing libXt-1.2.1,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/75] Extracting libXt-1.2.1,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [56/75] Installing aom-3.7.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [56/75] Extracting aom-3.7.0: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [57/75] Installing ghostscript9-agpl-base-9.56.1_12...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [57/75] Extracting ghostscript9-agpl-base-9.56.1_12: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [58/75] Installing x265-3.4_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [58/75] Extracting x265-3.4_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [59/75] Installing libde265-1.0.12...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [59/75] Extracting libde265-1.0.12: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [60/75] Installing pango-1.50.14...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [60/75] Extracting pango-1.50.14: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [61/75] Installing svt-av1-1.7.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [61/75] Extracting svt-av1-1.7.0: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [62/75] Installing dav1d-1.2.1_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [62/75] Extracting dav1d-1.2.1_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [63/75] Installing libraqm-0.10.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [63/75] Extracting libraqm-0.10.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [64/75] Installing librsvg2-rust-2.56.3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [64/75] Extracting librsvg2-rust-2.56.3: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [65/75] Installing libwmf-0.2.13_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [65/75] Extracting libwmf-0.2.13_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [66/75] Installing ghostscript9-agpl-x11-9.56.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [66/75] Extracting ghostscript9-agpl-x11-9.56.1: .... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [67/75] Installing liblqr-1-0.4.2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [67/75] Extracting liblqr-1-0.4.2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [68/75] Installing libraw-0.21.1_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [68/75] Extracting libraw-0.21.1_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [69/75] Installing libltdl-2.4.7...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [69/75] Extracting libltdl-2.4.7: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [70/75] Installing fftw3-3.3.10_3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [70/75] Extracting fftw3-3.3.10_3: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [71/75] Installing libheif-1.16.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [71/75] Extracting libheif-1.16.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [72/75] Installing perl5-5.34.1_3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [72/75] Extracting perl5-5.34.1_3: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [73/75] Installing gsfonts-8.11_8...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [73/75] Extracting gsfonts-8.11_8: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [74/75] Installing ImageMagick7-7.1.0.62_6...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [74/75] Extracting ImageMagick7-7.1.0.62_6: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [75/75] Installing php81-pecl-imagick-3.7.0_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [75/75] Extracting php81-pecl-imagick-3.7.0_2: .......... done
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
==> Running trigger: shared-mime-info.ucl
Building the Shared MIME-Info database cache
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
Message from python39-3.9.17:
--
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 dejavu-2.37_2:
--
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 libthai-0.1.29:
--
===> NOTICE:
The libthai 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 libjxl-0.8.2_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 ghostscript9-agpl-base-9.56.1_12:
--
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 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 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 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 php81-pecl-imagick-3.7.0_2:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-imagick.ini.sample
Step 62: Install package php81-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 php81-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 php81-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 php81-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 php81-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 67: Install package php81-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 68: Install package php81-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 69: Install package php81-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:
php81-xsl: 8.1.23
Number of packages to be installed: 1
15 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-xsl-8.1.23.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-xsl-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-xsl-8.1.23: ........ done
=====
Message from php81-xsl-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xsl.ini
Step 70: Install package php81-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:
php81-zip: 8.1.23
Number of packages to be installed: 1
27 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php81-zip-8.1.23.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php81-zip-8.1.23...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php81-zip-8.1.23: ........ done
=====
Message from php81-zip-8.1.23:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zip.ini
Step 71: Install package php81-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 72: Install package ImageMagick6-nox11
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:
ImageMagick6-nox11: 6.9.12.77_5,1
libwmf-nox11: 0.2.13_2
Number of packages to be installed: 2
The process will require 30 MiB more space.
9 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libwmf-nox11-0.2.13_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching ImageMagick6-nox11-6.9.12.77_5,1.pkg: .......... done
Checking integrity... done (4 conflicting)
- libwmf-nox11-0.2.13_2 conflicts with libwmf-0.2.13_2 on /usr/local/bin/libwmf-config
- libwmf-nox11-0.2.13_2 conflicts with libwmf-0.2.13_2 on /usr/local/bin/libwmf-config
- ImageMagick6-nox11-6.9.12.77_5,1 conflicts with ImageMagick7-7.1.0.62_6 on /usr/local/bin/Magick++-config
- ImageMagick6-nox11-6.9.12.77_5,1 conflicts with ImageMagick7-7.1.0.62_6 on /usr/local/bin/Magick++-config
Checking integrity... done (0 conflicting)
Conflicts with the existing packages have been found.
One more solver iteration is needed to resolve them.
The following 5 package(s) will be affected (of 0 checked):
Installed packages to be REMOVED:
ImageMagick7: 7.1.0.62_6
libwmf: 0.2.13_2
php81-pecl-imagick: 3.7.0_2
New packages to be INSTALLED:
ImageMagick6-nox11: 6.9.12.77_5,1
libwmf-nox11: 0.2.13_2
Number of packages to be removed: 3
Number of packages to be installed: 2
The operation will free 5 MiB.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Deinstalling php81-pecl-imagick-3.7.0_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/5] Deleting files for php81-pecl-imagick-3.7.0_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Deinstalling ImageMagick7-7.1.0.62_6...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/5] Deleting files for ImageMagick7-7.1.0.62_6: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Deinstalling libwmf-0.2.13_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/5] Deleting files for libwmf-0.2.13_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Installing libwmf-nox11-0.2.13_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/5] Extracting libwmf-nox11-0.2.13_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Installing ImageMagick6-nox11-6.9.12.77_5,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/5] Extracting ImageMagick6-nox11-6.9.12.77_5,1: .......... done
==> Running trigger: gdk-pixbuf-query-loaders.ucl
Generating gdk-pixbuf modules cache
=====
Message from libwmf-nox11-0.2.13_2:
--
===> NOTICE:
The libwmf-nox11 port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:
https://bugs.freebsd.org/bugzilla
More information about port maintainership is available at:
https://docs.freebsd.org/en/articles/contributing/#ports-contributing
Step 73: 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 74: Install package ffmpeg
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 24 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
argp-standalone: 1.5.0
ffmpeg: 6.0_2,1
lame: 3.100_4
libXfixes: 6.0.0
libXrandr: 1.5.2
libass: 0.17.1_1
libdrm: 2.4.116,1
libepoll-shim: 0.0.20230411
libogg: 1.3.5,4
libpciaccess: 0.17
libplacebo: 6.292.1
libudev-devd: 0.5.1
libunibreak: 5.1,1
libunwind: 20211201_2
libv4l: 1.23.0_2
libva: 2.19.0
libvdpau: 1.5
libvorbis: 1.3.7_2,3
libvpx: 1.13.0
libx264: 0.164.3095
opus: 1.4
shaderc: 2023.6
vulkan-loader: 1.3.262_1
wayland: 1.22.0
Number of packages to be installed: 24
The process will require 77 MiB more space.
18 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/24] Fetching libx264-0.164.3095.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/24] Fetching libva-2.19.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/24] Fetching libXfixes-6.0.0.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/24] Fetching shaderc-2023.6.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/24] Fetching libepoll-shim-0.0.20230411.pkg: ...... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/24] Fetching lame-3.100_4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/24] Fetching libpciaccess-0.17.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/24] Fetching vulkan-loader-1.3.262_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/24] Fetching libass-0.17.1_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/24] Fetching ffmpeg-6.0_2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/24] Fetching opus-1.4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/24] Fetching libunwind-20211201_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/24] Fetching libplacebo-6.292.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/24] Fetching libvdpau-1.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/24] Fetching libXrandr-1.5.2.pkg: . done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/24] Fetching libunibreak-5.1,1.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/24] Fetching libdrm-2.4.116,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/24] Fetching wayland-1.22.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/24] Fetching libv4l-1.23.0_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/24] Fetching libudev-devd-0.5.1.pkg: .... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/24] Fetching libvorbis-1.3.7_2,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/24] Fetching argp-standalone-1.5.0.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/24] Fetching libogg-1.3.5,4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/24] Fetching libvpx-1.13.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/24] Installing libepoll-shim-0.0.20230411...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/24] Extracting libepoll-shim-0.0.20230411: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/24] Installing libpciaccess-0.17...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/24] Extracting libpciaccess-0.17: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/24] Installing libXrandr-1.5.2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/24] Extracting libXrandr-1.5.2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/24] Installing wayland-1.22.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/24] Extracting wayland-1.22.0: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/24] Installing libXfixes-6.0.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/24] Extracting libXfixes-6.0.0: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/24] Installing shaderc-2023.6...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/24] Extracting shaderc-2023.6: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/24] Installing vulkan-loader-1.3.262_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/24] Extracting vulkan-loader-1.3.262_1: ....... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/24] Installing libunwind-20211201_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/24] Extracting libunwind-20211201_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/24] Installing libunibreak-5.1,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/24] Extracting libunibreak-5.1,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/24] Installing libdrm-2.4.116,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/24] Extracting libdrm-2.4.116,1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/24] Installing libudev-devd-0.5.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/24] Extracting libudev-devd-0.5.1: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/24] Installing argp-standalone-1.5.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/24] Extracting argp-standalone-1.5.0: ........ done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/24] Installing libogg-1.3.5,4...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/24] Extracting libogg-1.3.5,4: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/24] Installing libx264-0.164.3095...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/24] Extracting libx264-0.164.3095: ......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/24] Installing libva-2.19.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/24] Extracting libva-2.19.0: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/24] Installing lame-3.100_4...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/24] Extracting lame-3.100_4: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/24] Installing libass-0.17.1_1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/24] Extracting libass-0.17.1_1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/24] Installing opus-1.4...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/24] Extracting opus-1.4: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/24] Installing libplacebo-6.292.1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/24] Extracting libplacebo-6.292.1: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/24] Installing libvdpau-1.5...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/24] Extracting libvdpau-1.5: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/24] Installing libv4l-1.23.0_2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/24] Extracting libv4l-1.23.0_2: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/24] Installing libvorbis-1.3.7_2,3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/24] Extracting libvorbis-1.3.7_2,3: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/24] Installing libvpx-1.13.0...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/24] Extracting libvpx-1.13.0: .......... done
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/24] Installing ffmpeg-6.0_2,1...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/24] Extracting ffmpeg-6.0_2,1: .......... done
=====
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).
Step 75: 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.6
Number of packages to be installed: 1
The process will require 1 MiB more space.
268 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jq-1.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jq-1.6...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jq-1.6: .......... done
Step 76: 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
Number of packages to be installed: 1
The process will require 3 MiB more space.
597 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching nano-7.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing nano-7.2...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting nano-7.2: .......... done
Step 77: 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.14p3
Number of packages to be installed: 1
The process will require 7 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching sudo-1.9.14p3.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing sudo-1.9.14p3...
[nextcloud-nginx-nomad-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting sudo-1.9.14p3: .......... done
Step 78: Clean package installation
Nothing to do.
Step 79: Create necessary directories if they don't exist
Step 80: Enable nginx
nginx enabled in /etc/rc.conf
Step 81: Enable php-fpm
php_fpm enabled in /etc/rc.conf
Step 82: Clean cook artifacts
Step 83: Install pot local
Step 84: Set file ownership on cook scripts
Step 85: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 86: Create rc.d script to start cook
creating rc.d script to start cook
Step 87: Make rc.d script to start cook executable
Setting executable bit on cook rc file
=====> Stop the pot nextcloud-nginx-nomad-amd64-13_2
=====> Remove p464fb8bd0b904 epair network interfaces
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/tmp
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_2/m/dev
=====> Reverting pot nextcloud-nginx-nomad-amd64-13_2 to non-persistent
===> exporting nextcloud-nginx-nomad-amd64-13_2 @ 1694207146 to /tmp/nextcloud-nginx-nomad-amd64-13_2_0.79.xz
xz: Reduced the number of threads from 4 to 3 to not exceed the memory usage limit of 503 MiB