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/pot
zfs create data/pot/jaildata_nextcloud
zfs create data/pot/jaildata_nextcloud_files
jaildata_nextcloud
is where the nextcloud files are installed and is mounted to /usr/local/www/nextcloud/
inside the image.
jaildata_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.
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 with with -s ip:port
.
Custom Nextcloud config.php
If you wish to make use of object storage for file backing you will need to copy-in a custom nextcloud
config.php to /root/nc-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 (
'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' => '/var/log/nginx/nextcloud.log',
'memcache.local' => '\\OC\\Memcache\\APCu',
'instanceid' => 'REDACTED',
'passwordsalt' => '+REDACTED',
'secret' => 'REDACTED',
'trusted_domains' =>
array (
0 => '10.0.0.2:20900',
1 => 'my.host.name',
),
'datadirectory' => '/mnt/filestore',
'version' => '23.0.3.2',
'dbtype' => 'mysql',
'dbname' => 'nextcloud',
'dbhost' => '10.0.0.3',
'dbport' => '3306',
'dbtableprefix' => 'nc_',
'dbuser' => 'REDACTED',
'dbpassword' => 'REDACTED',
'installed' => true,
'overwrite.cli.url' => 'https://my.host.name',
'overwritehost' => 'my.host.name',
'overwriteprotocol' => 'https',
'installed' => true,
'theme' => '',
'loglevel' => 0,
'mysql.utf8mb4' => true,
'objectstore' => array (
'class' => '\\OC\\Files\\ObjectStore\\S3',
'arguments' => array(
'bucket' => 'mynextcloud',
'autocreate' => true,
'key' => 'REDACTED',
'secret' => 'REDACTED',
'hostname' => '<your host>',
'port' => '<your port>',
'use_ssl' => true,
'region' => 'optional',
'use_path_style' => true
),
),
);
Take note: the addition of an objectstore array in config.php will stop the mounted-in filestore from working.
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 = "60s"
timeout = "30s"
}
check_restart {
limit = 0
grace = "120s"
ignore_warnings = false
}
}
config {
image = "https://potluck.honeyguide.net/nextcloud-nginx-nomad"
pot = "nextcloud-nginx-nomad-amd64-13_0"
tag = "0.24"
command = "/usr/local/bin/cook"
args = ["-d","/mnt/filestore","-s","host:ip"]
copy = [
"/path/to/custom/config.php:/root/nc-config.php",
]
mount = [
"/mnt/data/pot/jaildata_nextcloud/www:/usr/local/www/nextcloud",
"/mnt/data/pot/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.
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.0:
pot import -p nextcloud-nginx-nomad-amd64-13_0 -t 0.24 -U https://potluck.honeyguide.net/nextcloud-nginx-nomad
FreeBSD 12.3:
pot import -p nextcloud-nginx-nomad-amd64-12_3 -t 0.24 -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_0 -p my-cloned-jail -N alias -i "em0|10.10.10.10"
Note: Some images might require specific network configuration, double check the Overview-chapter at the top.
Alternatively: Create a Jail With This Flavour Yourself
1. Create Flavour Files
Save all files and directories from https://github.com/hny-gd/potluck/tree/master/nextcloud-nginx-nomad to /usr/local/etc/pot/flavours/
2. Create Jail From Flavour
Run
pot create -b <FreeBSD Version> -p <jailname> -t single -N public-bridge -f fbsd-update
with your FreeBSD version (e.g. 12.1) and the name your jail should get.
Note: Some images might require specific network configuration, double check the Overview-chapter at the top.
Version History
0.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 Mon Jun 13 19:31:27 UTC 2022
Manual Image Download Links
nextcloud-nginx-nomad-amd64-13_0_0.24.xz (
626.53 MB
)
nextcloud-nginx-nomad-amd64-13_0_0.24.xz.skein (
0.250977 KB
)
nextcloud-nginx-nomad-amd64-13_0_0.24.xz.meta (
0.00195312 KB
)
nextcloud-nginx-nomad-amd64-12_3_0.24.xz (
670.977 MB
)
nextcloud-nginx-nomad-amd64-12_3_0.24.xz.skein (
0.250977 KB
)
nextcloud-nginx-nomad-amd64-12_3_0.24.xz.meta (
0.00195312 KB
)
Jenkins Pot Creation Logs
nextcloud-nginx-nomad-amd64-13_0_0.24:
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/nginx.conf -d /root/nginx.conf
copy-in -s /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/99-custom.ini -d /root/99-custom.ini
copy-in -s /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/S3ObjectTrait.patch -d /root/S3ObjectTrait.patch
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=$(expr "$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" }' \
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
# optionally disable ssh access
step "Disable sshd"
service sshd onedisable || true
step "Create /usr/local/etc/rc.d"
mkdir -p /usr/local/etc/rc.d
step "Install package nginx"
pkg install -y nginx
step "Install package mariadb105-client"
pkg install -y mariadb105-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 openldap24-client"
pkg install -y openldap24-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 php74"
pkg install -y php74
step "Install package php74-extensions"
pkg install -y php74-extensions
step "Install package php74-bcmath"
pkg install -y php74-bcmath
step "Install package php74-bz2"
pkg install -y php74-bz2
step "Install package php74-ctype"
pkg install -y php74-ctype
step "Install package php74-curl"
pkg install -y php74-curl
step "Install package php74-dom"
pkg install -y php74-dom
step "Install package php74-exif"
pkg install -y php74-exif
step "Install package php74-fileinfo"
pkg install -y php74-fileinfo
step "Install package php74-filter"
pkg install -y php74-filter
step "Install package php74-ftp"
pkg install -y php74-ftp
step "Install package php74-gd"
pkg install -y php74-gd
step "Install package php74-gmp"
pkg install -y php74-gmp
step "Install package php74-iconv"
pkg install -y php74-iconv
step "Install package php74-imap"
pkg install -y php74-imap
step "Install package php74-intl"
pkg install -y php74-intl
step "Install package php74-json"
pkg install -y php74-json
step "Install package php74-ldap"
pkg install -y php74-ldap
step "Install package php74-mysqli"
pkg install -y php74-mysqli
step "Install package php74-mbstring"
pkg install -y php74-mbstring
step "Install package php74-opcache"
pkg install -y php74-opcache
step "Install package php74-openssl"
pkg install -y php74-openssl
step "Install package php74-pcntl"
pkg install -y php74-pcntl
step "Install package php74-pdo"
pkg install -y php74-pdo
step "Install package php74-pdo_mysql"
pkg install -y php74-pdo_mysql
step "Install package php74-pecl-APCu"
pkg install -y php74-pecl-APCu
step "Install package php74-pecl-memcached"
pkg install -y php74-pecl-memcached
step "Install package php74-pecl-redis"
pkg install -y php74-pecl-redis
step "Install package php74-pecl-imagick"
pkg install -y php74-pecl-imagick
step "Install package php74-phar"
pkg install -y php74-phar
step "Install package php74-posix"
pkg install -y php74-posix
step "Install package php74-session"
pkg install -y php74-session
step "Install package php74-simplexml"
pkg install -y php74-simplexml
step "Install package php74-xml"
pkg install -y php74-xml
step "Install package php74-xmlreader"
pkg install -y php74-xmlreader
step "Install package php74-xmlwriter"
pkg install -y php74-xmlwriter
step "Install package php74-xsl"
pkg install -y php74-xsl
step "Install package php74-zip"
pkg install -y php74-zip
step "Install package php74-zlib"
pkg install -y php74-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
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"
#sysrc php_fpm_enable="YES"
service php-fpm enable
# ---------- END PACKAGE & MOUNTPOINT SETUP -------------
#
# Create configurations
#
#
# 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
#
# clear any old cook runtime file
step "Clean cook artifacts"
rm -rf /usr/local/bin/cook
# ----------------- BEGIN COOK ------------------
step "Create cook script"
echo "#!/bin/sh
RUNS_IN_NOMAD=$RUNS_IN_NOMAD
# declare this again for the pot image, might work carrying variable through like
# with above
COOKLOG=/var/log/cook.log
# No need to change this, just ensures configuration is done only once
if [ -e /usr/local/etc/pot-is-seasoned ]
then
# If this pot flavour is blocking (i.e. it should not return),
# we block indefinitely
if [ \"\$RUNS_IN_NOMAD\" = \"true\" ]
then
/bin/sh /etc/rc
tail -f /dev/null
fi
exit 0
fi
# ADJUST THIS: STOP SERVICES AS NEEDED BEFORE CONFIGURATION
service nginx onestop || true
service php-fpm onestop || true
# No need to adjust this:
# If this pot flavour is not blocking, we need to read the environment first from /tmp/environment.sh
# where pot is storing it in this case
if [ -e /tmp/environment.sh ]
then
. /tmp/environment.sh
fi
#
# ADJUST THIS BY CHECKING FOR ALL VARIABLES YOUR FLAVOUR NEEDS:
#
# Convert parameters to variables if passed (overwrite environment)
while getopts d:s: option
do
case \"\${option}\"
in
d) DATADIR=\${OPTARG};;
s) SELFSIGNHOST=\${OPTARG};;
esac
done
# Check config variables are set
if [ -z \${DATADIR+x} ];
then
echo 'DATADIR is unset - see documentation how to configure this flavour' >> /var/log/cook.log
echo 'DATADIR is unset - see documentation how to configure this flavour'
DATADIR=\"/usr/local/www/nextcloud/data\"
fi
if [ -z \${SELFSIGNHOST+x} ];
then
echo 'SELFSIGNHOST is unset - see documentation how to configure this flavour' >> /var/log/cook.log
echo 'SELFSIGNHOST is unset - see documentation how to configure this flavour'
SELFSIGNHOST=\"none\"
fi
# ADJUST THIS BELOW: NOW ALL THE CONFIGURATION FILES NEED TO BE ADJUSTED & COPIED:
# If we do not find a Nextcloud installation, we install it. If we do find something though,
# we do not install/overwrite anything as we assume that updates/modifications are happening
# from within the Nextcloud installation, we install it. If we do find something though,
# we do not install/overwrite anything as we assume that updates/modifications are happening
# from within Nextcloud.
if [ ! -e /usr/local/www/nextcloud/status.php ]; then
pkg install -y nextcloud-php74 nextcloud-twofactor_totp-php74 nextcloud-deck-php74 nextcloud-mail-php74 nextcloud-contacts-php74 nextcloud-calendar-php74 nextcloud-end_to_end_encryption-php74
fi
# Configure PHP FPM
sed -i .orig 's|listen = 127.0.0.1:9000|listen = /var/run/php74-fpm.sock|g' /usr/local/etc/php-fpm.d/www.conf
sed -i .orig 's|pm.max_children = 5|pm.max_children = 10|g' /usr/local/etc/php-fpm.d/www.conf
echo \";Nomad Nextcloud settings...\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"listen.owner = www\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"listen.group = www\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"listen.mode = 0660\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"env[PATH] = /usr/local/bin:/usr/bin:/bin\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"env[TMP] = /tmp\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"env[TMPDIR] = /tmp\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"env[TEMP] = /tmp\" >> /usr/local/etc/php-fpm.d/www.conf
# Configure PHP
cp -f /usr/local/etc/php.ini-production /usr/local/etc/php.ini
cp -f /root/99-custom.ini /usr/local/etc/php/99-custom.ini
# check for presence of copied-in /root/nc-config.php and copy over any existing (with backup)
if [ -s /root/nc-config.php ]; then
if [ -s /usr/local/www/nextcloud/config/config.php ]; then
cp -f /usr/local/www/nextcloud/config/config.php /usr/local/www/nextcloud/config/config.php.old
fi
cp -f /root/nc-config.php /usr/local/www/nextcloud/config/config.php
fi
# Fix www group memberships so it works with fuse mounted directories
pw addgroup -n newwww -g 1001
pw moduser www -u 1001 -G 80,0,1001
# set perms on /usr/local/www/nextcloud/*
chown -R www:www /usr/local/www/nextcloud
# create a nextcloud log file
# this needs to be configured in nextcloud config.php in copy-in file
touch /var/log/nginx/nextcloud.log
chown www:www /var/log/nginx/nextcloud.log
# manually create php log and set owner
touch /var/log/nginx/php.scripts.log
chown www:www /var/log/nginx/php.scripts.log
# check for .ocdata in DATADIR
# if using S3 with no mount-in this should set it up in the default DATADIR
# /usr/local/nginx/nextcloud/data
if [ ! -f \"\${DATADIR}\"/.ocdata ]; then
touch\"\${DATADIR}\"/.ocdata
chown www:www \"\${DATADIR}\"/.ocdata
fi
# set perms on DATADIR
chown -R www:www \"\${DATADIR}\"
# configure self-signed certificates for libcurl, mostly used for minio with self-signed certificates
# nextcloud source needs patching to work with self-signed certificates too
if [ \"\${SELFSIGNHOST}\" != \"none\" ]; then
echo \"\" | /usr/bin/openssl s_client -showcerts -connect \"\${SELFSIGNHOST}\" |/usr/bin/openssl x509 -outform PEM > /tmp/cert.pem
if [ -f /tmp/cert.pem ]; then
cat /tmp/cert.pem >> /usr/local/share/certs/ca-root-nss.crt
echo \"openssl.cafile=/usr/local/share/certs/ca-root-nss.crt\" >> /usr/local/etc/php/99-custom.ini
cat /tmp/cert.pem >> /usr/local/www/nextcloud/resources/config/ca-bundle.crt
fi
# Patch nextcloud source for self-signed certificates with S3
if [ -f /usr/local/www/nextcloud/lib/private/Files/ObjectStore/S3ObjectTrait.php ] && [ -f /root/S3ObjectTrait.patch ]; then
# make sure we haven't already applied the patch
checknotapplied=\$(grep -c verify_peer_name /usr/local/www/nextcloud/lib/private/Files/ObjectStore/S3ObjectTrait.php)
if [ \"\${checknotapplied}\" -eq 0 ]; then
# check the patch will apply cleanly
testpatch=\$(patch --check -i /root/S3ObjectTrait.patch /usr/local/www/nextcloud/lib/private/Files/ObjectStore/S3ObjectTrait.php | echo \"\$?\")
if [ \"\${testpatch}\" -eq 0 ]; then
# apply the patch
patch -i /root/S3ObjectTrait.patch /usr/local/www/nextcloud/lib/private/Files/ObjectStore/S3ObjectTrait.php
fi
fi
fi
fi
# Configure NGINX
cp -f /root/nginx.conf /usr/local/etc/nginx/nginx.conf
# ADJUST THIS: START THE SERVICES AGAIN AFTER CONFIGURATION
# we need to kill nginx then start it
killall -9 nginx
kill -9 \$(/bin/pgrep nginx)
# restart services
#service php-fpm restart
timeout --foreground 120 \
sh -c 'while ! service php-fpm status; do
service php-fpm start || true; sleep 5;
done'
#service nginx restart
timeout --foreground 120 \
sh -c 'while ! service nginx status; do
service nginx start || true; sleep 5;
done'
# setup cronjob
echo \"*/5 * * * * www /usr/local/bin/php -f /usr/local/www/nextcloud/cron.php\" >> /etc/crontab
# Do not touch this:
touch /usr/local/etc/pot-is-seasoned
# If this pot flavour is blocking (i.e. it should not return), there is no /tmp/environment.sh
# created by pot and we now after configuration block indefinitely
if [ \"\$RUNS_IN_NOMAD\" = \"true\" ]
then
/bin/sh /etc/rc
tail -f /dev/null
fi
" > /usr/local/bin/cook
# ----------------- 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
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:
Password:===> Creating a new pot
===> pot name : nextcloud-nginx-nomad-amd64-13_0
===> type : single
===> base : 13.0
===> pot_base :
===> level : 0
===> network-type : public-bridge
===> network-stack: ipv4
===> ip : 10.192.0.5
===> bridge :
===> dns : inherit
===> flavours : fbsd-update nextcloud-nginx-nomad nextcloud-nginx-nomad+1 nextcloud-nginx-nomad+2 nextcloud-nginx-nomad+3 nextcloud-nginx-nomad+4
===> Fetching FreeBSD 13.0
===> Extract the tarball
=====> Flavour: fbsd-update
=====> Starting nextcloud-nginx-nomad-amd64-13_0 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
defaultrouter: NO -> 10.192.0.1
===> Starting the pot nextcloud-nginx-nomad-amd64-13_0
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=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:96:2c:06:11:0b
inet 10.192.0.5 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
Updating /var/run/os-release done.
Creating and/or trimming log files.
Clearing /tmp (X related).
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.
Mon Jun 13 19:07:21 UTC 2022
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp/fbsd-update.sh
=====> Executing fbsd-update script on nextcloud-nginx-nomad-amd64-13_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 13.0-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 194 patches.....10....20....30....40....50....60....70....80....90....100....110....120....130....140....150....160....170....180....190.. done.
Applying patches... done.
Fetching 15 files... ....10.. done.
The following files will be removed as part of updating to
13.0-RELEASE-p11:
/etc/ssl/certs/080911ac.0
/etc/ssl/certs/0b7c536a.0
/etc/ssl/certs/0c4c9b6c.0
/etc/ssl/certs/116bf586.0
/etc/ssl/certs/1320b215.0
/etc/ssl/certs/26312675.0
/etc/ssl/certs/349f2832.0
/etc/ssl/certs/442adcac.0
/etc/ssl/certs/5a4d6896.0
/etc/ssl/certs/9c2e7d30.0
/etc/ssl/certs/a8dee976.0
/etc/ssl/certs/b1b8a7f3.0
/etc/ssl/certs/c01cdfa2.0
/etc/ssl/certs/c47d9980.0
/etc/ssl/certs/cb59f961.0
/etc/ssl/certs/d853d49e.0
/etc/ssl/certs/dc45b0bd.0
/etc/ssl/certs/ee1365c0.0
/etc/ssl/certs/f90208f7.0
/usr/share/certs/trusted/Camerfirma_Chambers_of_Commerce_Root.pem
/usr/share/certs/trusted/Camerfirma_Global_Chambersign_Root.pem
/usr/share/certs/trusted/Certum_Root_CA.pem
/usr/share/certs/trusted/Chambers_of_Commerce_Root_-_2008.pem
/usr/share/certs/trusted/D-TRUST_Root_CA_3_2013.pem
/usr/share/certs/trusted/EC-ACC.pem
/usr/share/certs/trusted/GeoTrust_Primary_Certification_Authority_-_G2.pem
/usr/share/certs/trusted/Global_Chambersign_Root_-_2008.pem
/usr/share/certs/trusted/OISTE_WISeKey_Global_Root_GA_CA.pem
/usr/share/certs/trusted/QuoVadis_Root_CA.pem
/usr/share/certs/trusted/Sonera_Class_2_Root_CA.pem
/usr/share/certs/trusted/Staat_der_Nederlanden_Root_CA_-_G3.pem
/usr/share/certs/trusted/SwissSign_Platinum_CA_-_G2.pem
/usr/share/certs/trusted/Symantec_Class_1_Public_Primary_Certification_Authority_-_G6.pem
/usr/share/certs/trusted/Symantec_Class_2_Public_Primary_Certification_Authority_-_G6.pem
/usr/share/certs/trusted/Trustis_FPS_Root_CA.pem
/usr/share/certs/trusted/VeriSign_Universal_Root_Certification_Authority.pem
/usr/share/certs/trusted/Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem
/usr/share/certs/trusted/Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem
The following files will be added as part of updating to
13.0-RELEASE-p11:
/etc/ssl/blacklisted/080911ac.0
/etc/ssl/blacklisted/0b7c536a.0
/etc/ssl/blacklisted/0c4c9b6c.0
/etc/ssl/blacklisted/116bf586.0
/etc/ssl/blacklisted/1320b215.0
/etc/ssl/blacklisted/26312675.0
/etc/ssl/blacklisted/349f2832.0
/etc/ssl/blacklisted/442adcac.0
/etc/ssl/blacklisted/5a4d6896.0
/etc/ssl/blacklisted/9c2e7d30.0
/etc/ssl/blacklisted/a8dee976.0
/etc/ssl/blacklisted/b1b8a7f3.0
/etc/ssl/blacklisted/c01cdfa2.0
/etc/ssl/blacklisted/c47d9980.0
/etc/ssl/blacklisted/cb59f961.0
/etc/ssl/blacklisted/d853d49e.0
/etc/ssl/blacklisted/dc45b0bd.0
/etc/ssl/blacklisted/ee1365c0.0
/etc/ssl/blacklisted/f90208f7.0
/etc/ssl/certs/002c0b4f.0
/etc/ssl/certs/9482e63a.0
/etc/ssl/certs/b433981b.0
/etc/ssl/certs/b81b93f0.0
/etc/ssl/certs/e35234b1.0
/etc/ssl/certs/fa5da96b.0
/etc/ssl/certs/feffd413.0
/usr/include/c++/v1/barrier
/usr/include/c++/v1/concepts
/usr/include/c++/v1/execution
/usr/include/c++/v1/latch
/usr/include/c++/v1/numbers
/usr/include/c++/v1/semaphore
/usr/include/c++/v1/tr1/barrier
/usr/include/c++/v1/tr1/concepts
/usr/include/c++/v1/tr1/execution
/usr/include/c++/v1/tr1/latch
/usr/include/c++/v1/tr1/numbers
/usr/include/c++/v1/tr1/semaphore
/usr/share/certs/blacklisted/Camerfirma_Chambers_of_Commerce_Root.pem
/usr/share/certs/blacklisted/Camerfirma_Global_Chambersign_Root.pem
/usr/share/certs/blacklisted/Certum_Root_CA.pem
/usr/share/certs/blacklisted/Chambers_of_Commerce_Root_-_2008.pem
/usr/share/certs/blacklisted/D-TRUST_Root_CA_3_2013.pem
/usr/share/certs/blacklisted/EC-ACC.pem
/usr/share/certs/blacklisted/GeoTrust_Primary_Certification_Authority_-_G2.pem
/usr/share/certs/blacklisted/Global_Chambersign_Root_-_2008.pem
/usr/share/certs/blacklisted/OISTE_WISeKey_Global_Root_GA_CA.pem
/usr/share/certs/blacklisted/QuoVadis_Root_CA.pem
/usr/share/certs/blacklisted/Sonera_Class_2_Root_CA.pem
/usr/share/certs/blacklisted/Staat_der_Nederlanden_Root_CA_-_G3.pem
/usr/share/certs/blacklisted/SwissSign_Platinum_CA_-_G2.pem
/usr/share/certs/blacklisted/Symantec_Class_1_Public_Primary_Certification_Authority_-_G6.pem
/usr/share/certs/blacklisted/Symantec_Class_2_Public_Primary_Certification_Authority_-_G6.pem
/usr/share/certs/blacklisted/Trustis_FPS_Root_CA.pem
/usr/share/certs/blacklisted/VeriSign_Universal_Root_Certification_Authority.pem
/usr/share/certs/blacklisted/Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem
/usr/share/certs/blacklisted/Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem
/usr/share/certs/trusted/AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem
/usr/share/certs/trusted/ANF_Secure_Server_Root_CA.pem
/usr/share/certs/trusted/Certum_EC-384_CA.pem
/usr/share/certs/trusted/Certum_Trusted_Root_CA.pem
/usr/share/certs/trusted/GLOBALTRUST_2020.pem
/usr/share/certs/trusted/GlobalSign_Root_E46.pem
/usr/share/certs/trusted/GlobalSign_Root_R46.pem
/usr/share/zoneinfo/Pacific/Kanton
The following files will be updated as part of updating to
13.0-RELEASE-p11:
/bin/freebsd-version
/lib/libalias.so.7
/lib/libcasper.so.1
/lib/libcrypto.so.111
/lib/libz.so.6
/lib/libzpool.so.2
/rescue/[
/rescue/bectl
/rescue/bsdlabel
/rescue/bunzip2
/rescue/bzcat
/rescue/bzip2
/rescue/camcontrol
/rescue/cat
/rescue/ccdconfig
/rescue/chflags
/rescue/chgrp
/rescue/chio
/rescue/chmod
/rescue/chown
/rescue/chroot
/rescue/clri
/rescue/cp
/rescue/csh
/rescue/date
/rescue/dd
/rescue/devfs
/rescue/df
/rescue/dhclient
/rescue/disklabel
/rescue/dmesg
/rescue/dump
/rescue/dumpfs
/rescue/dumpon
/rescue/echo
/rescue/ed
/rescue/ex
/rescue/expr
/rescue/fastboot
/rescue/fasthalt
/rescue/fdisk
/rescue/fsck
/rescue/fsck_4.2bsd
/rescue/fsck_ffs
/rescue/fsck_msdosfs
/rescue/fsck_ufs
/rescue/fsdb
/rescue/fsirand
/rescue/gbde
/rescue/geom
/rescue/getfacl
/rescue/glabel
/rescue/gpart
/rescue/groups
/rescue/gunzip
/rescue/gzcat
/rescue/gzip
/rescue/halt
/rescue/head
/rescue/hostname
/rescue/id
/rescue/ifconfig
/rescue/init
/rescue/ipf
/rescue/iscsictl
/rescue/iscsid
/rescue/kenv
/rescue/kill
/rescue/kldconfig
/rescue/kldload
/rescue/kldstat
/rescue/kldunload
/rescue/ldconfig
/rescue/less
/rescue/link
/rescue/ln
/rescue/ls
/rescue/lzcat
/rescue/lzma
/rescue/md5
/rescue/mdconfig
/rescue/mdmfs
/rescue/mkdir
/rescue/mknod
/rescue/more
/rescue/mount
/rescue/mount_cd9660
/rescue/mount_msdosfs
/rescue/mount_nfs
/rescue/mount_nullfs
/rescue/mount_udf
/rescue/mount_unionfs
/rescue/mt
/rescue/mv
/rescue/nc
/rescue/newfs
/rescue/newfs_msdos
/rescue/nos-tun
/rescue/pgrep
/rescue/ping
/rescue/ping6
/rescue/pkill
/rescue/poweroff
/rescue/ps
/rescue/pwd
/rescue/rcorder
/rescue/rdump
/rescue/realpath
/rescue/reboot
/rescue/red
/rescue/rescue
/rescue/restore
/rescue/rm
/rescue/rmdir
/rescue/route
/rescue/routed
/rescue/rrestore
/rescue/rtquery
/rescue/rtsol
/rescue/savecore
/rescue/sed
/rescue/setfacl
/rescue/sh
/rescue/shutdown
/rescue/sleep
/rescue/spppcontrol
/rescue/stty
/rescue/swapon
/rescue/sync
/rescue/sysctl
/rescue/tail
/rescue/tar
/rescue/tcsh
/rescue/tee
/rescue/test
/rescue/tunefs
/rescue/umount
/rescue/unlink
/rescue/unlzma
/rescue/unxz
/rescue/unzstd
/rescue/vi
/rescue/whoami
/rescue/xz
/rescue/xzcat
/rescue/zcat
/rescue/zdb
/rescue/zfs
/rescue/zpool
/rescue/zstd
/rescue/zstdcat
/rescue/zstdmt
/sbin/fsck_4.2bsd
/sbin/fsck_ffs
/sbin/fsck_ufs
/sbin/fsdb
/sbin/ggatec
/usr/bin/bc
/usr/bin/dc
/usr/bin/openssl
/usr/bin/tail
/usr/include/net80211/ieee80211_input.h
/usr/include/openssl/opensslv.h
/usr/include/private/event1/event.h
/usr/lib/libalias.a
/usr/lib/libalias_p.a
/usr/lib/libcrypto.a
/usr/lib/libcrypto_p.a
/usr/lib/libfetch.a
/usr/lib/libfetch.so.6
/usr/lib/libfetch_p.a
/usr/lib/libprivateevent1.a
/usr/lib/libprivateevent1.so.1
/usr/lib/libprivateevent1_p.a
/usr/lib/libradius.a
/usr/lib/libradius.so.4
/usr/lib/libradius_p.a
/usr/lib/libssl.a
/usr/lib/libssl.so.111
/usr/lib/libssl_p.a
/usr/lib/libz.a
/usr/lib/libz_p.a
/usr/lib/libzpool.a
/usr/sbin/bhyve
/usr/sbin/ftp-proxy
/usr/sbin/hostapd
/usr/sbin/ntp-keygen
/usr/sbin/wpa_cli
/usr/sbin/wpa_supplicant
/usr/sbin/ypldap
/usr/sbin/zdb
/usr/share/certs/trusted/ACCVRAIZ1.pem
/usr/share/certs/trusted/AC_RAIZ_FNMT-RCM.pem
/usr/share/certs/trusted/Actalis_Authentication_Root_CA.pem
/usr/share/certs/trusted/AffirmTrust_Commercial.pem
/usr/share/certs/trusted/AffirmTrust_Networking.pem
/usr/share/certs/trusted/AffirmTrust_Premium.pem
/usr/share/certs/trusted/AffirmTrust_Premium_ECC.pem
/usr/share/certs/trusted/Amazon_Root_CA_1.pem
/usr/share/certs/trusted/Amazon_Root_CA_2.pem
/usr/share/certs/trusted/Amazon_Root_CA_3.pem
/usr/share/certs/trusted/Amazon_Root_CA_4.pem
/usr/share/certs/trusted/Atos_TrustedRoot_2011.pem
/usr/share/certs/trusted/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
/usr/share/certs/trusted/Baltimore_CyberTrust_Root.pem
/usr/share/certs/trusted/Buypass_Class_2_Root_CA.pem
/usr/share/certs/trusted/Buypass_Class_3_Root_CA.pem
/usr/share/certs/trusted/CA_Disig_Root_R2.pem
/usr/share/certs/trusted/CFCA_EV_ROOT.pem
/usr/share/certs/trusted/COMODO_Certification_Authority.pem
/usr/share/certs/trusted/COMODO_ECC_Certification_Authority.pem
/usr/share/certs/trusted/COMODO_RSA_Certification_Authority.pem
/usr/share/certs/trusted/Certigna.pem
/usr/share/certs/trusted/Certigna_Root_CA.pem
/usr/share/certs/trusted/Certum_Trusted_Network_CA.pem
/usr/share/certs/trusted/Certum_Trusted_Network_CA_2.pem
/usr/share/certs/trusted/Comodo_AAA_Services_root.pem
/usr/share/certs/trusted/Cybertrust_Global_Root.pem
/usr/share/certs/trusted/D-TRUST_Root_Class_3_CA_2_2009.pem
/usr/share/certs/trusted/D-TRUST_Root_Class_3_CA_2_EV_2009.pem
/usr/share/certs/trusted/DST_Root_CA_X3.pem
/usr/share/certs/trusted/DigiCert_Assured_ID_Root_CA.pem
/usr/share/certs/trusted/DigiCert_Assured_ID_Root_G2.pem
/usr/share/certs/trusted/DigiCert_Assured_ID_Root_G3.pem
/usr/share/certs/trusted/DigiCert_Global_Root_CA.pem
/usr/share/certs/trusted/DigiCert_Global_Root_G2.pem
/usr/share/certs/trusted/DigiCert_Global_Root_G3.pem
/usr/share/certs/trusted/DigiCert_High_Assurance_EV_Root_CA.pem
/usr/share/certs/trusted/DigiCert_Trusted_Root_G4.pem
/usr/share/certs/trusted/E-Tugra_Certification_Authority.pem
/usr/share/certs/trusted/Entrust_Root_Certification_Authority.pem
/usr/share/certs/trusted/Entrust_Root_Certification_Authority_-_EC1.pem
/usr/share/certs/trusted/Entrust_Root_Certification_Authority_-_G2.pem
/usr/share/certs/trusted/Entrust_Root_Certification_Authority_-_G4.pem
/usr/share/certs/trusted/Entrust_net_Premium_2048_Secure_Server_CA.pem
/usr/share/certs/trusted/GDCA_TrustAUTH_R5_ROOT.pem
/usr/share/certs/trusted/GTS_Root_R1.pem
/usr/share/certs/trusted/GTS_Root_R2.pem
/usr/share/certs/trusted/GTS_Root_R3.pem
/usr/share/certs/trusted/GTS_Root_R4.pem
/usr/share/certs/trusted/GlobalSign_ECC_Root_CA_-_R4.pem
/usr/share/certs/trusted/GlobalSign_ECC_Root_CA_-_R5.pem
/usr/share/certs/trusted/GlobalSign_Root_CA.pem
/usr/share/certs/trusted/GlobalSign_Root_CA_-_R2.pem
/usr/share/certs/trusted/GlobalSign_Root_CA_-_R3.pem
/usr/share/certs/trusted/GlobalSign_Root_CA_-_R6.pem
/usr/share/certs/trusted/Go_Daddy_Class_2_CA.pem
/usr/share/certs/trusted/Go_Daddy_Root_Certificate_Authority_-_G2.pem
/usr/share/certs/trusted/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem
/usr/share/certs/trusted/Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
/usr/share/certs/trusted/Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem
/usr/share/certs/trusted/Hongkong_Post_Root_CA_1.pem
/usr/share/certs/trusted/Hongkong_Post_Root_CA_3.pem
/usr/share/certs/trusted/ISRG_Root_X1.pem
/usr/share/certs/trusted/IdenTrust_Commercial_Root_CA_1.pem
/usr/share/certs/trusted/IdenTrust_Public_Sector_Root_CA_1.pem
/usr/share/certs/trusted/Izenpe_com.pem
/usr/share/certs/trusted/Microsec_e-Szigno_Root_CA_2009.pem
/usr/share/certs/trusted/Microsoft_ECC_Root_Certificate_Authority_2017.pem
/usr/share/certs/trusted/Microsoft_RSA_Root_Certificate_Authority_2017.pem
/usr/share/certs/trusted/NAVER_Global_Root_Certification_Authority.pem
/usr/share/certs/trusted/NetLock_Arany__Class_Gold__F__tan__s__tv__ny.pem
/usr/share/certs/trusted/Network_Solutions_Certificate_Authority.pem
/usr/share/certs/trusted/OISTE_WISeKey_Global_Root_GB_CA.pem
/usr/share/certs/trusted/OISTE_WISeKey_Global_Root_GC_CA.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_1_G3.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_2.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_2_G3.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_3.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_3_G3.pem
/usr/share/certs/trusted/SSL_com_EV_Root_Certification_Authority_ECC.pem
/usr/share/certs/trusted/SSL_com_EV_Root_Certification_Authority_RSA_R2.pem
/usr/share/certs/trusted/SSL_com_Root_Certification_Authority_ECC.pem
/usr/share/certs/trusted/SSL_com_Root_Certification_Authority_RSA.pem
/usr/share/certs/trusted/SZAFIR_ROOT_CA2.pem
/usr/share/certs/trusted/SecureSign_RootCA11.pem
/usr/share/certs/trusted/SecureTrust_CA.pem
/usr/share/certs/trusted/Secure_Global_CA.pem
/usr/share/certs/trusted/Security_Communication_RootCA2.pem
/usr/share/certs/trusted/Security_Communication_Root_CA.pem
/usr/share/certs/trusted/Staat_der_Nederlanden_EV_Root_CA.pem
/usr/share/certs/trusted/Starfield_Class_2_CA.pem
/usr/share/certs/trusted/Starfield_Root_Certificate_Authority_-_G2.pem
/usr/share/certs/trusted/Starfield_Services_Root_Certificate_Authority_-_G2.pem
/usr/share/certs/trusted/SwissSign_Gold_CA_-_G2.pem
/usr/share/certs/trusted/SwissSign_Silver_CA_-_G2.pem
/usr/share/certs/trusted/T-TeleSec_GlobalRoot_Class_2.pem
/usr/share/certs/trusted/T-TeleSec_GlobalRoot_Class_3.pem
/usr/share/certs/trusted/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem
/usr/share/certs/trusted/TWCA_Global_Root_CA.pem
/usr/share/certs/trusted/TWCA_Root_Certification_Authority.pem
/usr/share/certs/trusted/TeliaSonera_Root_CA_v1.pem
/usr/share/certs/trusted/TrustCor_ECA-1.pem
/usr/share/certs/trusted/TrustCor_RootCert_CA-1.pem
/usr/share/certs/trusted/TrustCor_RootCert_CA-2.pem
/usr/share/certs/trusted/Trustwave_Global_Certification_Authority.pem
/usr/share/certs/trusted/Trustwave_Global_ECC_P256_Certification_Authority.pem
/usr/share/certs/trusted/Trustwave_Global_ECC_P384_Certification_Authority.pem
/usr/share/certs/trusted/UCA_Extended_Validation_Root.pem
/usr/share/certs/trusted/UCA_Global_G2_Root.pem
/usr/share/certs/trusted/USERTrust_ECC_Certification_Authority.pem
/usr/share/certs/trusted/USERTrust_RSA_Certification_Authority.pem
/usr/share/certs/trusted/XRamp_Global_CA_Root.pem
/usr/share/certs/trusted/certSIGN_ROOT_CA.pem
/usr/share/certs/trusted/certSIGN_Root_CA_G2.pem
/usr/share/certs/trusted/e-Szigno_Root_CA_2017.pem
/usr/share/certs/trusted/ePKI_Root_Certification_Authority.pem
/usr/share/certs/trusted/emSign_ECC_Root_CA_-_C3.pem
/usr/share/certs/trusted/emSign_ECC_Root_CA_-_G3.pem
/usr/share/certs/trusted/emSign_Root_CA_-_C1.pem
/usr/share/certs/trusted/emSign_Root_CA_-_G1.pem
/usr/share/zoneinfo/Africa/Accra
/usr/share/zoneinfo/America/Anguilla
/usr/share/zoneinfo/America/Antigua
/usr/share/zoneinfo/America/Aruba
/usr/share/zoneinfo/America/Atikokan
/usr/share/zoneinfo/America/Barbados
/usr/share/zoneinfo/America/Blanc-Sablon
/usr/share/zoneinfo/America/Coral_Harbour
/usr/share/zoneinfo/America/Creston
/usr/share/zoneinfo/America/Curacao
/usr/share/zoneinfo/America/Dominica
/usr/share/zoneinfo/America/Grenada
/usr/share/zoneinfo/America/Guadeloupe
/usr/share/zoneinfo/America/Guyana
/usr/share/zoneinfo/America/Kralendijk
/usr/share/zoneinfo/America/Lower_Princes
/usr/share/zoneinfo/America/Marigot
/usr/share/zoneinfo/America/Montserrat
/usr/share/zoneinfo/America/Nassau
/usr/share/zoneinfo/America/Port_of_Spain
/usr/share/zoneinfo/America/Punta_Arenas
/usr/share/zoneinfo/America/Santiago
/usr/share/zoneinfo/America/St_Barthelemy
/usr/share/zoneinfo/America/St_Kitts
/usr/share/zoneinfo/America/St_Lucia
/usr/share/zoneinfo/America/St_Thomas
/usr/share/zoneinfo/America/St_Vincent
/usr/share/zoneinfo/America/Tortola
/usr/share/zoneinfo/America/Virgin
/usr/share/zoneinfo/Antarctica/DumontDUrville
/usr/share/zoneinfo/Antarctica/Syowa
/usr/share/zoneinfo/Asia/Amman
/usr/share/zoneinfo/Asia/Gaza
/usr/share/zoneinfo/Asia/Hebron
/usr/share/zoneinfo/Atlantic/Azores
/usr/share/zoneinfo/Atlantic/Madeira
/usr/share/zoneinfo/Chile/Continental
/usr/share/zoneinfo/Europe/Kiev
/usr/share/zoneinfo/Europe/Lisbon
/usr/share/zoneinfo/Europe/Simferopol
/usr/share/zoneinfo/Europe/Uzhgorod
/usr/share/zoneinfo/Europe/Zaporozhye
/usr/share/zoneinfo/Pacific/Apia
/usr/share/zoneinfo/Pacific/Enderbury
/usr/share/zoneinfo/Pacific/Fiji
/usr/share/zoneinfo/Pacific/Niue
/usr/share/zoneinfo/Pacific/Rarotonga
/usr/share/zoneinfo/Pacific/Tongatapu
/usr/share/zoneinfo/Portugal
/usr/share/zoneinfo/zone.tab
/usr/share/zoneinfo/zone1970.tab
WARNING: FreeBSD 13.0-RELEASE is approaching its End-of-Life date.
It is strongly recommended that you upgrade to a newer
release within the next 1 month.
Installing updates...Scanning //usr/share/certs/blacklisted for certificates...
Scanning //usr/share/certs/trusted for certificates...
done.
=====> Stop the pot nextcloud-nginx-nomad-amd64-13_0
=====> Remove epair0[a|b] network interfaces
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/dev
=====> Flavour: nextcloud-nginx-nomad
=====> Executing nextcloud-nginx-nomad pot commands on nextcloud-nginx-nomad-amd64-13_0
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
=====> Source /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/nginx.conf copied in the pot nextcloud-nginx-nomad-amd64-13_0
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
=====> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/dev is already unmounted
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
=====> Source /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/99-custom.ini copied in the pot nextcloud-nginx-nomad-amd64-13_0
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
=====> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/dev is already unmounted
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
=====> Source /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/S3ObjectTrait.patch copied in the pot nextcloud-nginx-nomad-amd64-13_0
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
=====> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/dev is already unmounted
###> Flavor nextcloud-nginx-nomad: line not valid - ignoring
=====> Starting nextcloud-nginx-nomad-amd64-13_0 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
===> Starting the pot nextcloud-nginx-nomad-amd64-13_0
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=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:e2:bc:9d:34:0b
inet 10.192.0.5 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
Updating /var/run/os-release done.
Creating and/or trimming log files.
Clearing /tmp (X related).
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.
Mon Jun 13 19:08:18 UTC 2022
/usr/local/etc/pot/flavours/nextcloud-nginx-nomad.sh -> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp/nextcloud-nginx-nomad.sh
=====> Executing nextcloud-nginx-nomad script on nextcloud-nginx-nomad-amd64-13_0
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.17.5_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.17.5_1: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:13:amd64/quarterly, 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: Disable sshd
sshd disabled in /etc/rc.conf
Step 6: Create /usr/local/etc/rc.d
Step 7: Install package nginx
Updating FreeBSD repository catalogue...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 31195 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 2 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
nginx: 1.20.2_9,2
pcre: 8.45_1
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_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.20.2_9,2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching pcre-8.45_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing pcre-8.45_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting pcre-8.45_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing nginx-1.20.2_9,2...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.20.2_9,2: .......... done
=====
Message from nginx-1.20.2_9,2:
--
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 8: Install package mariadb105-client
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
indexinfo: 0.3.1
libedit: 3.1.20210910,1
libiconv: 1.16
mariadb105-client: 10.5.16
pcre2: 10.39_1
readline: 8.1.2
Number of packages to be installed: 6
The process will require 60 MiB more space.
4 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/6] Fetching mariadb105-client-10.5.16.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/6] Fetching readline-8.1.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/6] Fetching indexinfo-0.3.1.pkg: . done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/6] Fetching pcre2-10.39_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/6] Fetching libedit-3.1.20210910,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/6] Fetching libiconv-1.16.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/6] Installing indexinfo-0.3.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/6] Extracting indexinfo-0.3.1: .... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/6] Installing readline-8.1.2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/6] Extracting readline-8.1.2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/6] Installing pcre2-10.39_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/6] Extracting pcre2-10.39_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/6] Installing libedit-3.1.20210910,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/6] Extracting libedit-3.1.20210910,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/6] Installing libiconv-1.16...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/6] Extracting libiconv-1.16: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/6] Installing mariadb105-client-10.5.16...
===> Creating groups.
Creating group 'mysql' with gid '88'.
===> Creating users
Creating user 'mysql' with uid '88'.
===> Creating homedir(s)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/6] Extracting mariadb105-client-10.5.16: .......... done
=====
Message from mariadb105-client-10.5.16:
--
MariaDB respects hier(7) and doesn't check /etc and /etc/mysql for
my.cnf. Please move existing my.cnf files from those paths to
/usr/local/etc/mysql or /usr/local/etc. Sample
configuration files are provided in /usr/local/etc/mysql
and /usr/local/etc/mysql/conf.d.
The rc(8) script no longer uses /var/db/mysql/my.cnf for configuration
nor /var/db/mysql for logs and PID-file.
This port does NOT include the mytop perl script, this is included in
the MariaDB tarball but the most recent version can be found in the
databases/mytop port
Step 9: Install package postgresql13-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:
gettext-runtime: 0.21
postgresql13-client: 13.6
Number of packages to be installed: 2
The process will require 13 MiB more space.
3 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching postgresql13-client-13.6.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching gettext-runtime-0.21.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing gettext-runtime-0.21...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting gettext-runtime-0.21: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing postgresql13-client-13.6...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting postgresql13-client-13.6: .......... done
=====
Message from postgresql13-client-13.6:
--
The PostgreSQL port has a collection of "side orders":
postgresql-docs
For all of the html documentation
p5-Pg
A perl5 API for client access to PostgreSQL databases.
postgresql-tcltk
If you want tcl/tk client support.
postgresql-jdbc
For Java JDBC support.
postgresql-odbc
For client access from unix applications using ODBC as access
method. Not needed to access unix PostgreSQL servers from Win32
using ODBC. See below.
ruby-postgres, py-psycopg2
For client access to PostgreSQL databases using the ruby & python
languages.
postgresql-plperl, postgresql-pltcl & postgresql-plruby
For using perl5, tcl & ruby as procedural languages.
postgresql-contrib
Lots of contributed utilities, postgresql functions and
datatypes. There you find pg_standby, pgcrypto and many other cool
things.
etc...
Step 10: 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.14
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_0.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching memcached-1.6.14.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching cyrus-sasl-2.1.28.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching libevent-2.1.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.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_0.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting cyrus-sasl-2.1.28: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Installing libevent-2.1.12...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting libevent-2.1.12: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Installing memcached-1.6.14...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting memcached-1.6.14: .......... 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 11: Install package fontconfig
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:
expat: 2.4.8
fontconfig: 2.13.94_2,1
freetype2: 2.11.1
png: 1.6.37_1
Number of packages to be installed: 4
The process will require 10 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching fontconfig-2.13.94_2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching expat-2.4.8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching freetype2-2.11.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching png-1.6.37_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/4] Installing png-1.6.37_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting png-1.6.37_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/4] Installing expat-2.4.8...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting expat-2.4.8: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/4] Installing freetype2-2.11.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting freetype2-2.11.1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/4] Installing fontconfig-2.13.94_2,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting fontconfig-2.13.94_2,1: .......... done
Running fc-cache to build fontconfig cache...
=====
Message from freetype2-2.11.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 12: 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 13: 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
232 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching giflib-5.2.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing giflib-5.2.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting giflib-5.2.1: .......... done
Step 14: 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.2.1
Number of packages to be installed: 1
The process will require 3 MiB more space.
479 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching gmp-6.2.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing gmp-6.2.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting gmp-6.2.1: .......... done
Step 15: 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: 70.1_1,1
Number of packages to be installed: 1
The process will require 50 MiB more space.
11 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching icu-70.1_1,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing icu-70.1_1,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting icu-70.1_1,1: .......... done
Step 16: 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
73 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jbigkit-2.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jbigkit-2.1_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jbigkit-2.1_1: .......... done
Step 17: 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: 2.1.3
Number of packages to be installed: 1
The process will require 2 MiB more space.
364 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jpeg-turbo-2.1.3.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jpeg-turbo-2.1.3...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jpeg-turbo-2.1.3: .......... done
Step 18: 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
65 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libargon2-20190702.pkg: ......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing libargon2-20190702...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libargon2-20190702: .......... done
Step 19: 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.9.4
libgpg-error: 1.44
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_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libgcrypt-1.9.4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libgpg-error-1.44.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libgpg-error-1.44...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libgpg-error-1.44: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing libgcrypt-1.9.4...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting libgcrypt-1.9.4: .......... done
Step 20: Install package libgd
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:
libgd: 2.3.3,1
tiff: 4.3.0
webp: 1.2.2
Number of packages to be installed: 3
The process will require 7 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching libgd-2.3.3,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching webp-1.2.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching tiff-4.3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/3] Installing tiff-4.3.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting tiff-4.3.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Installing webp-1.2.2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting webp-1.2.2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Installing libgd-2.3.3,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting libgd-2.3.3,1: .......... done
Step 21: 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 22: 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.9.13_1
libxslt: 1.1.35_2
Number of packages to be installed: 2
The process will require 14 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libxslt-1.1.35_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libxml2-2.9.13_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libxml2-2.9.13_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libxml2-2.9.13_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing libxslt-1.1.35_2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting libxslt-1.1.35_2: .......... done
Step 23: 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.7.3
Number of packages to be installed: 1
214 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libzip-1.7.3.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing libzip-1.7.3...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libzip-1.7.3: .......... done
Step 24: 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.7.1
Number of packages to be installed: 1
The process will require 1 MiB more space.
230 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching oniguruma-6.9.7.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing oniguruma-6.9.7.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting oniguruma-6.9.7.1: .......... done
Step 25: Install package openldap24-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:
openldap24-client: 2.4.59_4
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_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching openldap24-client-2.4.59_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing openldap24-client-2.4.59_4...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting openldap24-client-2.4.59_4: .......... done
=====
Message from openldap24-client-2.4.59_4:
--
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 26: 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 27: 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 28: 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 29: 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: 1.8.0,1
Number of packages to be installed: 1
67 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching pkgconf-1.8.0,1.pkg: ......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing pkgconf-1.8.0,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting pkgconf-1.8.0,1: .......... done
Step 30: Install package php74
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:
php74: 7.4.29
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_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-7.4.29: .......... done
=====
Message from php74-7.4.29:
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 31: Install package php74-extensions
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 19 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php74-ctype: 7.4.29
php74-dom: 7.4.29
php74-extensions: 1.0
php74-filter: 7.4.29
php74-iconv: 7.4.29
php74-json: 7.4.29
php74-opcache: 7.4.29
php74-pdo: 7.4.29
php74-pdo_sqlite: 7.4.29
php74-phar: 7.4.29
php74-posix: 7.4.29
php74-session: 7.4.29
php74-simplexml: 7.4.29
php74-sqlite3: 7.4.29
php74-tokenizer: 7.4.29
php74-xml: 7.4.29
php74-xmlreader: 7.4.29
php74-xmlwriter: 7.4.29
sqlite3: 3.37.2,1
Number of packages to be installed: 19
The process will require 6 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/19] Fetching php74-extensions-1.0.pkg: . done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/19] Fetching php74-session-7.4.29.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/19] Fetching php74-opcache-7.4.29.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/19] Fetching php74-xmlwriter-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/19] Fetching php74-xmlreader-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/19] Fetching php74-dom-7.4.29.pkg: ....... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/19] Fetching php74-xml-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/19] Fetching php74-simplexml-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/19] Fetching php74-ctype-7.4.29.pkg: . done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/19] Fetching php74-posix-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/19] Fetching php74-filter-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/19] Fetching php74-tokenizer-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/19] Fetching php74-json-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/19] Fetching php74-sqlite3-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/19] Fetching sqlite3-3.37.2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/19] Fetching php74-pdo_sqlite-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/19] Fetching php74-pdo-7.4.29.pkg: ...... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/19] Fetching php74-iconv-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/19] Fetching php74-phar-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/19] Installing php74-dom-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/19] Extracting php74-dom-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/19] Installing sqlite3-3.37.2,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/19] Extracting sqlite3-3.37.2,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/19] Installing php74-pdo-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/19] Extracting php74-pdo-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/19] Installing php74-session-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/19] Extracting php74-session-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/19] Installing php74-opcache-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/19] Extracting php74-opcache-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/19] Installing php74-xmlwriter-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/19] Extracting php74-xmlwriter-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/19] Installing php74-xmlreader-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/19] Extracting php74-xmlreader-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/19] Installing php74-xml-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/19] Extracting php74-xml-7.4.29: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/19] Installing php74-simplexml-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/19] Extracting php74-simplexml-7.4.29: ......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/19] Installing php74-ctype-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/19] Extracting php74-ctype-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/19] Installing php74-posix-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/19] Extracting php74-posix-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/19] Installing php74-filter-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/19] Extracting php74-filter-7.4.29: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/19] Installing php74-tokenizer-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/19] Extracting php74-tokenizer-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/19] Installing php74-json-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/19] Extracting php74-json-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/19] Installing php74-sqlite3-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/19] Extracting php74-sqlite3-7.4.29: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/19] Installing php74-pdo_sqlite-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/19] Extracting php74-pdo_sqlite-7.4.29: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/19] Installing php74-iconv-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/19] Extracting php74-iconv-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/19] Installing php74-phar-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/19] Extracting php74-phar-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/19] Installing php74-extensions-1.0...
=====
Message from php74-dom-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-dom.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-pdo-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pdo.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-session-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-18-session.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-opcache-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-10-opcache.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-xmlwriter-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xmlwriter.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-xmlreader-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xmlreader.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-xml-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xml.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-simplexml-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-simplexml.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-ctype-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ctype.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-posix-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-posix.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-filter-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-filter.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-tokenizer-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-tokenizer.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-json-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-json.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-sqlite3-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-sqlite3.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-pdo_sqlite-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_sqlite.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-iconv-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-iconv.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-phar-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-phar.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-extensions-1.0:
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 32: Install package php74-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:
php74-bcmath: 7.4.29
Number of packages to be installed: 1
20 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-bcmath-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-bcmath-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-bcmath-7.4.29: .......... done
=====
Message from php74-bcmath-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-bcmath.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 33: Install package php74-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:
php74-bz2: 7.4.29
Number of packages to be installed: 1
11 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-bz2-7.4.29.pkg: .. done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-bz2-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-bz2-7.4.29: ....... done
=====
Message from php74-bz2-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-bz2.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 34: Install package php74-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 35: Install package php74-curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 8 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
ca_root_nss: 3.76
curl: 7.83.1
libidn2: 2.3.2
libnghttp2: 1.46.0
libpsl: 0.21.1_3
libssh2: 1.10.0,3
libunistring: 1.0
php74-curl: 7.4.29
Number of packages to be installed: 8
The process will require 10 MiB more space.
3 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/8] Fetching php74-curl-7.4.29.pkg: .... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/8] Fetching curl-7.83.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/8] Fetching libnghttp2-1.46.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/8] Fetching libssh2-1.10.0,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/8] Fetching ca_root_nss-3.76.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/8] Fetching libpsl-0.21.1_3.pkg: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/8] Fetching libidn2-2.3.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/8] Fetching libunistring-1.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/8] Installing libunistring-1.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/8] Extracting libunistring-1.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/8] Installing libidn2-2.3.2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/8] Extracting libidn2-2.3.2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/8] Installing libnghttp2-1.46.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/8] Extracting libnghttp2-1.46.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/8] Installing libssh2-1.10.0,3...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/8] Extracting libssh2-1.10.0,3: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/8] Installing ca_root_nss-3.76...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/8] Extracting ca_root_nss-3.76: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/8] Installing libpsl-0.21.1_3...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/8] Extracting libpsl-0.21.1_3: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/8] Installing curl-7.83.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/8] Extracting curl-7.83.1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/8] Installing php74-curl-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/8] Extracting php74-curl-7.4.29: ....... done
=====
Message from ca_root_nss-3.76:
--
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
=====
Message from php74-curl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-curl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 36: Install package php74-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 37: Install package php74-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:
php74-exif: 7.4.29
Number of packages to be installed: 1
29 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-exif-7.4.29.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-exif-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-exif-7.4.29: ....... done
=====
Message from php74-exif-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-exif.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 38: Install package php74-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:
php74-fileinfo: 7.4.29
Number of packages to be installed: 1
The process will require 6 MiB more space.
268 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-fileinfo-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-fileinfo-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-fileinfo-7.4.29: .......... done
=====
Message from php74-fileinfo-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-fileinfo.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 39: Install package php74-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 40: Install package php74-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:
php74-ftp: 7.4.29
Number of packages to be installed: 1
24 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-ftp-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-ftp-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-ftp-7.4.29: ........ done
=====
Message from php74-ftp-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ftp.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 41: Install package php74-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:
php74-gd: 7.4.29
Number of packages to be installed: 1
30 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-gd-7.4.29.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-gd-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-gd-7.4.29: ........ done
=====
Message from php74-gd-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gd.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 42: Install package php74-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:
php74-gmp: 7.4.29
Number of packages to be installed: 1
20 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-gmp-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-gmp-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-gmp-7.4.29: ........ done
=====
Message from php74-gmp-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gmp.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 43: Install package php74-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 44: Install package php74-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_1
php74-imap: 7.4.29
Number of packages to be installed: 2
The process will require 5 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching php74-imap-7.4.29.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching panda-cclient-20130621_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing panda-cclient-20130621_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting panda-cclient-20130621_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php74-imap-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php74-imap-7.4.29: ....... done
=====
Message from panda-cclient-20130621_1:
--
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 php74-imap-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-imap.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 45: Install package php74-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:
php74-intl: 7.4.29
Number of packages to be installed: 1
124 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-intl-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-intl-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-intl-7.4.29: .......... done
=====
Message from php74-intl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-intl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 46: Install package php74-json
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 47: Install package php74-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:
php74-ldap: 7.4.29
Number of packages to be installed: 1
30 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-ldap-7.4.29.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-ldap-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-ldap-7.4.29: ....... done
=====
Message from php74-ldap-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ldap.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 48: Install package php74-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:
php74-mysqli: 7.4.29
Number of packages to be installed: 1
42 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-mysqli-7.4.29.pkg: ...... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-mysqli-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-mysqli-7.4.29: .......... done
=====
Message from php74-mysqli-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mysqli.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 49: Install package php74-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:
php74-mbstring: 7.4.29
Number of packages to be installed: 1
The process will require 3 MiB more space.
744 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-mbstring-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-mbstring-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-mbstring-7.4.29: .......... done
=====
Message from php74-mbstring-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mbstring.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 50: Install package php74-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 51: Install package php74-openssl
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:
php74-openssl: 7.4.29
Number of packages to be installed: 1
57 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-openssl-7.4.29.pkg: ........ done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-openssl-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-openssl-7.4.29: ....... done
=====
Message from php74-openssl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-openssl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 52: Install package php74-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:
php74-pcntl: 7.4.29
Number of packages to be installed: 1
14 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-pcntl-7.4.29.pkg: .. done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-pcntl-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-pcntl-7.4.29: ........ done
=====
Message from php74-pcntl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pcntl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 53: Install package php74-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 54: Install package php74-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:
php74-pdo_mysql: 7.4.29
Number of packages to be installed: 1
17 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-pdo_mysql-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-pdo_mysql-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-pdo_mysql-7.4.29: ......... done
=====
Message from php74-pdo_mysql-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_mysql.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 55: Install package php74-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:
php74-pecl-APCu: 5.1.21
Number of packages to be installed: 1
50 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-pecl-APCu-5.1.21.pkg: ....... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-pecl-APCu-5.1.21...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-pecl-APCu-5.1.21: .......... done
=====
Message from php74-pecl-APCu-5.1.21:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-apcu.ini
Step 56: Install package php74-pecl-memcached
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:
libmemcached: 1.0.18_7
php74-pecl-memcached: 3.1.5_1
Number of packages to be installed: 2
The process will require 5 MiB more space.
834 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching php74-pecl-memcached-3.1.5_1.pkg: ...... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libmemcached-1.0.18_7.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libmemcached-1.0.18_7...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libmemcached-1.0.18_7: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php74-pecl-memcached-3.1.5_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php74-pecl-memcached-3.1.5_1: .......... done
=====
Message from php74-pecl-memcached-3.1.5_1:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-memcached.ini
Step 57: Install package php74-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:
php74-pecl-redis: 5.3.5
Number of packages to be installed: 1
154 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-pecl-redis-5.3.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-pecl-redis-5.3.5...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-pecl-redis-5.3.5: .......... done
=====
Message from php74-pecl-redis-5.3.5:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-redis.ini
Step 58: Install package php74-pecl-imagick
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 45 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
ImageMagick6-nox11: 6.9.12.44_1,1
avahi-app: 0.8
cups: 2.4.2
dbus: 1.12.20_5
dbus-glib: 0.112
fftw3: 3.3.10
fribidi: 1.0.11
gdbm: 1.23
ghostscript9-agpl-base: 9.55.0_1
glib: 2.70.4_3,2
gnome_subr: 1.0
gnutls: 3.6.16
graphite2: 1.3.14
gsfonts: 8.11_8
harfbuzz: 4.2.1
jbig2dec: 0.19
lcms2: 2.12
libICE: 1.0.10,1
libSM: 1.2.3,1
libX11: 1.7.2,1
libXau: 1.0.9
libXdmcp: 1.1.3
libdaemon: 0.14_1
libffi: 3.3_1
libidn: 1.35
liblqr-1: 0.4.2
libltdl: 2.4.6
libpaper: 1.1.28
libpthread-stubs: 0.4
libraqm: 0.9.0
libraw: 0.20.2_2
libtasn1: 4.18.0
libwmf-nox11: 0.2.12
libxcb: 1.14_1
mpdecimal: 2.5.1
nettle: 3.7.3
openjpeg: 2.5.0
p11-kit: 0.24.1
perl5: 5.32.1_1
php74-pecl-imagick: 3.5.1
poppler-data: 0.4.11
python38: 3.8.13
tpm-emulator: 0.7.4_2
trousers: 0.3.14_3
xorgproto: 2021.5
Number of packages to be installed: 45
The process will require 377 MiB more space.
89 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/45] Fetching php74-pecl-imagick-3.5.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/45] Fetching ImageMagick6-nox11-6.9.12.44_1,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/45] Fetching libraqm-0.9.0.pkg: .... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/45] Fetching harfbuzz-4.2.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/45] Fetching graphite2-1.3.14.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/45] Fetching glib-2.70.4_3,2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/45] Fetching python38-3.8.13.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/45] Fetching mpdecimal-2.5.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/45] Fetching libffi-3.3_1.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/45] Fetching fribidi-1.0.11.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/45] Fetching gsfonts-8.11_8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/45] Fetching ghostscript9-agpl-base-9.55.0_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/45] Fetching libpaper-1.1.28.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/45] Fetching cups-2.4.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/45] Fetching gnutls-3.6.16.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/45] Fetching trousers-0.3.14_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/45] Fetching tpm-emulator-0.7.4_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/45] Fetching p11-kit-0.24.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/45] Fetching libtasn1-4.18.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/45] Fetching nettle-3.7.3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/45] Fetching avahi-app-0.8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/45] Fetching gnome_subr-1.0.pkg: . done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/45] Fetching libdaemon-0.14_1.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [24/45] Fetching dbus-glib-0.112.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [25/45] Fetching dbus-1.12.20_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [26/45] Fetching libX11-1.7.2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [27/45] Fetching libxcb-1.14_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [28/45] Fetching libXdmcp-1.1.3.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [29/45] Fetching xorgproto-2021.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [30/45] Fetching libXau-1.0.9.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [31/45] Fetching libpthread-stubs-0.4.pkg: . done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [32/45] Fetching libSM-1.2.3,1.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [33/45] Fetching libICE-1.0.10,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [34/45] Fetching gdbm-1.23.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [35/45] Fetching poppler-data-0.4.11.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [36/45] Fetching openjpeg-2.5.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [37/45] Fetching lcms2-2.12.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [38/45] Fetching jbig2dec-0.19.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [39/45] Fetching libidn-1.35.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [40/45] Fetching fftw3-3.3.10.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [41/45] Fetching perl5-5.32.1_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [42/45] Fetching libwmf-nox11-0.2.12.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [43/45] Fetching libraw-0.20.2_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [44/45] Fetching liblqr-1-0.4.2.pkg: ...... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [45/45] Fetching libltdl-2.4.6.pkg: ..... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/45] Installing xorgproto-2021.5...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/45] Extracting xorgproto-2021.5: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/45] Installing libXdmcp-1.1.3...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/45] Extracting libXdmcp-1.1.3: ......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/45] Installing libXau-1.0.9...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/45] Extracting libXau-1.0.9: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/45] Installing libpthread-stubs-0.4...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/45] Extracting libpthread-stubs-0.4: .... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/45] Installing mpdecimal-2.5.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/45] Extracting mpdecimal-2.5.1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/45] Installing libffi-3.3_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/45] Extracting libffi-3.3_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/45] Installing libxcb-1.14_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/45] Extracting libxcb-1.14_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/45] Installing libICE-1.0.10,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/45] Extracting libICE-1.0.10,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/45] Installing python38-3.8.13...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/45] Extracting python38-3.8.13: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/45] Installing libX11-1.7.2,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/45] Extracting libX11-1.7.2,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/45] Installing libSM-1.2.3,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/45] Extracting libSM-1.2.3,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/45] Installing glib-2.70.4_3,2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/45] Extracting glib-2.70.4_3,2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/45] Installing tpm-emulator-0.7.4_2...
===> Creating groups.
Creating group '_tss' with gid '601'.
===> Creating users
Creating user '_tss' with uid '601'.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/45] Extracting tpm-emulator-0.7.4_2: ......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/45] Installing libtasn1-4.18.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/45] Extracting libtasn1-4.18.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/45] Installing dbus-1.12.20_5...
===> Creating groups.
Creating group 'messagebus' with gid '556'.
===> Creating users
Creating user 'messagebus' with uid '556'.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/45] Extracting dbus-1.12.20_5: ......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/45] Installing trousers-0.3.14_3...
===> Creating groups.
Using existing group '_tss'.
===> Creating users
Using existing user '_tss'.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/45] Extracting trousers-0.3.14_3: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/45] Installing p11-kit-0.24.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/45] Extracting p11-kit-0.24.1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/45] Installing nettle-3.7.3...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/45] Extracting nettle-3.7.3: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/45] Installing gnome_subr-1.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/45] Extracting gnome_subr-1.0: .... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/45] Installing libdaemon-0.14_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/45] Extracting libdaemon-0.14_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/45] Installing dbus-glib-0.112...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/45] Extracting dbus-glib-0.112: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/45] Installing gdbm-1.23...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/45] Extracting gdbm-1.23: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/45] Installing graphite2-1.3.14...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/45] Extracting graphite2-1.3.14: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [24/45] Installing libpaper-1.1.28...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [24/45] Extracting libpaper-1.1.28: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [25/45] Installing gnutls-3.6.16...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [25/45] Extracting gnutls-3.6.16: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [26/45] Installing avahi-app-0.8...
===> Creating groups.
Creating group 'avahi' with gid '558'.
===> Creating users
Creating user 'avahi' with uid '558'.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [26/45] Extracting avahi-app-0.8: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [27/45] Installing lcms2-2.12...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [27/45] Extracting lcms2-2.12: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [28/45] Installing harfbuzz-4.2.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [28/45] Extracting harfbuzz-4.2.1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [29/45] Installing fribidi-1.0.11...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [29/45] Extracting fribidi-1.0.11: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [30/45] Installing cups-2.4.2...
===> Creating groups.
Creating group 'cups' with gid '193'.
===> Creating users
Creating user 'cups' with uid '193'.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [30/45] Extracting cups-2.4.2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [31/45] Installing poppler-data-0.4.11...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [31/45] Extracting poppler-data-0.4.11: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [32/45] Installing openjpeg-2.5.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [32/45] Extracting openjpeg-2.5.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [33/45] Installing jbig2dec-0.19...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [33/45] Extracting jbig2dec-0.19: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [34/45] Installing libidn-1.35...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [34/45] Extracting libidn-1.35: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [35/45] Installing libraqm-0.9.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [35/45] Extracting libraqm-0.9.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [36/45] Installing gsfonts-8.11_8...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [36/45] Extracting gsfonts-8.11_8: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [37/45] Installing ghostscript9-agpl-base-9.55.0_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [37/45] Extracting ghostscript9-agpl-base-9.55.0_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [38/45] Installing fftw3-3.3.10...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [38/45] Extracting fftw3-3.3.10: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [39/45] Installing perl5-5.32.1_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [39/45] Extracting perl5-5.32.1_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [40/45] Installing libwmf-nox11-0.2.12...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [40/45] Extracting libwmf-nox11-0.2.12: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [41/45] Installing libraw-0.20.2_2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [41/45] Extracting libraw-0.20.2_2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [42/45] Installing liblqr-1-0.4.2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [42/45] Extracting liblqr-1-0.4.2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [43/45] Installing libltdl-2.4.6...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [43/45] Extracting libltdl-2.4.6: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [44/45] Installing ImageMagick6-nox11-6.9.12.44_1,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [44/45] Extracting ImageMagick6-nox11-6.9.12.44_1,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [45/45] Installing php74-pecl-imagick-3.5.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [45/45] Extracting php74-pecl-imagick-3.5.1: .......... done
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from python38-3.8.13:
--
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:
py38-gdbm databases/py-gdbm@py38
py38-sqlite3 databases/py-sqlite3@py38
py38-tkinter x11-toolkits/py-tkinter@py38
=====
Message from trousers-0.3.14_3:
--
To run tcsd automatically, add the following line to /etc/rc.conf:
tcsd_enable="YES"
You might want to edit /usr/local/etc/tcsd.conf to reflect your setup.
If you want to use tcsd with software TPM emulator, use the following
configuration in /etc/rc.conf:
tcsd_enable="YES"
tcsd_mode="emulator"
tpmd_enable="YES"
To use TPM, add your_account to '_tss' group like following:
# pw groupmod _tss -m your_account
=====
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 ghostscript9-agpl-base-9.55.0_1:
--
This package installs a script named dvipdf that depends on dvips. If you
want to use this script you need to install print/tex-dvipsk.
=====
Message from libwmf-nox11-0.2.12:
--
===> NOTICE:
The libwmf-nox11 port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:
https://bugs.freebsd.org/bugzilla
More information about port maintainership is available at:
https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from 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 php74-pecl-imagick-3.5.1:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-imagick.ini
Step 59: Install package php74-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 60: Install package php74-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 61: Install package php74-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 62: Install package php74-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 63: Install package php74-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 64: Install package php74-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 65: Install package php74-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 66: Install package php74-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:
php74-xsl: 7.4.29
Number of packages to be installed: 1
14 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-xsl-7.4.29.pkg: .. done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-xsl-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-xsl-7.4.29: ........ done
=====
Message from php74-xsl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xsl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 67: Install package php74-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:
php74-zip: 7.4.29
Number of packages to be installed: 1
21 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-zip-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-zip-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-zip-7.4.29: ....... done
=====
Message from php74-zip-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zip.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 68: Install package php74-zlib
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php74-zlib: 7.4.29
Number of packages to be installed: 1
18 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-zlib-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-zlib-7.4.29...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-zlib-7.4.29: ....... done
=====
Message from php74-zlib-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zlib.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 69: Install package ImageMagick6-nox11
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 70: Install package libheif
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 13 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
Imath: 3.1.5
aom: 3.3.0_1
brotli: 1.0.9,1
dav1d: 1.0.0
gdk-pixbuf2: 2.40.0_3
highway: 0.16.0_2
libde265: 1.0.8
libheif: 1.12.0.62_1
libjxl: 0.6.1_5
openexr: 3.1.5
shared-mime-info: 2.2_1
vmaf: 2.3.1
x265: 3.4_2
Number of packages to be installed: 13
The process will require 104 MiB more space.
19 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/13] Fetching libheif-1.12.0.62_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/13] Fetching x265-3.4_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/13] Fetching libde265-1.0.8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/13] Fetching dav1d-1.0.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/13] Fetching aom-3.3.0_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/13] Fetching vmaf-2.3.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/13] Fetching libjxl-0.6.1_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/13] Fetching shared-mime-info-2.2_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/13] Fetching gdk-pixbuf2-2.40.0_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/13] Fetching Imath-3.1.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/13] Fetching openexr-3.1.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/13] Fetching highway-0.16.0_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/13] Fetching brotli-1.0.9,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/13] Installing shared-mime-info-2.2_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/13] Extracting shared-mime-info-2.2_1: ......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/13] Installing Imath-3.1.5...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/13] Extracting Imath-3.1.5: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/13] Installing gdk-pixbuf2-2.40.0_3...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/13] Extracting gdk-pixbuf2-2.40.0_3: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/13] Installing openexr-3.1.5...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/13] Extracting openexr-3.1.5: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/13] Installing highway-0.16.0_2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/13] Extracting highway-0.16.0_2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/13] Installing brotli-1.0.9,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/13] Extracting brotli-1.0.9,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/13] Installing vmaf-2.3.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/13] Extracting vmaf-2.3.1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/13] Installing libjxl-0.6.1_5...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/13] Extracting libjxl-0.6.1_5: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/13] Installing x265-3.4_2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/13] Extracting x265-3.4_2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/13] Installing libde265-1.0.8...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/13] Extracting libde265-1.0.8: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/13] Installing dav1d-1.0.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/13] Extracting dav1d-1.0.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/13] Installing aom-3.3.0_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/13] Extracting aom-3.3.0_1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/13] Installing libheif-1.12.0.62_1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/13] Extracting libheif-1.12.0.62_1: .......... done
Building the Shared MIME-Info database cache
Generating gdk-pixbuf modules cache
=====
Message from libjxl-0.6.1_5:
--
Additional packages recommended for new users:
- imlib2-jxl (e.g., feh, scrot)
- kf5-kimageformats (e.g., nomacs, flameshot, skanlite)
- gimp-jxl-plugin
Step 71: Install package ffmpeg
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 23 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
argp-standalone: 1.3_4
ffmpeg: 4.4.2_4,1
lame: 3.100_4
libXext: 1.3.4,1
libXfixes: 6.0.0
libass: 0.15.2
libdrm: 2.4.110,1
libepoll-shim: 0.0.20210418
libogg: 1.3.5,4
libpciaccess: 0.16
libtheora: 1.1.1_7
libudev-devd: 0.5.0
libv4l: 1.23.0
libva: 2.14.0
libvdpau: 1.5
libvorbis: 1.3.7_2,3
libvpx: 1.11.0
libx264: 0.163.3060
opus: 1.3.1
pciids: 20220225
svt-av1: 1.1.0
wayland: 1.20.0_2
xvid: 1.3.7,1
Number of packages to be installed: 23
The process will require 73 MiB more space.
16 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/23] Fetching ffmpeg-4.4.2_4,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/23] Fetching libXext-1.3.4,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/23] Fetching libXfixes-6.0.0.pkg: .. done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/23] Fetching wayland-1.20.0_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/23] Fetching libepoll-shim-0.0.20210418.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/23] Fetching libdrm-2.4.110,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/23] Fetching libpciaccess-0.16.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/23] Fetching pciids-20220225.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/23] Fetching libudev-devd-0.5.0.pkg: ... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/23] Fetching xvid-1.3.7,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/23] Fetching svt-av1-1.1.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/23] Fetching libx264-0.163.3060.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/23] Fetching libvpx-1.11.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/23] Fetching libvdpau-1.5.pkg: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/23] Fetching libva-2.14.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/23] Fetching libv4l-1.23.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/23] Fetching argp-standalone-1.3_4.pkg: ..... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/23] Fetching libtheora-1.1.1_7.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/23] Fetching libvorbis-1.3.7_2,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/23] Fetching libogg-1.3.5,4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/23] Fetching libass-0.15.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/23] Fetching opus-1.3.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/23] Fetching lame-3.100_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/23] Installing pciids-20220225...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/23] Extracting pciids-20220225: ..... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/23] Installing libepoll-shim-0.0.20210418...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/23] Extracting libepoll-shim-0.0.20210418: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/23] Installing libpciaccess-0.16...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/23] Extracting libpciaccess-0.16: ......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/23] Installing libogg-1.3.5,4...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/23] Extracting libogg-1.3.5,4: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/23] Installing libXext-1.3.4,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/23] Extracting libXext-1.3.4,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/23] Installing libXfixes-6.0.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/23] Extracting libXfixes-6.0.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/23] Installing wayland-1.20.0_2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/23] Extracting wayland-1.20.0_2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/23] Installing libdrm-2.4.110,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/23] Extracting libdrm-2.4.110,1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/23] Installing libudev-devd-0.5.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/23] Extracting libudev-devd-0.5.0: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/23] Installing argp-standalone-1.3_4...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/23] Extracting argp-standalone-1.3_4: ......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/23] Installing libvorbis-1.3.7_2,3...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/23] Extracting libvorbis-1.3.7_2,3: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/23] Installing xvid-1.3.7,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/23] Extracting xvid-1.3.7,1: ........ done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/23] Installing svt-av1-1.1.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/23] Extracting svt-av1-1.1.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/23] Installing libx264-0.163.3060...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/23] Extracting libx264-0.163.3060: ......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/23] Installing libvpx-1.11.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/23] Extracting libvpx-1.11.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/23] Installing libvdpau-1.5...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/23] Extracting libvdpau-1.5: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/23] Installing libva-2.14.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/23] Extracting libva-2.14.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/23] Installing libv4l-1.23.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/23] Extracting libv4l-1.23.0: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/23] Installing libtheora-1.1.1_7...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/23] Extracting libtheora-1.1.1_7: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/23] Installing libass-0.15.2...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/23] Extracting libass-0.15.2: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/23] Installing opus-1.3.1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/23] Extracting opus-1.3.1: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/23] Installing lame-3.100_4...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/23] Extracting lame-3.100_4: .......... done
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/23] Installing ffmpeg-4.4.2_4,1...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/23] Extracting ffmpeg-4.4.2_4,1: .......... done
=====
Message from wayland-1.20.0_2:
--
Wayland requires XDG_RUNTIME_DIR to be defined to a path that will
contain "wayland-%d" unix(4) sockets. This is usually handled by
consolekit2 (via ck-launch-session) or pam_xdg (via login).
=====
Message from argp-standalone-1.3_4:
--
===> NOTICE:
The argp-standalone 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 72: 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.
269 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jq-1.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jq-1.6...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jq-1.6: .......... done
Step 73: 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: 6.0
Number of packages to be installed: 1
The process will require 3 MiB more space.
567 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching nano-6.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing nano-6.0...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting nano-6.0: .......... done
Step 74: 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.10
Number of packages to be installed: 1
The process will require 7 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching sudo-1.9.10.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing sudo-1.9.10...
[nextcloud-nginx-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting sudo-1.9.10: .......... done
Nothing to do.
Step 75: Create necessary directories if they don't exist
Step 76: Enable nginx
nginx enabled in /etc/rc.conf
Step 77: Enable php-fpm
php_fpm enabled in /etc/rc.conf
Step 78: Clean cook artifacts
Step 79: Create cook script
Step 80: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 81: Create rc.d script to start cook
creating rc.d script to start cook
Step 82: Make rc.d script to start cook executable
Setting executable bit on cook rc file
=====> Stop the pot nextcloud-nginx-nomad-amd64-13_0
=====> Remove epair0[a|b] network interfaces
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/tmp
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-13_0/m/dev
=====> Flavour: nextcloud-nginx-nomad+1
=====> Executing nextcloud-nginx-nomad+1 pot commands on nextcloud-nginx-nomad-amd64-13_0
=====> No shell script available for the flavour nextcloud-nginx-nomad+1
=====> Flavour: nextcloud-nginx-nomad+2
=====> Executing nextcloud-nginx-nomad+2 pot commands on nextcloud-nginx-nomad-amd64-13_0
=====> No shell script available for the flavour nextcloud-nginx-nomad+2
=====> Flavour: nextcloud-nginx-nomad+3
=====> Executing nextcloud-nginx-nomad+3 pot commands on nextcloud-nginx-nomad-amd64-13_0
=====> No shell script available for the flavour nextcloud-nginx-nomad+3
=====> Flavour: nextcloud-nginx-nomad+4
=====> Executing nextcloud-nginx-nomad+4 pot commands on nextcloud-nginx-nomad-amd64-13_0
=====> No shell script available for the flavour nextcloud-nginx-nomad+4
nextcloud-nginx-nomad-amd64-12_3_0.24:
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/nginx.conf -d /root/nginx.conf
copy-in -s /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/99-custom.ini -d /root/99-custom.ini
copy-in -s /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/S3ObjectTrait.patch -d /root/S3ObjectTrait.patch
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=$(expr "$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" }' \
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
# optionally disable ssh access
step "Disable sshd"
service sshd onedisable || true
step "Create /usr/local/etc/rc.d"
mkdir -p /usr/local/etc/rc.d
step "Install package nginx"
pkg install -y nginx
step "Install package mariadb105-client"
pkg install -y mariadb105-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 openldap24-client"
pkg install -y openldap24-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 php74"
pkg install -y php74
step "Install package php74-extensions"
pkg install -y php74-extensions
step "Install package php74-bcmath"
pkg install -y php74-bcmath
step "Install package php74-bz2"
pkg install -y php74-bz2
step "Install package php74-ctype"
pkg install -y php74-ctype
step "Install package php74-curl"
pkg install -y php74-curl
step "Install package php74-dom"
pkg install -y php74-dom
step "Install package php74-exif"
pkg install -y php74-exif
step "Install package php74-fileinfo"
pkg install -y php74-fileinfo
step "Install package php74-filter"
pkg install -y php74-filter
step "Install package php74-ftp"
pkg install -y php74-ftp
step "Install package php74-gd"
pkg install -y php74-gd
step "Install package php74-gmp"
pkg install -y php74-gmp
step "Install package php74-iconv"
pkg install -y php74-iconv
step "Install package php74-imap"
pkg install -y php74-imap
step "Install package php74-intl"
pkg install -y php74-intl
step "Install package php74-json"
pkg install -y php74-json
step "Install package php74-ldap"
pkg install -y php74-ldap
step "Install package php74-mysqli"
pkg install -y php74-mysqli
step "Install package php74-mbstring"
pkg install -y php74-mbstring
step "Install package php74-opcache"
pkg install -y php74-opcache
step "Install package php74-openssl"
pkg install -y php74-openssl
step "Install package php74-pcntl"
pkg install -y php74-pcntl
step "Install package php74-pdo"
pkg install -y php74-pdo
step "Install package php74-pdo_mysql"
pkg install -y php74-pdo_mysql
step "Install package php74-pecl-APCu"
pkg install -y php74-pecl-APCu
step "Install package php74-pecl-memcached"
pkg install -y php74-pecl-memcached
step "Install package php74-pecl-redis"
pkg install -y php74-pecl-redis
step "Install package php74-pecl-imagick"
pkg install -y php74-pecl-imagick
step "Install package php74-phar"
pkg install -y php74-phar
step "Install package php74-posix"
pkg install -y php74-posix
step "Install package php74-session"
pkg install -y php74-session
step "Install package php74-simplexml"
pkg install -y php74-simplexml
step "Install package php74-xml"
pkg install -y php74-xml
step "Install package php74-xmlreader"
pkg install -y php74-xmlreader
step "Install package php74-xmlwriter"
pkg install -y php74-xmlwriter
step "Install package php74-xsl"
pkg install -y php74-xsl
step "Install package php74-zip"
pkg install -y php74-zip
step "Install package php74-zlib"
pkg install -y php74-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
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"
#sysrc php_fpm_enable="YES"
service php-fpm enable
# ---------- END PACKAGE & MOUNTPOINT SETUP -------------
#
# Create configurations
#
#
# 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
#
# clear any old cook runtime file
step "Clean cook artifacts"
rm -rf /usr/local/bin/cook
# ----------------- BEGIN COOK ------------------
step "Create cook script"
echo "#!/bin/sh
RUNS_IN_NOMAD=$RUNS_IN_NOMAD
# declare this again for the pot image, might work carrying variable through like
# with above
COOKLOG=/var/log/cook.log
# No need to change this, just ensures configuration is done only once
if [ -e /usr/local/etc/pot-is-seasoned ]
then
# If this pot flavour is blocking (i.e. it should not return),
# we block indefinitely
if [ \"\$RUNS_IN_NOMAD\" = \"true\" ]
then
/bin/sh /etc/rc
tail -f /dev/null
fi
exit 0
fi
# ADJUST THIS: STOP SERVICES AS NEEDED BEFORE CONFIGURATION
service nginx onestop || true
service php-fpm onestop || true
# No need to adjust this:
# If this pot flavour is not blocking, we need to read the environment first from /tmp/environment.sh
# where pot is storing it in this case
if [ -e /tmp/environment.sh ]
then
. /tmp/environment.sh
fi
#
# ADJUST THIS BY CHECKING FOR ALL VARIABLES YOUR FLAVOUR NEEDS:
#
# Convert parameters to variables if passed (overwrite environment)
while getopts d:s: option
do
case \"\${option}\"
in
d) DATADIR=\${OPTARG};;
s) SELFSIGNHOST=\${OPTARG};;
esac
done
# Check config variables are set
if [ -z \${DATADIR+x} ];
then
echo 'DATADIR is unset - see documentation how to configure this flavour' >> /var/log/cook.log
echo 'DATADIR is unset - see documentation how to configure this flavour'
DATADIR=\"/usr/local/www/nextcloud/data\"
fi
if [ -z \${SELFSIGNHOST+x} ];
then
echo 'SELFSIGNHOST is unset - see documentation how to configure this flavour' >> /var/log/cook.log
echo 'SELFSIGNHOST is unset - see documentation how to configure this flavour'
SELFSIGNHOST=\"none\"
fi
# ADJUST THIS BELOW: NOW ALL THE CONFIGURATION FILES NEED TO BE ADJUSTED & COPIED:
# If we do not find a Nextcloud installation, we install it. If we do find something though,
# we do not install/overwrite anything as we assume that updates/modifications are happening
# from within the Nextcloud installation, we install it. If we do find something though,
# we do not install/overwrite anything as we assume that updates/modifications are happening
# from within Nextcloud.
if [ ! -e /usr/local/www/nextcloud/status.php ]; then
pkg install -y nextcloud-php74 nextcloud-twofactor_totp-php74 nextcloud-deck-php74 nextcloud-mail-php74 nextcloud-contacts-php74 nextcloud-calendar-php74 nextcloud-end_to_end_encryption-php74
fi
# Configure PHP FPM
sed -i .orig 's|listen = 127.0.0.1:9000|listen = /var/run/php74-fpm.sock|g' /usr/local/etc/php-fpm.d/www.conf
sed -i .orig 's|pm.max_children = 5|pm.max_children = 10|g' /usr/local/etc/php-fpm.d/www.conf
echo \";Nomad Nextcloud settings...\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"listen.owner = www\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"listen.group = www\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"listen.mode = 0660\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"env[PATH] = /usr/local/bin:/usr/bin:/bin\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"env[TMP] = /tmp\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"env[TMPDIR] = /tmp\" >> /usr/local/etc/php-fpm.d/www.conf
echo \"env[TEMP] = /tmp\" >> /usr/local/etc/php-fpm.d/www.conf
# Configure PHP
cp -f /usr/local/etc/php.ini-production /usr/local/etc/php.ini
cp -f /root/99-custom.ini /usr/local/etc/php/99-custom.ini
# check for presence of copied-in /root/nc-config.php and copy over any existing (with backup)
if [ -s /root/nc-config.php ]; then
if [ -s /usr/local/www/nextcloud/config/config.php ]; then
cp -f /usr/local/www/nextcloud/config/config.php /usr/local/www/nextcloud/config/config.php.old
fi
cp -f /root/nc-config.php /usr/local/www/nextcloud/config/config.php
fi
# Fix www group memberships so it works with fuse mounted directories
pw addgroup -n newwww -g 1001
pw moduser www -u 1001 -G 80,0,1001
# set perms on /usr/local/www/nextcloud/*
chown -R www:www /usr/local/www/nextcloud
# create a nextcloud log file
# this needs to be configured in nextcloud config.php in copy-in file
touch /var/log/nginx/nextcloud.log
chown www:www /var/log/nginx/nextcloud.log
# manually create php log and set owner
touch /var/log/nginx/php.scripts.log
chown www:www /var/log/nginx/php.scripts.log
# check for .ocdata in DATADIR
# if using S3 with no mount-in this should set it up in the default DATADIR
# /usr/local/nginx/nextcloud/data
if [ ! -f \"\${DATADIR}\"/.ocdata ]; then
touch\"\${DATADIR}\"/.ocdata
chown www:www \"\${DATADIR}\"/.ocdata
fi
# set perms on DATADIR
chown -R www:www \"\${DATADIR}\"
# configure self-signed certificates for libcurl, mostly used for minio with self-signed certificates
# nextcloud source needs patching to work with self-signed certificates too
if [ \"\${SELFSIGNHOST}\" != \"none\" ]; then
echo \"\" | /usr/bin/openssl s_client -showcerts -connect \"\${SELFSIGNHOST}\" |/usr/bin/openssl x509 -outform PEM > /tmp/cert.pem
if [ -f /tmp/cert.pem ]; then
cat /tmp/cert.pem >> /usr/local/share/certs/ca-root-nss.crt
echo \"openssl.cafile=/usr/local/share/certs/ca-root-nss.crt\" >> /usr/local/etc/php/99-custom.ini
cat /tmp/cert.pem >> /usr/local/www/nextcloud/resources/config/ca-bundle.crt
fi
# Patch nextcloud source for self-signed certificates with S3
if [ -f /usr/local/www/nextcloud/lib/private/Files/ObjectStore/S3ObjectTrait.php ] && [ -f /root/S3ObjectTrait.patch ]; then
# make sure we haven't already applied the patch
checknotapplied=\$(grep -c verify_peer_name /usr/local/www/nextcloud/lib/private/Files/ObjectStore/S3ObjectTrait.php)
if [ \"\${checknotapplied}\" -eq 0 ]; then
# check the patch will apply cleanly
testpatch=\$(patch --check -i /root/S3ObjectTrait.patch /usr/local/www/nextcloud/lib/private/Files/ObjectStore/S3ObjectTrait.php | echo \"\$?\")
if [ \"\${testpatch}\" -eq 0 ]; then
# apply the patch
patch -i /root/S3ObjectTrait.patch /usr/local/www/nextcloud/lib/private/Files/ObjectStore/S3ObjectTrait.php
fi
fi
fi
fi
# Configure NGINX
cp -f /root/nginx.conf /usr/local/etc/nginx/nginx.conf
# ADJUST THIS: START THE SERVICES AGAIN AFTER CONFIGURATION
# we need to kill nginx then start it
killall -9 nginx
kill -9 \$(/bin/pgrep nginx)
# restart services
#service php-fpm restart
timeout --foreground 120 \
sh -c 'while ! service php-fpm status; do
service php-fpm start || true; sleep 5;
done'
#service nginx restart
timeout --foreground 120 \
sh -c 'while ! service nginx status; do
service nginx start || true; sleep 5;
done'
# setup cronjob
echo \"*/5 * * * * www /usr/local/bin/php -f /usr/local/www/nextcloud/cron.php\" >> /etc/crontab
# Do not touch this:
touch /usr/local/etc/pot-is-seasoned
# If this pot flavour is blocking (i.e. it should not return), there is no /tmp/environment.sh
# created by pot and we now after configuration block indefinitely
if [ \"\$RUNS_IN_NOMAD\" = \"true\" ]
then
/bin/sh /etc/rc
tail -f /dev/null
fi
" > /usr/local/bin/cook
# ----------------- 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
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:
Password:===> Creating a new pot
===> pot name : nextcloud-nginx-nomad-amd64-12_3
===> type : single
===> base : 12.3
===> pot_base :
===> level : 0
===> network-type : public-bridge
===> network-stack: ipv4
===> ip : 10.192.0.6
===> bridge :
===> dns : inherit
===> flavours : fbsd-update nextcloud-nginx-nomad nextcloud-nginx-nomad+1 nextcloud-nginx-nomad+2 nextcloud-nginx-nomad+3 nextcloud-nginx-nomad+4
===> Fetching FreeBSD 12.3
===> Extract the tarball
=====> Flavour: fbsd-update
=====> Starting nextcloud-nginx-nomad-amd64-12_3 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
defaultrouter: NO -> 10.192.0.1
===> Starting the pot nextcloud-nginx-nomad-amd64-12_3
Generating host.conf.
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=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:b8:8b:ca:81:0b
inet 10.192.0.6 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.
Starting syslogd.
Clearing /tmp (X related).
Starting cron.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Mon Jun 13 19:19:21 UTC 2022
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp/fbsd-update.sh
=====> Executing fbsd-update script on nextcloud-nginx-nomad-amd64-12_3
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 12.3-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 44 patches.....10....20....30....40.. done.
Applying patches... done.
The following files will be added as part of updating to
12.3-RELEASE-p5:
/usr/share/zoneinfo/Pacific/Kanton
The following files will be updated as part of updating to
12.3-RELEASE-p5:
/bin/freebsd-version
/lib/libalias.so.7
/lib/libcrypto.so.111
/lib/libz.so.6
/rescue/[
/rescue/bectl
/rescue/bsdlabel
/rescue/bunzip2
/rescue/bzcat
/rescue/bzip2
/rescue/camcontrol
/rescue/cat
/rescue/ccdconfig
/rescue/chflags
/rescue/chgrp
/rescue/chio
/rescue/chmod
/rescue/chown
/rescue/chroot
/rescue/clri
/rescue/cp
/rescue/csh
/rescue/date
/rescue/dd
/rescue/devfs
/rescue/df
/rescue/dhclient
/rescue/disklabel
/rescue/dmesg
/rescue/dump
/rescue/dumpfs
/rescue/dumpon
/rescue/echo
/rescue/ed
/rescue/ex
/rescue/expr
/rescue/fastboot
/rescue/fasthalt
/rescue/fdisk
/rescue/fsck
/rescue/fsck_4.2bsd
/rescue/fsck_ffs
/rescue/fsck_msdosfs
/rescue/fsck_ufs
/rescue/fsdb
/rescue/fsirand
/rescue/gbde
/rescue/geom
/rescue/getfacl
/rescue/glabel
/rescue/gpart
/rescue/groups
/rescue/gunzip
/rescue/gzcat
/rescue/gzip
/rescue/halt
/rescue/head
/rescue/hostname
/rescue/id
/rescue/ifconfig
/rescue/init
/rescue/ipf
/rescue/iscsictl
/rescue/iscsid
/rescue/kenv
/rescue/kill
/rescue/kldconfig
/rescue/kldload
/rescue/kldstat
/rescue/kldunload
/rescue/ldconfig
/rescue/less
/rescue/link
/rescue/ln
/rescue/ls
/rescue/lzcat
/rescue/lzma
/rescue/md5
/rescue/mdconfig
/rescue/mdmfs
/rescue/mkdir
/rescue/mknod
/rescue/more
/rescue/mount
/rescue/mount_cd9660
/rescue/mount_msdosfs
/rescue/mount_nfs
/rescue/mount_nullfs
/rescue/mount_udf
/rescue/mount_unionfs
/rescue/mt
/rescue/mv
/rescue/nc
/rescue/newfs
/rescue/newfs_msdos
/rescue/nos-tun
/rescue/pgrep
/rescue/ping
/rescue/ping6
/rescue/pkill
/rescue/poweroff
/rescue/ps
/rescue/pwd
/rescue/rcorder
/rescue/rdump
/rescue/realpath
/rescue/reboot
/rescue/red
/rescue/rescue
/rescue/restore
/rescue/rm
/rescue/rmdir
/rescue/route
/rescue/routed
/rescue/rrestore
/rescue/rtquery
/rescue/rtsol
/rescue/savecore
/rescue/sed
/rescue/setfacl
/rescue/sh
/rescue/shutdown
/rescue/sleep
/rescue/spppcontrol
/rescue/stty
/rescue/swapon
/rescue/sync
/rescue/sysctl
/rescue/tail
/rescue/tar
/rescue/tcsh
/rescue/tee
/rescue/test
/rescue/tunefs
/rescue/umount
/rescue/unlink
/rescue/unlzma
/rescue/unxz
/rescue/unzstd
/rescue/vi
/rescue/whoami
/rescue/xz
/rescue/xzcat
/rescue/zcat
/rescue/zdb
/rescue/zfs
/rescue/zpool
/rescue/zstd
/rescue/zstdcat
/rescue/zstdmt
/usr/bin/c++
/usr/bin/cc
/usr/bin/clang
/usr/bin/clang++
/usr/bin/clang-cpp
/usr/bin/cpp
/usr/bin/ld.lld
/usr/include/net80211/ieee80211_input.h
/usr/lib/libalias.a
/usr/lib/libalias_p.a
/usr/lib/libcrypto.a
/usr/lib/libcrypto_p.a
/usr/lib/libz.a
/usr/lib/libz_p.a
/usr/sbin/bhyve
/usr/sbin/freebsd-update
/usr/share/zoneinfo/Africa/Accra
/usr/share/zoneinfo/America/Anguilla
/usr/share/zoneinfo/America/Antigua
/usr/share/zoneinfo/America/Aruba
/usr/share/zoneinfo/America/Atikokan
/usr/share/zoneinfo/America/Barbados
/usr/share/zoneinfo/America/Blanc-Sablon
/usr/share/zoneinfo/America/Coral_Harbour
/usr/share/zoneinfo/America/Creston
/usr/share/zoneinfo/America/Curacao
/usr/share/zoneinfo/America/Dominica
/usr/share/zoneinfo/America/Grenada
/usr/share/zoneinfo/America/Guadeloupe
/usr/share/zoneinfo/America/Guyana
/usr/share/zoneinfo/America/Kralendijk
/usr/share/zoneinfo/America/Lower_Princes
/usr/share/zoneinfo/America/Marigot
/usr/share/zoneinfo/America/Montserrat
/usr/share/zoneinfo/America/Nassau
/usr/share/zoneinfo/America/Port_of_Spain
/usr/share/zoneinfo/America/Punta_Arenas
/usr/share/zoneinfo/America/Santiago
/usr/share/zoneinfo/America/St_Barthelemy
/usr/share/zoneinfo/America/St_Kitts
/usr/share/zoneinfo/America/St_Lucia
/usr/share/zoneinfo/America/St_Thomas
/usr/share/zoneinfo/America/St_Vincent
/usr/share/zoneinfo/America/Tortola
/usr/share/zoneinfo/America/Virgin
/usr/share/zoneinfo/Antarctica/DumontDUrville
/usr/share/zoneinfo/Antarctica/Syowa
/usr/share/zoneinfo/Asia/Gaza
/usr/share/zoneinfo/Asia/Hebron
/usr/share/zoneinfo/Atlantic/Azores
/usr/share/zoneinfo/Atlantic/Madeira
/usr/share/zoneinfo/Chile/Continental
/usr/share/zoneinfo/Europe/Kiev
/usr/share/zoneinfo/Europe/Lisbon
/usr/share/zoneinfo/Europe/Simferopol
/usr/share/zoneinfo/Europe/Uzhgorod
/usr/share/zoneinfo/Europe/Zaporozhye
/usr/share/zoneinfo/Pacific/Enderbury
/usr/share/zoneinfo/Pacific/Niue
/usr/share/zoneinfo/Pacific/Rarotonga
/usr/share/zoneinfo/Pacific/Tongatapu
/usr/share/zoneinfo/Portugal
/usr/share/zoneinfo/zone.tab
/usr/share/zoneinfo/zone1970.tab
Installing updates...Scanning //usr/share/certs/blacklisted for certificates...
Scanning //usr/share/certs/trusted for certificates...
done.
=====> Stop the pot nextcloud-nginx-nomad-amd64-12_3
=====> Remove epair0[a|b] network interfaces
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/dev
=====> Flavour: nextcloud-nginx-nomad
=====> Executing nextcloud-nginx-nomad pot commands on nextcloud-nginx-nomad-amd64-12_3
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
=====> Source /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/nginx.conf copied in the pot nextcloud-nginx-nomad-amd64-12_3
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
=====> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/dev is already unmounted
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
=====> Source /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/99-custom.ini copied in the pot nextcloud-nginx-nomad-amd64-12_3
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
=====> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/dev is already unmounted
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
=====> Source /usr/local/etc/pot/flavours/nextcloud-nginx-nomad.d/S3ObjectTrait.patch copied in the pot nextcloud-nginx-nomad-amd64-12_3
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
=====> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/dev is already unmounted
###> Flavor nextcloud-nginx-nomad: line not valid - ignoring
=====> Starting nextcloud-nginx-nomad-amd64-12_3 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
===> Starting the pot nextcloud-nginx-nomad-amd64-12_3
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=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:70:e5:06:39:0b
inet 10.192.0.6 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.
Starting syslogd.
Clearing /tmp (X related).
Starting cron.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Mon Jun 13 19:20:23 UTC 2022
/usr/local/etc/pot/flavours/nextcloud-nginx-nomad.sh -> /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp/nextcloud-nginx-nomad.sh
=====> Executing nextcloud-nginx-nomad script on nextcloud-nginx-nomad-amd64-12_3
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.17.5_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.17.5_1: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:12:amd64/quarterly, 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: Disable sshd
sshd disabled in /etc/rc.conf
Step 6: Create /usr/local/etc/rc.d
Step 7: Install package nginx
Updating FreeBSD repository catalogue...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 31265 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 2 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
nginx: 1.20.2_9,2
pcre: 8.45_1
Number of packages to be installed: 2
The process will require 8 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.20.2_9,2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching pcre-8.45_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing pcre-8.45_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting pcre-8.45_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing nginx-1.20.2_9,2...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.20.2_9,2: .......... done
=====
Message from nginx-1.20.2_9,2:
--
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 8: Install package mariadb105-client
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
indexinfo: 0.3.1
libedit: 3.1.20210910,1
libiconv: 1.16
mariadb105-client: 10.5.16
pcre2: 10.39_1
readline: 8.1.2
Number of packages to be installed: 6
The process will require 60 MiB more space.
4 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/6] Fetching mariadb105-client-10.5.16.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/6] Fetching readline-8.1.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/6] Fetching indexinfo-0.3.1.pkg: . done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/6] Fetching pcre2-10.39_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/6] Fetching libedit-3.1.20210910,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/6] Fetching libiconv-1.16.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/6] Installing indexinfo-0.3.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/6] Extracting indexinfo-0.3.1: .... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/6] Installing readline-8.1.2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/6] Extracting readline-8.1.2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/6] Installing pcre2-10.39_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/6] Extracting pcre2-10.39_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/6] Installing libedit-3.1.20210910,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/6] Extracting libedit-3.1.20210910,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/6] Installing libiconv-1.16...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/6] Extracting libiconv-1.16: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/6] Installing mariadb105-client-10.5.16...
===> Creating groups.
Creating group 'mysql' with gid '88'.
===> Creating users
Creating user 'mysql' with uid '88'.
===> Creating homedir(s)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/6] Extracting mariadb105-client-10.5.16: .......... done
=====
Message from mariadb105-client-10.5.16:
--
MariaDB respects hier(7) and doesn't check /etc and /etc/mysql for
my.cnf. Please move existing my.cnf files from those paths to
/usr/local/etc/mysql or /usr/local/etc. Sample
configuration files are provided in /usr/local/etc/mysql
and /usr/local/etc/mysql/conf.d.
The rc(8) script no longer uses /var/db/mysql/my.cnf for configuration
nor /var/db/mysql for logs and PID-file.
This port does NOT include the mytop perl script, this is included in
the MariaDB tarball but the most recent version can be found in the
databases/mytop port
Step 9: Install package postgresql13-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:
gettext-runtime: 0.21
postgresql13-client: 13.6
Number of packages to be installed: 2
The process will require 13 MiB more space.
3 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching postgresql13-client-13.6.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching gettext-runtime-0.21.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing gettext-runtime-0.21...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting gettext-runtime-0.21: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing postgresql13-client-13.6...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting postgresql13-client-13.6: .......... done
=====
Message from postgresql13-client-13.6:
--
The PostgreSQL port has a collection of "side orders":
postgresql-docs
For all of the html documentation
p5-Pg
A perl5 API for client access to PostgreSQL databases.
postgresql-tcltk
If you want tcl/tk client support.
postgresql-jdbc
For Java JDBC support.
postgresql-odbc
For client access from unix applications using ODBC as access
method. Not needed to access unix PostgreSQL servers from Win32
using ODBC. See below.
ruby-postgres, py-psycopg2
For client access to PostgreSQL databases using the ruby & python
languages.
postgresql-plperl, postgresql-pltcl & postgresql-plruby
For using perl5, tcl & ruby as procedural languages.
postgresql-contrib
Lots of contributed utilities, postgresql functions and
datatypes. There you find pg_standby, pgcrypto and many other cool
things.
etc...
Step 10: 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.14
Number of packages to be installed: 3
The process will require 11 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching memcached-1.6.14.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching cyrus-sasl-2.1.28.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching libevent-2.1.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.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-12_3.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting cyrus-sasl-2.1.28: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Installing libevent-2.1.12...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting libevent-2.1.12: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Installing memcached-1.6.14...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting memcached-1.6.14: .......... 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 11: Install package fontconfig
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:
expat: 2.4.8
fontconfig: 2.13.94_2,1
freetype2: 2.11.1
png: 1.6.37_1
Number of packages to be installed: 4
The process will require 10 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching fontconfig-2.13.94_2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching expat-2.4.8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching freetype2-2.11.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching png-1.6.37_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/4] Installing png-1.6.37_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting png-1.6.37_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/4] Installing expat-2.4.8...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting expat-2.4.8: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/4] Installing freetype2-2.11.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting freetype2-2.11.1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/4] Installing fontconfig-2.13.94_2,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting fontconfig-2.13.94_2,1: .......... done
Running fc-cache to build fontconfig cache...
=====
Message from freetype2-2.11.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 12: 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 13: 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
232 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching giflib-5.2.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing giflib-5.2.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting giflib-5.2.1: .......... done
Step 14: 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.2.1
Number of packages to be installed: 1
The process will require 3 MiB more space.
477 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching gmp-6.2.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing gmp-6.2.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting gmp-6.2.1: .......... done
Step 15: 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: 70.1_1,1
Number of packages to be installed: 1
The process will require 50 MiB more space.
11 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching icu-70.1_1,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing icu-70.1_1,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting icu-70.1_1,1: .......... done
Step 16: 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
73 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jbigkit-2.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jbigkit-2.1_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jbigkit-2.1_1: .......... done
Step 17: 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: 2.1.3
Number of packages to be installed: 1
The process will require 2 MiB more space.
366 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jpeg-turbo-2.1.3.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jpeg-turbo-2.1.3...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jpeg-turbo-2.1.3: .......... done
Step 18: 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
65 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libargon2-20190702.pkg: ......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing libargon2-20190702...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libargon2-20190702: .......... done
Step 19: 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.9.4
libgpg-error: 1.44
Number of packages to be installed: 2
The process will require 6 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libgcrypt-1.9.4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libgpg-error-1.44.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libgpg-error-1.44...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libgpg-error-1.44: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing libgcrypt-1.9.4...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting libgcrypt-1.9.4: .......... done
Step 20: Install package libgd
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:
libgd: 2.3.3,1
tiff: 4.3.0
webp: 1.2.2
Number of packages to be installed: 3
The process will require 7 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching libgd-2.3.3,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching webp-1.2.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching tiff-4.3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/3] Installing tiff-4.3.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting tiff-4.3.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Installing webp-1.2.2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting webp-1.2.2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Installing libgd-2.3.3,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting libgd-2.3.3,1: .......... done
Step 21: 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 22: 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.9.13_1
libxslt: 1.1.35_2
Number of packages to be installed: 2
The process will require 14 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libxslt-1.1.35_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libxml2-2.9.13_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libxml2-2.9.13_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libxml2-2.9.13_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing libxslt-1.1.35_2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting libxslt-1.1.35_2: .......... done
Step 23: 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.7.3
Number of packages to be installed: 1
214 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching libzip-1.7.3.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing libzip-1.7.3...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting libzip-1.7.3: .......... done
Step 24: 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.7.1
Number of packages to be installed: 1
The process will require 1 MiB more space.
230 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching oniguruma-6.9.7.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing oniguruma-6.9.7.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting oniguruma-6.9.7.1: .......... done
Step 25: Install package openldap24-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:
openldap24-client: 2.4.59_4
Number of packages to be installed: 1
The process will require 5 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching openldap24-client-2.4.59_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing openldap24-client-2.4.59_4...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting openldap24-client-2.4.59_4: .......... done
=====
Message from openldap24-client-2.4.59_4:
--
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 26: 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 27: 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 28: 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 29: 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: 1.8.0,1
Number of packages to be installed: 1
67 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching pkgconf-1.8.0,1.pkg: ......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing pkgconf-1.8.0,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting pkgconf-1.8.0,1: .......... done
Step 30: Install package php74
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:
php74: 7.4.29
Number of packages to be installed: 1
The process will require 28 MiB more space.
4 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-7.4.29: .......... done
=====
Message from php74-7.4.29:
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 31: Install package php74-extensions
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 19 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php74-ctype: 7.4.29
php74-dom: 7.4.29
php74-extensions: 1.0
php74-filter: 7.4.29
php74-iconv: 7.4.29
php74-json: 7.4.29
php74-opcache: 7.4.29
php74-pdo: 7.4.29
php74-pdo_sqlite: 7.4.29
php74-phar: 7.4.29
php74-posix: 7.4.29
php74-session: 7.4.29
php74-simplexml: 7.4.29
php74-sqlite3: 7.4.29
php74-tokenizer: 7.4.29
php74-xml: 7.4.29
php74-xmlreader: 7.4.29
php74-xmlwriter: 7.4.29
sqlite3: 3.37.2,1
Number of packages to be installed: 19
The process will require 6 MiB more space.
2 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/19] Fetching php74-extensions-1.0.pkg: . done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/19] Fetching php74-session-7.4.29.pkg: ..... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/19] Fetching php74-opcache-7.4.29.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/19] Fetching php74-xmlwriter-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/19] Fetching php74-xmlreader-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/19] Fetching php74-dom-7.4.29.pkg: ....... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/19] Fetching php74-xml-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/19] Fetching php74-simplexml-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/19] Fetching php74-ctype-7.4.29.pkg: . done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/19] Fetching php74-posix-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/19] Fetching php74-filter-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/19] Fetching php74-tokenizer-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/19] Fetching php74-json-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/19] Fetching php74-sqlite3-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/19] Fetching sqlite3-3.37.2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/19] Fetching php74-pdo_sqlite-7.4.29.pkg: .. done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/19] Fetching php74-pdo-7.4.29.pkg: ...... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/19] Fetching php74-iconv-7.4.29.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/19] Fetching php74-phar-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/19] Installing php74-dom-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/19] Extracting php74-dom-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/19] Installing sqlite3-3.37.2,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/19] Extracting sqlite3-3.37.2,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/19] Installing php74-pdo-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/19] Extracting php74-pdo-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/19] Installing php74-session-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/19] Extracting php74-session-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/19] Installing php74-opcache-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/19] Extracting php74-opcache-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/19] Installing php74-xmlwriter-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/19] Extracting php74-xmlwriter-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/19] Installing php74-xmlreader-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/19] Extracting php74-xmlreader-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/19] Installing php74-xml-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/19] Extracting php74-xml-7.4.29: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/19] Installing php74-simplexml-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/19] Extracting php74-simplexml-7.4.29: ......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/19] Installing php74-ctype-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/19] Extracting php74-ctype-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/19] Installing php74-posix-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/19] Extracting php74-posix-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/19] Installing php74-filter-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/19] Extracting php74-filter-7.4.29: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/19] Installing php74-tokenizer-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/19] Extracting php74-tokenizer-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/19] Installing php74-json-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/19] Extracting php74-json-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/19] Installing php74-sqlite3-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/19] Extracting php74-sqlite3-7.4.29: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/19] Installing php74-pdo_sqlite-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/19] Extracting php74-pdo_sqlite-7.4.29: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/19] Installing php74-iconv-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/19] Extracting php74-iconv-7.4.29: ....... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/19] Installing php74-phar-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/19] Extracting php74-phar-7.4.29: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/19] Installing php74-extensions-1.0...
=====
Message from php74-dom-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-dom.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-pdo-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pdo.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-session-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-18-session.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-opcache-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-10-opcache.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-xmlwriter-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xmlwriter.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-xmlreader-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xmlreader.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-xml-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xml.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-simplexml-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-simplexml.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-ctype-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ctype.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-posix-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-posix.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-filter-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-filter.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-tokenizer-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-tokenizer.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-json-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-json.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-sqlite3-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-sqlite3.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-pdo_sqlite-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_sqlite.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-iconv-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-iconv.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-phar-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-phar.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
=====
Message from php74-extensions-1.0:
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 32: Install package php74-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:
php74-bcmath: 7.4.29
Number of packages to be installed: 1
20 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-bcmath-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-bcmath-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-bcmath-7.4.29: .......... done
=====
Message from php74-bcmath-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-bcmath.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 33: Install package php74-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:
php74-bz2: 7.4.29
Number of packages to be installed: 1
11 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-bz2-7.4.29.pkg: .. done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-bz2-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-bz2-7.4.29: ....... done
=====
Message from php74-bz2-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-bz2.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 34: Install package php74-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 35: Install package php74-curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 8 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
ca_root_nss: 3.76
curl: 7.83.1
libidn2: 2.3.2
libnghttp2: 1.46.0
libpsl: 0.21.1_3
libssh2: 1.10.0,3
libunistring: 1.0
php74-curl: 7.4.29
Number of packages to be installed: 8
The process will require 10 MiB more space.
3 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/8] Fetching php74-curl-7.4.29.pkg: .... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/8] Fetching curl-7.83.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/8] Fetching libnghttp2-1.46.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/8] Fetching libssh2-1.10.0,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/8] Fetching ca_root_nss-3.76.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/8] Fetching libpsl-0.21.1_3.pkg: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/8] Fetching libidn2-2.3.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/8] Fetching libunistring-1.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/8] Installing libunistring-1.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/8] Extracting libunistring-1.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/8] Installing libidn2-2.3.2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/8] Extracting libidn2-2.3.2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/8] Installing libnghttp2-1.46.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/8] Extracting libnghttp2-1.46.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/8] Installing libssh2-1.10.0,3...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/8] Extracting libssh2-1.10.0,3: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/8] Installing ca_root_nss-3.76...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/8] Extracting ca_root_nss-3.76: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/8] Installing libpsl-0.21.1_3...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/8] Extracting libpsl-0.21.1_3: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/8] Installing curl-7.83.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/8] Extracting curl-7.83.1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/8] Installing php74-curl-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/8] Extracting php74-curl-7.4.29: ....... done
=====
Message from ca_root_nss-3.76:
--
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
=====
Message from php74-curl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-curl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 36: Install package php74-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 37: Install package php74-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:
php74-exif: 7.4.29
Number of packages to be installed: 1
29 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-exif-7.4.29.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-exif-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-exif-7.4.29: ....... done
=====
Message from php74-exif-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-exif.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 38: Install package php74-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:
php74-fileinfo: 7.4.29
Number of packages to be installed: 1
The process will require 6 MiB more space.
268 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-fileinfo-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-fileinfo-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-fileinfo-7.4.29: .......... done
=====
Message from php74-fileinfo-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-fileinfo.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 39: Install package php74-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 40: Install package php74-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:
php74-ftp: 7.4.29
Number of packages to be installed: 1
24 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-ftp-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-ftp-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-ftp-7.4.29: ........ done
=====
Message from php74-ftp-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ftp.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 41: Install package php74-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:
php74-gd: 7.4.29
Number of packages to be installed: 1
30 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-gd-7.4.29.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-gd-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-gd-7.4.29: ........ done
=====
Message from php74-gd-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gd.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 42: Install package php74-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:
php74-gmp: 7.4.29
Number of packages to be installed: 1
20 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-gmp-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-gmp-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-gmp-7.4.29: ........ done
=====
Message from php74-gmp-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gmp.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 43: Install package php74-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 44: Install package php74-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_1
php74-imap: 7.4.29
Number of packages to be installed: 2
The process will require 5 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching php74-imap-7.4.29.pkg: ..... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching panda-cclient-20130621_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing panda-cclient-20130621_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting panda-cclient-20130621_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php74-imap-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php74-imap-7.4.29: ....... done
=====
Message from panda-cclient-20130621_1:
--
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 php74-imap-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-imap.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 45: Install package php74-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:
php74-intl: 7.4.29
Number of packages to be installed: 1
123 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-intl-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-intl-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-intl-7.4.29: .......... done
=====
Message from php74-intl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-intl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 46: Install package php74-json
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 47: Install package php74-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:
php74-ldap: 7.4.29
Number of packages to be installed: 1
30 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-ldap-7.4.29.pkg: .... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-ldap-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-ldap-7.4.29: ....... done
=====
Message from php74-ldap-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ldap.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 48: Install package php74-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:
php74-mysqli: 7.4.29
Number of packages to be installed: 1
42 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-mysqli-7.4.29.pkg: ...... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-mysqli-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-mysqli-7.4.29: .......... done
=====
Message from php74-mysqli-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mysqli.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 49: Install package php74-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:
php74-mbstring: 7.4.29
Number of packages to be installed: 1
The process will require 3 MiB more space.
745 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-mbstring-7.4.29.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-mbstring-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-mbstring-7.4.29: .......... done
=====
Message from php74-mbstring-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mbstring.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 50: Install package php74-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 51: Install package php74-openssl
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:
php74-openssl: 7.4.29
Number of packages to be installed: 1
57 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-openssl-7.4.29.pkg: ........ done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-openssl-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-openssl-7.4.29: ....... done
=====
Message from php74-openssl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-openssl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 52: Install package php74-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:
php74-pcntl: 7.4.29
Number of packages to be installed: 1
14 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-pcntl-7.4.29.pkg: .. done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-pcntl-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-pcntl-7.4.29: ........ done
=====
Message from php74-pcntl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-pcntl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 53: Install package php74-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 54: Install package php74-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:
php74-pdo_mysql: 7.4.29
Number of packages to be installed: 1
17 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-pdo_mysql-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-pdo_mysql-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-pdo_mysql-7.4.29: ......... done
=====
Message from php74-pdo_mysql-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-pdo_mysql.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 55: Install package php74-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:
php74-pecl-APCu: 5.1.21
Number of packages to be installed: 1
50 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-pecl-APCu-5.1.21.pkg: ....... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-pecl-APCu-5.1.21...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-pecl-APCu-5.1.21: .......... done
=====
Message from php74-pecl-APCu-5.1.21:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-apcu.ini
Step 56: Install package php74-pecl-memcached
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:
libmemcached: 1.0.18_7
php74-pecl-memcached: 3.1.5_1
Number of packages to be installed: 2
The process will require 5 MiB more space.
832 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching php74-pecl-memcached-3.1.5_1.pkg: ...... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libmemcached-1.0.18_7.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libmemcached-1.0.18_7...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libmemcached-1.0.18_7: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php74-pecl-memcached-3.1.5_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php74-pecl-memcached-3.1.5_1: .......... done
=====
Message from php74-pecl-memcached-3.1.5_1:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-memcached.ini
Step 57: Install package php74-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:
php74-pecl-redis: 5.3.5
Number of packages to be installed: 1
153 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-pecl-redis-5.3.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-pecl-redis-5.3.5...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-pecl-redis-5.3.5: .......... done
=====
Message from php74-pecl-redis-5.3.5:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-redis.ini
Step 58: Install package php74-pecl-imagick
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 45 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
ImageMagick6-nox11: 6.9.12.44_1,1
avahi-app: 0.8
cups: 2.4.2
dbus: 1.12.20_5
dbus-glib: 0.112
fftw3: 3.3.10
fribidi: 1.0.11
gdbm: 1.23
ghostscript9-agpl-base: 9.55.0_1
glib: 2.70.4_3,2
gnome_subr: 1.0
gnutls: 3.6.16
graphite2: 1.3.14
gsfonts: 8.11_8
harfbuzz: 4.2.1
jbig2dec: 0.19
lcms2: 2.12
libICE: 1.0.10,1
libSM: 1.2.3,1
libX11: 1.7.2,1
libXau: 1.0.9
libXdmcp: 1.1.3
libdaemon: 0.14_1
libffi: 3.3_1
libidn: 1.35
liblqr-1: 0.4.2
libltdl: 2.4.6
libpaper: 1.1.28
libpthread-stubs: 0.4
libraqm: 0.9.0
libraw: 0.20.2_2
libtasn1: 4.18.0
libwmf-nox11: 0.2.12
libxcb: 1.14_1
mpdecimal: 2.5.1
nettle: 3.7.3
openjpeg: 2.5.0
p11-kit: 0.24.1
perl5: 5.32.1_1
php74-pecl-imagick: 3.5.1
poppler-data: 0.4.11
python38: 3.8.13
tpm-emulator: 0.7.4_2
trousers: 0.3.14_3
xorgproto: 2021.5
Number of packages to be installed: 45
The process will require 377 MiB more space.
89 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/45] Fetching php74-pecl-imagick-3.5.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/45] Fetching ImageMagick6-nox11-6.9.12.44_1,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/45] Fetching libraqm-0.9.0.pkg: .... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/45] Fetching harfbuzz-4.2.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/45] Fetching graphite2-1.3.14.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/45] Fetching glib-2.70.4_3,2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/45] Fetching python38-3.8.13.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/45] Fetching mpdecimal-2.5.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/45] Fetching libffi-3.3_1.pkg: ..... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/45] Fetching fribidi-1.0.11.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/45] Fetching gsfonts-8.11_8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/45] Fetching ghostscript9-agpl-base-9.55.0_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/45] Fetching libpaper-1.1.28.pkg: .... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/45] Fetching cups-2.4.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/45] Fetching gnutls-3.6.16.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/45] Fetching trousers-0.3.14_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/45] Fetching tpm-emulator-0.7.4_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/45] Fetching p11-kit-0.24.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/45] Fetching libtasn1-4.18.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/45] Fetching nettle-3.7.3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/45] Fetching avahi-app-0.8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/45] Fetching gnome_subr-1.0.pkg: . done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/45] Fetching libdaemon-0.14_1.pkg: .... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [24/45] Fetching dbus-glib-0.112.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [25/45] Fetching dbus-1.12.20_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [26/45] Fetching libX11-1.7.2,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [27/45] Fetching libxcb-1.14_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [28/45] Fetching libXdmcp-1.1.3.pkg: .. done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [29/45] Fetching xorgproto-2021.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [30/45] Fetching libXau-1.0.9.pkg: .. done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [31/45] Fetching libpthread-stubs-0.4.pkg: . done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [32/45] Fetching libSM-1.2.3,1.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [33/45] Fetching libICE-1.0.10,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [34/45] Fetching gdbm-1.23.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [35/45] Fetching poppler-data-0.4.11.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [36/45] Fetching openjpeg-2.5.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [37/45] Fetching lcms2-2.12.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [38/45] Fetching jbig2dec-0.19.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [39/45] Fetching libidn-1.35.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [40/45] Fetching fftw3-3.3.10.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [41/45] Fetching perl5-5.32.1_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [42/45] Fetching libwmf-nox11-0.2.12.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [43/45] Fetching libraw-0.20.2_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [44/45] Fetching liblqr-1-0.4.2.pkg: ...... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [45/45] Fetching libltdl-2.4.6.pkg: ..... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/45] Installing xorgproto-2021.5...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/45] Extracting xorgproto-2021.5: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/45] Installing libXdmcp-1.1.3...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/45] Extracting libXdmcp-1.1.3: ......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/45] Installing libXau-1.0.9...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/45] Extracting libXau-1.0.9: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/45] Installing libpthread-stubs-0.4...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/45] Extracting libpthread-stubs-0.4: .... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/45] Installing mpdecimal-2.5.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/45] Extracting mpdecimal-2.5.1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/45] Installing libffi-3.3_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/45] Extracting libffi-3.3_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/45] Installing libxcb-1.14_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/45] Extracting libxcb-1.14_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/45] Installing libICE-1.0.10,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/45] Extracting libICE-1.0.10,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/45] Installing python38-3.8.13...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/45] Extracting python38-3.8.13: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/45] Installing libX11-1.7.2,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/45] Extracting libX11-1.7.2,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/45] Installing libSM-1.2.3,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/45] Extracting libSM-1.2.3,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/45] Installing glib-2.70.4_3,2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/45] Extracting glib-2.70.4_3,2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/45] Installing tpm-emulator-0.7.4_2...
===> Creating groups.
Creating group '_tss' with gid '601'.
===> Creating users
Creating user '_tss' with uid '601'.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/45] Extracting tpm-emulator-0.7.4_2: ......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/45] Installing libtasn1-4.18.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/45] Extracting libtasn1-4.18.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/45] Installing dbus-1.12.20_5...
===> Creating groups.
Creating group 'messagebus' with gid '556'.
===> Creating users
Creating user 'messagebus' with uid '556'.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/45] Extracting dbus-1.12.20_5: ......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/45] Installing trousers-0.3.14_3...
===> Creating groups.
Using existing group '_tss'.
===> Creating users
Using existing user '_tss'.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/45] Extracting trousers-0.3.14_3: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/45] Installing p11-kit-0.24.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/45] Extracting p11-kit-0.24.1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/45] Installing nettle-3.7.3...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/45] Extracting nettle-3.7.3: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/45] Installing gnome_subr-1.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/45] Extracting gnome_subr-1.0: .... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/45] Installing libdaemon-0.14_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/45] Extracting libdaemon-0.14_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/45] Installing dbus-glib-0.112...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/45] Extracting dbus-glib-0.112: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/45] Installing gdbm-1.23...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/45] Extracting gdbm-1.23: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/45] Installing graphite2-1.3.14...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/45] Extracting graphite2-1.3.14: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [24/45] Installing libpaper-1.1.28...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [24/45] Extracting libpaper-1.1.28: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [25/45] Installing gnutls-3.6.16...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [25/45] Extracting gnutls-3.6.16: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [26/45] Installing avahi-app-0.8...
===> Creating groups.
Creating group 'avahi' with gid '558'.
===> Creating users
Creating user 'avahi' with uid '558'.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [26/45] Extracting avahi-app-0.8: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [27/45] Installing lcms2-2.12...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [27/45] Extracting lcms2-2.12: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [28/45] Installing harfbuzz-4.2.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [28/45] Extracting harfbuzz-4.2.1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [29/45] Installing fribidi-1.0.11...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [29/45] Extracting fribidi-1.0.11: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [30/45] Installing cups-2.4.2...
===> Creating groups.
Creating group 'cups' with gid '193'.
===> Creating users
Creating user 'cups' with uid '193'.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [30/45] Extracting cups-2.4.2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [31/45] Installing poppler-data-0.4.11...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [31/45] Extracting poppler-data-0.4.11: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [32/45] Installing openjpeg-2.5.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [32/45] Extracting openjpeg-2.5.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [33/45] Installing jbig2dec-0.19...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [33/45] Extracting jbig2dec-0.19: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [34/45] Installing libidn-1.35...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [34/45] Extracting libidn-1.35: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [35/45] Installing libraqm-0.9.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [35/45] Extracting libraqm-0.9.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [36/45] Installing gsfonts-8.11_8...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [36/45] Extracting gsfonts-8.11_8: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [37/45] Installing ghostscript9-agpl-base-9.55.0_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [37/45] Extracting ghostscript9-agpl-base-9.55.0_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [38/45] Installing fftw3-3.3.10...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [38/45] Extracting fftw3-3.3.10: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [39/45] Installing perl5-5.32.1_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [39/45] Extracting perl5-5.32.1_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [40/45] Installing libwmf-nox11-0.2.12...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [40/45] Extracting libwmf-nox11-0.2.12: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [41/45] Installing libraw-0.20.2_2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [41/45] Extracting libraw-0.20.2_2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [42/45] Installing liblqr-1-0.4.2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [42/45] Extracting liblqr-1-0.4.2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [43/45] Installing libltdl-2.4.6...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [43/45] Extracting libltdl-2.4.6: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [44/45] Installing ImageMagick6-nox11-6.9.12.44_1,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [44/45] Extracting ImageMagick6-nox11-6.9.12.44_1,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [45/45] Installing php74-pecl-imagick-3.5.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [45/45] Extracting php74-pecl-imagick-3.5.1: .......... done
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from python38-3.8.13:
--
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:
py38-gdbm databases/py-gdbm@py38
py38-sqlite3 databases/py-sqlite3@py38
py38-tkinter x11-toolkits/py-tkinter@py38
=====
Message from trousers-0.3.14_3:
--
To run tcsd automatically, add the following line to /etc/rc.conf:
tcsd_enable="YES"
You might want to edit /usr/local/etc/tcsd.conf to reflect your setup.
If you want to use tcsd with software TPM emulator, use the following
configuration in /etc/rc.conf:
tcsd_enable="YES"
tcsd_mode="emulator"
tpmd_enable="YES"
To use TPM, add your_account to '_tss' group like following:
# pw groupmod _tss -m your_account
=====
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 ghostscript9-agpl-base-9.55.0_1:
--
This package installs a script named dvipdf that depends on dvips. If you
want to use this script you need to install print/tex-dvipsk.
=====
Message from libwmf-nox11-0.2.12:
--
===> NOTICE:
The libwmf-nox11 port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:
https://bugs.freebsd.org/bugzilla
More information about port maintainership is available at:
https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from 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 php74-pecl-imagick-3.5.1:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-imagick.ini
Step 59: Install package php74-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 60: Install package php74-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 61: Install package php74-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 62: Install package php74-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 63: Install package php74-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 64: Install package php74-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 65: Install package php74-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 66: Install package php74-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:
php74-xsl: 7.4.29
Number of packages to be installed: 1
14 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-xsl-7.4.29.pkg: .. done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-xsl-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-xsl-7.4.29: ........ done
=====
Message from php74-xsl-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xsl.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 67: Install package php74-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:
php74-zip: 7.4.29
Number of packages to be installed: 1
21 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-zip-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-zip-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-zip-7.4.29: ....... done
=====
Message from php74-zip-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zip.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 68: Install package php74-zlib
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
php74-zlib: 7.4.29
Number of packages to be installed: 1
18 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php74-zlib-7.4.29.pkg: ... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php74-zlib-7.4.29...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php74-zlib-7.4.29: ....... done
=====
Message from php74-zlib-7.4.29:
--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zlib.ini
--
===> NOTICE:
This port is deprecated; you may wish to reconsider installing it:
Upstream Security Support ends on 2022-11-28.
It is scheduled to be removed on or after 2022-11-29.
Step 69: Install package ImageMagick6-nox11
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 70: Install package libheif
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 13 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
Imath: 3.1.5
aom: 3.3.0_1
brotli: 1.0.9,1
dav1d: 1.0.0
gdk-pixbuf2: 2.40.0_3
highway: 0.16.0_2
libde265: 1.0.8
libheif: 1.12.0.62_1
libjxl: 0.6.1_5
openexr: 3.1.5
shared-mime-info: 2.2_1
vmaf: 2.3.1
x265: 3.4_2
Number of packages to be installed: 13
The process will require 104 MiB more space.
19 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/13] Fetching libheif-1.12.0.62_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/13] Fetching x265-3.4_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/13] Fetching libde265-1.0.8.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/13] Fetching dav1d-1.0.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/13] Fetching aom-3.3.0_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/13] Fetching vmaf-2.3.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/13] Fetching libjxl-0.6.1_5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/13] Fetching shared-mime-info-2.2_1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/13] Fetching gdk-pixbuf2-2.40.0_3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/13] Fetching Imath-3.1.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/13] Fetching openexr-3.1.5.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/13] Fetching highway-0.16.0_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/13] Fetching brotli-1.0.9,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/13] Installing shared-mime-info-2.2_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/13] Extracting shared-mime-info-2.2_1: ......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/13] Installing Imath-3.1.5...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/13] Extracting Imath-3.1.5: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/13] Installing gdk-pixbuf2-2.40.0_3...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/13] Extracting gdk-pixbuf2-2.40.0_3: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/13] Installing openexr-3.1.5...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/13] Extracting openexr-3.1.5: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/13] Installing highway-0.16.0_2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/13] Extracting highway-0.16.0_2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/13] Installing brotli-1.0.9,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/13] Extracting brotli-1.0.9,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/13] Installing vmaf-2.3.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/13] Extracting vmaf-2.3.1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/13] Installing libjxl-0.6.1_5...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/13] Extracting libjxl-0.6.1_5: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/13] Installing x265-3.4_2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/13] Extracting x265-3.4_2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/13] Installing libde265-1.0.8...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/13] Extracting libde265-1.0.8: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/13] Installing dav1d-1.0.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/13] Extracting dav1d-1.0.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/13] Installing aom-3.3.0_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/13] Extracting aom-3.3.0_1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/13] Installing libheif-1.12.0.62_1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/13] Extracting libheif-1.12.0.62_1: .......... done
Generating gdk-pixbuf modules cache
Building the Shared MIME-Info database cache
=====
Message from libjxl-0.6.1_5:
--
Additional packages recommended for new users:
- imlib2-jxl (e.g., feh, scrot)
- kf5-kimageformats (e.g., nomacs, flameshot, skanlite)
- gimp-jxl-plugin
Step 71: Install package ffmpeg
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 23 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
argp-standalone: 1.3_4
ffmpeg: 4.4.2_4,1
lame: 3.100_4
libXext: 1.3.4,1
libXfixes: 6.0.0
libass: 0.15.2
libdrm: 2.4.110,1
libepoll-shim: 0.0.20210418
libogg: 1.3.5,4
libpciaccess: 0.16
libtheora: 1.1.1_7
libudev-devd: 0.5.0
libv4l: 1.23.0
libva: 2.14.0
libvdpau: 1.5
libvorbis: 1.3.7_2,3
libvpx: 1.11.0
libx264: 0.163.3060
opus: 1.3.1
pciids: 20220225
svt-av1: 1.1.0
wayland: 1.20.0_2
xvid: 1.3.7,1
Number of packages to be installed: 23
The process will require 73 MiB more space.
16 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/23] Fetching ffmpeg-4.4.2_4,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/23] Fetching libXext-1.3.4,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/23] Fetching libXfixes-6.0.0.pkg: .. done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/23] Fetching wayland-1.20.0_2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/23] Fetching libepoll-shim-0.0.20210418.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/23] Fetching libdrm-2.4.110,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/23] Fetching libpciaccess-0.16.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/23] Fetching pciids-20220225.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/23] Fetching libudev-devd-0.5.0.pkg: ... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/23] Fetching xvid-1.3.7,1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/23] Fetching svt-av1-1.1.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/23] Fetching libx264-0.163.3060.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/23] Fetching libvpx-1.11.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/23] Fetching libvdpau-1.5.pkg: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/23] Fetching libva-2.14.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/23] Fetching libv4l-1.23.0.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/23] Fetching argp-standalone-1.3_4.pkg: ..... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/23] Fetching libtheora-1.1.1_7.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/23] Fetching libvorbis-1.3.7_2,3.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/23] Fetching libogg-1.3.5,4.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/23] Fetching libass-0.15.2.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/23] Fetching opus-1.3.1.pkg: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/23] Fetching lame-3.100_4.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/23] Installing pciids-20220225...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/23] Extracting pciids-20220225: ..... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/23] Installing libepoll-shim-0.0.20210418...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/23] Extracting libepoll-shim-0.0.20210418: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/23] Installing libpciaccess-0.16...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/23] Extracting libpciaccess-0.16: ......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/23] Installing libogg-1.3.5,4...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/23] Extracting libogg-1.3.5,4: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/23] Installing libXext-1.3.4,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/23] Extracting libXext-1.3.4,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/23] Installing libXfixes-6.0.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/23] Extracting libXfixes-6.0.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/23] Installing wayland-1.20.0_2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/23] Extracting wayland-1.20.0_2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/23] Installing libdrm-2.4.110,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/23] Extracting libdrm-2.4.110,1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/23] Installing libudev-devd-0.5.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/23] Extracting libudev-devd-0.5.0: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/23] Installing argp-standalone-1.3_4...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/23] Extracting argp-standalone-1.3_4: ......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/23] Installing libvorbis-1.3.7_2,3...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/23] Extracting libvorbis-1.3.7_2,3: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/23] Installing xvid-1.3.7,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/23] Extracting xvid-1.3.7,1: ........ done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/23] Installing svt-av1-1.1.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/23] Extracting svt-av1-1.1.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/23] Installing libx264-0.163.3060...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/23] Extracting libx264-0.163.3060: ......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/23] Installing libvpx-1.11.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/23] Extracting libvpx-1.11.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/23] Installing libvdpau-1.5...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/23] Extracting libvdpau-1.5: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/23] Installing libva-2.14.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/23] Extracting libva-2.14.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/23] Installing libv4l-1.23.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/23] Extracting libv4l-1.23.0: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/23] Installing libtheora-1.1.1_7...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/23] Extracting libtheora-1.1.1_7: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/23] Installing libass-0.15.2...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/23] Extracting libass-0.15.2: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/23] Installing opus-1.3.1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/23] Extracting opus-1.3.1: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/23] Installing lame-3.100_4...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/23] Extracting lame-3.100_4: .......... done
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/23] Installing ffmpeg-4.4.2_4,1...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/23] Extracting ffmpeg-4.4.2_4,1: .......... done
=====
Message from wayland-1.20.0_2:
--
Wayland requires XDG_RUNTIME_DIR to be defined to a path that will
contain "wayland-%d" unix(4) sockets. This is usually handled by
consolekit2 (via ck-launch-session) or pam_xdg (via login).
=====
Message from argp-standalone-1.3_4:
--
===> NOTICE:
The argp-standalone 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 72: 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.
267 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jq-1.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jq-1.6...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jq-1.6: .......... done
Step 73: 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: 6.0
Number of packages to be installed: 1
The process will require 3 MiB more space.
567 KiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching nano-6.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing nano-6.0...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting nano-6.0: .......... done
Step 74: 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.10
Number of packages to be installed: 1
The process will require 7 MiB more space.
1 MiB to be downloaded.
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching sudo-1.9.10.pkg: .......... done
Checking integrity... done (0 conflicting)
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing sudo-1.9.10...
[nextcloud-nginx-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting sudo-1.9.10: .......... done
Nothing to do.
Step 75: Create necessary directories if they don't exist
Step 76: Enable nginx
nginx enabled in /etc/rc.conf
Step 77: Enable php-fpm
php_fpm enabled in /etc/rc.conf
Step 78: Clean cook artifacts
Step 79: Create cook script
Step 80: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 81: Create rc.d script to start cook
creating rc.d script to start cook
Step 82: Make rc.d script to start cook executable
Setting executable bit on cook rc file
=====> Stop the pot nextcloud-nginx-nomad-amd64-12_3
=====> Remove epair0[a|b] network interfaces
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/tmp
=====> unmount /mnt/srv/pot/jails/nextcloud-nginx-nomad-amd64-12_3/m/dev
=====> Flavour: nextcloud-nginx-nomad+1
=====> Executing nextcloud-nginx-nomad+1 pot commands on nextcloud-nginx-nomad-amd64-12_3
=====> No shell script available for the flavour nextcloud-nginx-nomad+1
=====> Flavour: nextcloud-nginx-nomad+2
=====> Executing nextcloud-nginx-nomad+2 pot commands on nextcloud-nginx-nomad-amd64-12_3
=====> No shell script available for the flavour nextcloud-nginx-nomad+2
=====> Flavour: nextcloud-nginx-nomad+3
=====> Executing nextcloud-nginx-nomad+3 pot commands on nextcloud-nginx-nomad-amd64-12_3
=====> No shell script available for the flavour nextcloud-nginx-nomad+3
=====> Flavour: nextcloud-nginx-nomad+4
=====> Executing nextcloud-nginx-nomad+4 pot commands on nextcloud-nginx-nomad-amd64-12_3
=====> No shell script available for the flavour nextcloud-nginx-nomad+4