Matrix Synapse

Overview

This is a Matrix-Synapse jail that can be started with pot.

Important: this instance uses sqlite instead of postgres and may not be suitable for busy servers!

The jail exposes parameters that can either be set via the environment.

It also contains node_exporter and a local consul agent instance to be available that it can connect to (see configuration below). You can e.g. use the consul pot flavour on this site to run consul.

Setup

You must run your matrix instance from a top level domain such as example.com, not matrix.example.com.

This is a quirk of using .well-known/matrix/server with the server’s details.

Installation

  • Create a ZFS data set on the parent system beforehand
    zfs create -o mountpoint=/mnt/matrixdata zroot/matrixdata
    
  • Create your local jail from the image or the flavour files.
  • Clone the local jail
  • Mount in the ZFS data set you created
    pot mount-in -p <jailname> -m /mnt -d /mnt/matrixdata
    
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
     -E DATACENTER=<datacenter name> \
     -E CONSULSERVERS="<comma-deliminated list of consul servers>" \
     -E GOSSIPKEY=<32 byte Base64 key from consul keygen>] \
     -E NODENAME=<name of node> \
     -E IP=<IP address> \
     -E DOMAIN=<domain name> \
     -E ALERTEMAIL=<alert email> \
     -E REGISTRATIONENABLE=<true|false> \
     -E MYSHAREDSECRET=<shared secret for registrations> \
     -E SMTPHOST=<mail host> \
     -E SMTPUSER=username \
     -E SMTPPASS=password \
     -E SMTPFROM=<email> \
     -E SSLEMAIL=<email address for certificate registration|none> \
     -E LDAPSERVER=<IP of LDAP server> \
     -E LDAPPASSWORD=<LDAP Manager password> \
     -E LDAPDOMAIN=<domain name for ldap> \
     -E CONTROLUSER=<true|false> \
     [ -E SMTPPORT=25 ] \
     [ -E NOSSL=<any value set disables SSL> ] \
     [ -E REMOTELOG=<IP of syslog-ng server> ]
    

The DATACENTER parameter is the name of the datacenter.

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

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

The GOSSIPKEY parameter is the gossip encryption key for consul agent.

The NODENAME parameter is the name of the node.

The IP parameter is the IP address of this image.

The DOMAIN parameter is the domain name to use for matrix configuration. It will be the same as the servername for the host.

ALERTEMAIL is an email address to use.

REGISTRATIONENABLE defaults to false but if set to true will allow registrations.

MYSHAREDSECRET is a shared secret key for registrations.

SMTPHOST is the mail server domain name or IP address.

SMTPPORT defaults to 25 but can be set to 465 or 587 manually.

SMTPUSER is the smtp username. SMTPPASS is the associated password.

SMTPFROM is the from email address for the authenticated SMTP user.

SSLEMAIL is an email address to use for SSL certificate registation. If NOSSL is also set, then set -E SSLEMAIL=none as it must have a value set at this time.

LDAPSERVER is the domain name or IP address of an LDAP server. Don’t include a port!

LDAPPASSWORD is the password to access the LDAP server as Manager.

LDAPDOMAIN is the domain for the LDAP server which will be split into name.tld for the purposes of updating config.

CONTROLUSER enables a control user. Copy in a SSH pubkey to /root/importauthkey to have it imported to control user account.

NOSSL will disable SSL setup for any value set. You might want this for a reverse proxy setup with SSL handled in the proxy.

REMOTELOG is an optional parameter for a remote syslog service, such as via the loki or beast-of-argh images on potluck site.

Usage

First Account

You will need to setup an admin account via cli using register_new_matrix_user.

For example:

register_new_matrix_user -u adminusername -k "Ex4mpl3sH4r3dk3y"
Password:
Confirm password:
Make admin [yes]:
Sending registration request...
Success!

The shared secret (-k) is defined in the homeserver.yaml configuration via the MYSHAREDSECRET parameter. The command asks for a password which should be unused as authentication should happen against LDAP.

Getting Started

How To Use The Ready-Made Image

FreeBSD 14.0:
pot import -p matrix-synapse-amd64-14_0 -t 2.4.1 -U https://potluck.honeyguide.net/matrix-synapse

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p matrix-synapse-amd64-14_0 -t 2.4.1 -C potluck.pub -U https://potluck.honeyguide.net/matrix-synapse

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 matrix-synapse-amd64-14_0 -p my-cloned-jail -N alias -i "em0|10.10.10.10"

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

Alternatively: Create a Jail With This Flavour Yourself

1. Create Flavour Files

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

2. Create Jail From Flavour

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

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

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

Version History

2.4

  • Version bump for new base image
  • Fix node_exporter zfs issue

2.3

  • Version bump for new base image
  • FBSD14 base image

2.2

  • Version bump for new base image

2.1

  • Version bump for new base image

2.0

  • Version bump for new base image

1.9

  • Version bump for new base image

1.8

  • Version bump for new base image

1.7

  • Version bump for new base image
  • Fix syslog-ng problems for 4.2 version, remove stats_freq option
  • Add local unbound and consul DNS services
  • Update README with consul DNS info
  • fix local_unbound dns resolution with missing parameters for access control
  • Disable consul DNS option with local_unbound as is only practical in VNET jails with a localhost
  • Adjust acme.sh setup and renew scripts for ‘$domain_ecc’ suffix which is default now
  • Bug-fixing acme.sh changes

1.6

  • Version bump for new base image

1.5

  • Version bump for new base image
  • Signified
  • Fix nologin shell for nodeexport user

1.4

  • Version increment for new feature
  • Pass in consul servers as a comma-deliminated list

1.3

  • Version bump for new base image
  • Update syslog-ng.conf stats_freq(0); -> stats(freq(0));

1.2

  • Version bump for new base image
  • Fix README for missing parameters
  • Create /mnt/matrixdata if not exist
  • Complete README missing parameter info

1.1

  • Version bump for new base image
  • New changelog format
  • Improved acme.sh script
  • TLS false for ldap connection

1.0.25

  • Fixing startup command to synapse

1.0.24

Fix consul client hcl for new format


1.0.23

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

1.0.22

  • Version bump for p3 rebuild
  • Add checklist

1.0.21

  • Rebuild for new base image, cook script

1.0.20

  • Version bump for FreeBSD-13.1 image
  • python38-* to python39-*

1.0.19

  • Added syslog-ng and remote logging

1.0.18

  • Fixes to homeserver.yaml to remove well-known

1.0.17

  • Reverting nginx.conf files missed in previous commit

1.0.16

  • Reverting .well-known setup as manually specifying delegation not helping

1.0.15

  • Nginx-server .well-known

1.0.14

  • Reverting nginx location to / and removing ssl on bit

1.0.13

  • Adding skipped nginx updates for client_max_body_size

1.0.12

  • Nginx updates for x-forward

1.0.11

  • Adding useful steps to README.md

1.0.10

  • using /.acme.sh for acme.sh stuff as problems writing to /root/.acme.sh in cook

1.0.9

  • acme.sh needs additional steps to configure

1.0.8

  • Further adjustment to manual process for certificates

1.0.7

  • New fix for certificate registration with renewal via script

1.0.6

  • Still fixing the certrenew script

1.0.5

  • Further adjustment to certrenew script to make it run on start

1.0.4

  • Fix to certrenew run process

1.0.3

  • Fixes to certrenew script

1.0.2

  • Add step to register zerossl account for acme.sh

1.0.1

  • First bash at Matrix-Synapse jail image

1.0.0

  • Initial commit

These images were built on Mon Apr 22 21:08:18 UTC 2024

Manual Image Download Links

matrix-synapse-amd64-14_0_2.4.1.xz ( )
matrix-synapse-amd64-14_0_2.4.1.xz.skein ( ) matrix-synapse-amd64-14_0_2.4.1.xz.skein.sig ( ) matrix-synapse-amd64-14_0_2.4.1.xz.meta ( )

Jenkins Pot Creation Logs

matrix-synapse-amd64-14_0_2.4.1:


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

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

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

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

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

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

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

exit_ok() {
  trap - EXIT
  exit 0
}

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

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

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

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

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

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

step "Disable sendmail"
service sendmail onedisable

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

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

step "Install package openssl"
pkg install -y openssl

step "Install package sudo"
pkg install -y sudo

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

step "Install package curl"
pkg install -y curl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package nano"
pkg install -y nano

step "Install package bash"
pkg install -y bash

step "Install package rsync"
pkg install -y rsync

step "Install package matrix server"
pkg install -y py39-matrix-synapse

step "Install package matrix ldap support"
pkg install -y py39-matrix-synapse-ldap3

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

step "Install package node_exporter"
pkg install -y node_exporter

step "Install package nginx"
pkg install -y nginx

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

step "Clean package installation"
pkg clean -y

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

step "Create necessary directories if they don't exist"
# create some necessary directories
mkdir -p /var/log/matrix-synapse
mkdir -p /var/run/matrix-synapse
mkdir -p /usr/local/etc/matrix-synapse
mkdir -p /usr/local/www/well-known/matrix

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

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

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

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

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

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


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

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

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

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

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

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

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

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

matrix-synapse/matrix-synapse+1:
matrix-synapse/matrix-synapse+1.sh:

matrix-synapse/matrix-synapse+2:
matrix-synapse/matrix-synapse+2.sh:

matrix-synapse/matrix-synapse+3:
matrix-synapse/matrix-synapse+3.sh:

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

Mon Apr 22 21:02:28 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/matrix-synapse-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on matrix-synapse-amd64-14_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching metadata signature for 14.0-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

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

Mon Apr 22 21:03:13 UTC 2024
/usr/local/etc/pot/flavours/matrix-synapse.sh -> /mnt/srv/pot/jails/matrix-synapse-amd64-14_0/m/tmp/matrix-synapse.sh
=====>  Executing matrix-synapse script on matrix-synapse-amd64-14_0
WARNING /var/log/cook.log already exists
Step 1: Bootstrap package repo
pkg already bootstrapped at /usr/local/sbin/pkg
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Install package consul
Updating FreeBSD repository catalogue...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 34050 packages processed.
All repositories are up to date.
New version of pkg detected; it needs to be installed first.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	pkg: 1.21.1 -> 1.21.2

Number of packages to be upgraded: 1

12 MiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching pkg-1.21.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading pkg from 1.21.1 to 1.21.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting pkg-1.21.2: .......... done
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:
	consul: 1.18.1_1

Number of packages to be installed: 1

The process will require 121 MiB more space.
24 MiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.18.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.18.1_1...
===> Creating groups.
Creating group 'consul' with gid '469'.
===> Creating users
Creating user 'consul' with uid '469'.
===> Creating homedir(s)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.18.1_1: ..... done
Step 7: Install package 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):

Installed packages to be UPGRADED:
	openssl: 3.0.13_2,1 -> 3.0.13_3,1

Number of packages to be upgraded: 1

6 MiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching openssl-3.0.13_3,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading openssl from 3.0.13_2,1 to 3.0.13_3,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting openssl-3.0.13_3,1: .......... done
Step 8: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 9: Install package ca_root_nss
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 10: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 11: Install package jq
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 12: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 13: Install package nano
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 14: Install package bash
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 15: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 16: Install package matrix server
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 117 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	brotli: 1.1.0,1
	expat: 2.6.2
	fontconfig: 2.15.0_2,1
	freetype2: 2.13.2
	fribidi: 1.0.13_1
	giflib: 5.2.1_1
	glib: 2.80.0,2
	graphite2: 1.3.14
	harfbuzz: 8.4.0
	jbigkit: 2.1_2
	jpeg-turbo: 3.0.2
	lcms2: 2.16_1
	libX11: 1.8.7_1,1
	libXScrnSaver: 1.2.4_1
	libXau: 1.0.9_1
	libXdmcp: 1.1.5
	libXext: 1.3.6,1
	libXft: 2.3.7_1
	libXrender: 0.9.10_2
	libdeflate: 1.20
	libedit: 3.1.20230828_1,1
	libffi: 3.4.4_1
	libgcrypt: 1.10.3_1
	libgpg-error: 1.48
	libimagequant: 4.3.0_2
	libltdl: 2.4.7
	libraqm: 0.10.1
	libsodium: 1.0.18
	libxcb: 1.16.1
	libxml2: 2.11.7
	libxslt: 1.1.37_1
	libyaml: 0.2.5
	mpdecimal: 4.0.0
	nspr: 4.35
	nss: 3.99
	openjpeg: 2.5.2
	pcre2: 10.43
	png: 1.6.43
	postgresql15-client: 15.6
	py39-Automat: 20.2.0
	py39-Babel: 2.14.0
	py39-Jinja2: 3.1.3
	py39-appdirs: 1.4.4
	py39-attrs: 23.2.0
	py39-bcrypt: 3.2.2_1
	py39-bleach: 6.1.0
	py39-canonicaljson: 2.0.0
	py39-certifi: 2024.2.2
	py39-cffi: 1.16.0
	py39-charset-normalizer: 3.3.2
	py39-constantly: 15.1.0
	py39-cryptography: 42.0.5_1,1
	py39-dateutil: 2.9.0
	py39-defusedxml: 0.7.1
	py39-elementpath: 4.4.0
	py39-h2: 4.1.0
	py39-hpack: 4.0.0
	py39-hyperframe: 6.0.0
	py39-hyperlink: 21.0.0_1
	py39-idna: 3.7
	py39-ijson: 3.2.3
	py39-immutabledict: 3.0.0
	py39-incremental: 21.3.0
	py39-jsonschema: 4.21.1
	py39-jsonschema-specifications: 2023.6.1
	py39-lxml: 4.9.3
	py39-markupsafe: 2.1.5
	py39-matrix-common: 1.3.0
	py39-matrix-synapse: 1.105.0
	py39-msgpack: 1.0.8
	py39-netaddr: 1.2.1
	py39-olefile: 0.46
	py39-openssl: 23.2.0,1
	py39-packaging: 23.2
	py39-phonenumbers: 8.13.28
	py39-pillow: 10.3.0
	py39-priority1: 1.3.0
	py39-prometheus-client: 0.17.1
	py39-psycopg2: 2.9.9_1
	py39-pyasn1: 0.6.0
	py39-pyasn1-modules: 0.3.0
	py39-pycparser: 2.22
	py39-pydantic: 1.10.14,1
	py39-pymacaroons: 0.13.0
	py39-pynacl: 1.5.0
	py39-pysaml2: 7.5.0
	py39-pyserial: 3.5_2
	py39-pysocks: 1.7.1
	py39-pytz: 2024.1,1
	py39-referencing: 0.34.0
	py39-requests: 2.31.0
	py39-rpds-py: 0.13.2_4
	py39-service-identity: 23.1.0
	py39-setuptools: 63.1.0_1
	py39-signedjson: 1.1.4
	py39-six: 1.16.0
	py39-sortedcontainers: 2.4.0
	py39-sqlite3: 3.9.18_7
	py39-tinycss2: 1.2.1_2
	py39-tkinter: 3.9.18_7
	py39-treq: 22.2.0_1
	py39-twisted: 23.8.0_1
	py39-typing-extensions: 4.11.0
	py39-unpaddedbase64: 2.1.0
	py39-urllib3: 1.26.18,1
	py39-webencodings: 0.5.1
	py39-xmlschema: 3.1.0
	py39-yaml: 6.0.1
	py39-zope.interface: 5.3.0
	python39: 3.9.18_2
	sqlite3: 3.45.1,1
	tcl86: 8.6.14_2
	tiff: 4.4.0_3
	tk86: 8.6.14_2
	webp: 1.3.2_1
	xmlsec1: 1.3.2_1
	xorgproto: 2023.2

Number of packages to be installed: 117

The process will require 483 MiB more space.
83 MiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/117] Fetching py39-attrs-23.2.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/117] Fetching png-1.6.43.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/117] Fetching libxcb-1.16.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/117] Fetching py39-elementpath-4.4.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/117] Fetching libraqm-0.10.1.pkg: ...... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/117] Fetching mpdecimal-4.0.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/117] Fetching py39-signedjson-1.1.4.pkg: . done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/117] Fetching freetype2-2.13.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/117] Fetching jpeg-turbo-3.0.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/117] Fetching py39-pyasn1-0.6.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/117] Fetching py39-hyperlink-21.0.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/117] Fetching libxslt-1.1.37_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/117] Fetching py39-cryptography-42.0.5_1,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/117] Fetching libyaml-0.2.5.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/117] Fetching py39-service-identity-23.1.0.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/117] Fetching py39-priority1-1.3.0.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/117] Fetching xmlsec1-1.3.2_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/117] Fetching py39-lxml-4.9.3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/117] Fetching nss-3.99.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/117] Fetching lcms2-2.16_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/117] Fetching py39-pydantic-1.10.14,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/117] Fetching py39-pyasn1-modules-0.3.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/117] Fetching py39-olefile-0.46.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/117] Fetching py39-referencing-0.34.0.pkg: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/117] Fetching py39-matrix-common-1.3.0.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/117] Fetching py39-markupsafe-2.1.5.pkg: .... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/117] Fetching py39-msgpack-1.0.8.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/117] Fetching py39-zope.interface-5.3.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/117] Fetching libdeflate-1.20.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/117] Fetching fribidi-1.0.13_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/117] Fetching openjpeg-2.5.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/117] Fetching py39-pynacl-1.5.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/117] Fetching py39-pillow-10.3.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/117] Fetching py39-tinycss2-1.2.1_2.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/117] Fetching py39-openssl-23.2.0,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/117] Fetching py39-hpack-4.0.0.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/117] Fetching py39-constantly-15.1.0.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/117] Fetching libxml2-2.11.7.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/117] Fetching py39-yaml-6.0.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/117] Fetching py39-Jinja2-3.1.3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/117] Fetching py39-jsonschema-4.21.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/117] Fetching py39-urllib3-1.26.18,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/117] Fetching py39-pysaml2-7.5.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/117] Fetching python39-3.9.18_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/117] Fetching py39-Automat-20.2.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/117] Fetching libXScrnSaver-1.2.4_1.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/117] Fetching libimagequant-4.3.0_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/117] Fetching py39-charset-normalizer-3.3.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/117] Fetching py39-sqlite3-3.9.18_7.pkg: ..... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/117] Fetching libX11-1.8.7_1,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/117] Fetching py39-requests-2.31.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/117] Fetching libXrender-0.9.10_2.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/117] Fetching giflib-5.2.1_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/117] Fetching xorgproto-2023.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/117] Fetching py39-unpaddedbase64-2.1.0.pkg: . done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/117] Fetching libXft-2.3.7_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/117] Fetching webp-1.3.2_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/117] Fetching py39-sortedcontainers-2.4.0.pkg: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/117] Fetching py39-prometheus-client-0.17.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/117] Fetching graphite2-1.3.14.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/117] Fetching py39-pymacaroons-0.13.0.pkg: ..... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/117] Fetching harfbuzz-8.4.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/117] Fetching py39-pyserial-3.5_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/117] Fetching py39-hyperframe-6.0.0.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/117] Fetching libedit-3.1.20230828_1,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/117] Fetching py39-ijson-3.2.3.pkg: . done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/117] Fetching libgcrypt-1.10.3_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/117] Fetching tk86-8.6.14_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/117] Fetching pcre2-10.43.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/117] Fetching py39-immutabledict-3.0.0.pkg: . done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/117] Fetching libgpg-error-1.48.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/117] Fetching brotli-1.1.0,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/117] Fetching py39-packaging-23.2.pkg: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/117] Fetching nspr-4.35.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/117] Fetching py39-dateutil-2.9.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/117] Fetching py39-pycparser-2.22.pkg: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/117] Fetching libXext-1.3.6,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/117] Fetching py39-cffi-1.16.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/117] Fetching py39-jsonschema-specifications-2023.6.1.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/117] Fetching py39-rpds-py-0.13.2_4.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/117] Fetching py39-six-1.16.0.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/117] Fetching py39-tkinter-3.9.18_7.pkg: ..... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/117] Fetching py39-setuptools-63.1.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/117] Fetching py39-pytz-2024.1,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/117] Fetching py39-psycopg2-2.9.9_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/117] Fetching libXau-1.0.9_1.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/117] Fetching py39-appdirs-1.4.4.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/117] Fetching py39-canonicaljson-2.0.0.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/117] Fetching py39-webencodings-0.5.1.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/117] Fetching libltdl-2.4.7.pkg: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/117] Fetching fontconfig-2.15.0_2,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/117] Fetching py39-incremental-21.3.0.pkg: ..... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/117] Fetching py39-bleach-6.1.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/117] Fetching py39-bcrypt-3.2.2_1.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/117] Fetching sqlite3-3.45.1,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/117] Fetching postgresql15-client-15.6.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/117] Fetching py39-Babel-2.14.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/117] Fetching py39-certifi-2024.2.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [99/117] Fetching glib-2.80.0,2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [100/117] Fetching py39-pysocks-1.7.1.pkg: .... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [101/117] Fetching libsodium-1.0.18.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [102/117] Fetching py39-treq-22.2.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [103/117] Fetching jbigkit-2.1_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [104/117] Fetching py39-xmlschema-3.1.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [105/117] Fetching libffi-3.4.4_1.pkg: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [106/117] Fetching py39-defusedxml-0.7.1.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [107/117] Fetching py39-phonenumbers-8.13.28.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [108/117] Fetching libXdmcp-1.1.5.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [109/117] Fetching tiff-4.4.0_3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [110/117] Fetching tcl86-8.6.14_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [111/117] Fetching py39-matrix-synapse-1.105.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [112/117] Fetching py39-netaddr-1.2.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [113/117] Fetching expat-2.6.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [114/117] Fetching py39-idna-3.7.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [115/117] Fetching py39-typing-extensions-4.11.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [116/117] Fetching py39-twisted-23.8.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [117/117] Fetching py39-h2-4.1.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/117] Installing xorgproto-2023.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/117] Extracting xorgproto-2023.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/117] Installing mpdecimal-4.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/117] Extracting mpdecimal-4.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/117] Installing libXau-1.0.9_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/117] Extracting libXau-1.0.9_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/117] Installing libffi-3.4.4_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/117] Extracting libffi-3.4.4_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/117] Installing libXdmcp-1.1.5...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/117] Extracting libXdmcp-1.1.5: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/117] Installing png-1.6.43...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/117] Extracting png-1.6.43: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/117] Installing libxcb-1.16.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/117] Extracting libxcb-1.16.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/117] Installing python39-3.9.18_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/117] Extracting python39-3.9.18_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/117] Installing libgpg-error-1.48...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/117] Extracting libgpg-error-1.48: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/117] Installing brotli-1.1.0,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/117] Extracting brotli-1.1.0,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/117] Installing freetype2-2.13.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/117] Extracting freetype2-2.13.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/117] Installing libxml2-2.11.7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/117] Extracting libxml2-2.11.7: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/117] Installing libX11-1.8.7_1,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/117] Extracting libX11-1.8.7_1,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/117] Installing libgcrypt-1.10.3_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/117] Extracting libgcrypt-1.10.3_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/117] Installing py39-pycparser-2.22...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/117] Extracting py39-pycparser-2.22: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/117] Installing expat-2.6.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/117] Extracting expat-2.6.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/117] Installing jpeg-turbo-3.0.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/117] Extracting jpeg-turbo-3.0.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/117] Installing py39-pyasn1-0.6.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/117] Extracting py39-pyasn1-0.6.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/117] Installing libxslt-1.1.37_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/117] Extracting libxslt-1.1.37_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/117] Installing libdeflate-1.20...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/117] Extracting libdeflate-1.20: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/117] Installing libXrender-0.9.10_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/117] Extracting libXrender-0.9.10_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/117] Installing libedit-3.1.20230828_1,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/117] Extracting libedit-3.1.20230828_1,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/117] Installing pcre2-10.43...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/117] Extracting pcre2-10.43: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/117] Installing py39-packaging-23.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/117] Extracting py39-packaging-23.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/117] Installing libXext-1.3.6,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/117] Extracting libXext-1.3.6,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/117] Installing py39-cffi-1.16.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/117] Extracting py39-cffi-1.16.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/117] Installing py39-setuptools-63.1.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/117] Extracting py39-setuptools-63.1.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/117] Installing fontconfig-2.15.0_2,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/117] Extracting fontconfig-2.15.0_2,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/117] Installing jbigkit-2.1_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/117] Extracting jbigkit-2.1_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/117] Installing py39-attrs-23.2.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/117] Extracting py39-attrs-23.2.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/117] Installing py39-cryptography-42.0.5_1,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/117] Extracting py39-cryptography-42.0.5_1,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/117] Installing py39-lxml-4.9.3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/117] Extracting py39-lxml-4.9.3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/117] Installing py39-pyasn1-modules-0.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/117] Extracting py39-pyasn1-modules-0.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/117] Installing py39-hpack-4.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/117] Extracting py39-hpack-4.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/117] Installing libXScrnSaver-1.2.4_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/117] Extracting libXScrnSaver-1.2.4_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/117] Installing libXft-2.3.7_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/117] Extracting libXft-2.3.7_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/117] Installing graphite2-1.3.14...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/117] Extracting graphite2-1.3.14: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/117] Installing py39-hyperframe-6.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/117] Extracting py39-hyperframe-6.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/117] Installing nspr-4.35...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/117] Extracting nspr-4.35: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/117] Installing py39-rpds-py-0.13.2_4...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/117] Extracting py39-rpds-py-0.13.2_4: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/117] Installing py39-six-1.16.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/117] Extracting py39-six-1.16.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/117] Installing sqlite3-3.45.1,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/117] Extracting sqlite3-3.45.1,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/117] Installing glib-2.80.0,2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/117] Extracting glib-2.80.0,2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/117] Installing py39-pysocks-1.7.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/117] Extracting py39-pysocks-1.7.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/117] Installing tiff-4.4.0_3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/117] Extracting tiff-4.4.0_3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/117] Installing tcl86-8.6.14_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/117] Extracting tcl86-8.6.14_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/117] Installing py39-idna-3.7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/117] Extracting py39-idna-3.7: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/117] Installing py39-elementpath-4.4.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/117] Extracting py39-elementpath-4.4.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/117] Installing py39-hyperlink-21.0.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/117] Extracting py39-hyperlink-21.0.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/117] Installing py39-service-identity-23.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/117] Extracting py39-service-identity-23.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/117] Installing py39-priority1-1.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/117] Extracting py39-priority1-1.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/117] Installing nss-3.99...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/117] Extracting nss-3.99: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/117] Installing lcms2-2.16_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/117] Extracting lcms2-2.16_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/117] Installing py39-referencing-0.34.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/117] Extracting py39-referencing-0.34.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/117] Installing py39-zope.interface-5.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/117] Extracting py39-zope.interface-5.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/117] Installing fribidi-1.0.13_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/117] Extracting fribidi-1.0.13_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/117] Installing py39-openssl-23.2.0,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/117] Extracting py39-openssl-23.2.0,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/117] Installing py39-constantly-15.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/117] Extracting py39-constantly-15.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/117] Installing py39-urllib3-1.26.18,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/117] Extracting py39-urllib3-1.26.18,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/117] Installing py39-Automat-20.2.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/117] Extracting py39-Automat-20.2.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/117] Installing py39-charset-normalizer-3.3.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/117] Extracting py39-charset-normalizer-3.3.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/117] Installing giflib-5.2.1_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/117] Extracting giflib-5.2.1_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/117] Installing harfbuzz-8.4.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/117] Extracting harfbuzz-8.4.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/117] Installing py39-pyserial-3.5_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/117] Extracting py39-pyserial-3.5_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/117] Installing tk86-8.6.14_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/117] Extracting tk86-8.6.14_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/117] Installing py39-appdirs-1.4.4...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/117] Extracting py39-appdirs-1.4.4: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/117] Installing py39-webencodings-0.5.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/117] Extracting py39-webencodings-0.5.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/117] Installing libltdl-2.4.7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/117] Extracting libltdl-2.4.7: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/117] Installing py39-incremental-21.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/117] Extracting py39-incremental-21.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/117] Installing py39-bcrypt-3.2.2_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/117] Extracting py39-bcrypt-3.2.2_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/117] Installing py39-certifi-2024.2.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/117] Extracting py39-certifi-2024.2.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/117] Installing libsodium-1.0.18...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/117] Extracting libsodium-1.0.18: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/117] Installing py39-typing-extensions-4.11.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/117] Extracting py39-typing-extensions-4.11.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/117] Installing py39-h2-4.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/117] Extracting py39-h2-4.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/117] Installing libraqm-0.10.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/117] Extracting libraqm-0.10.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/117] Installing libyaml-0.2.5...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/117] Extracting libyaml-0.2.5: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/117] Installing xmlsec1-1.3.2_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/117] Extracting xmlsec1-1.3.2_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/117] Installing py39-olefile-0.46...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/117] Extracting py39-olefile-0.46: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/117] Installing py39-markupsafe-2.1.5...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/117] Extracting py39-markupsafe-2.1.5: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/117] Installing openjpeg-2.5.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/117] Extracting openjpeg-2.5.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/117] Installing py39-pynacl-1.5.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/117] Extracting py39-pynacl-1.5.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/117] Installing py39-tinycss2-1.2.1_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/117] Extracting py39-tinycss2-1.2.1_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/117] Installing libimagequant-4.3.0_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/117] Extracting libimagequant-4.3.0_2: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/117] Installing py39-requests-2.31.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/117] Extracting py39-requests-2.31.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/117] Installing py39-unpaddedbase64-2.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/117] Extracting py39-unpaddedbase64-2.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/117] Installing webp-1.3.2_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/117] Extracting webp-1.3.2_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/117] Installing py39-dateutil-2.9.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/117] Extracting py39-dateutil-2.9.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/117] Installing py39-jsonschema-specifications-2023.6.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/117] Extracting py39-jsonschema-specifications-2023.6.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/117] Installing py39-tkinter-3.9.18_7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/117] Extracting py39-tkinter-3.9.18_7: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/117] Installing py39-pytz-2024.1,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/117] Extracting py39-pytz-2024.1,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/117] Installing py39-canonicaljson-2.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/117] Extracting py39-canonicaljson-2.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/117] Installing postgresql15-client-15.6...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/117] Extracting postgresql15-client-15.6: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/117] Installing py39-Babel-2.14.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/117] Extracting py39-Babel-2.14.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/117] Installing py39-xmlschema-3.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/117] Extracting py39-xmlschema-3.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/117] Installing py39-defusedxml-0.7.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/117] Extracting py39-defusedxml-0.7.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/117] Installing py39-twisted-23.8.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/117] Extracting py39-twisted-23.8.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/117] Installing py39-signedjson-1.1.4...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/117] Extracting py39-signedjson-1.1.4: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/117] Installing py39-pydantic-1.10.14,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/117] Extracting py39-pydantic-1.10.14,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [99/117] Installing py39-matrix-common-1.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [99/117] Extracting py39-matrix-common-1.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [100/117] Installing py39-msgpack-1.0.8...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [100/117] Extracting py39-msgpack-1.0.8: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [101/117] Installing py39-pillow-10.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [101/117] Extracting py39-pillow-10.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [102/117] Installing py39-yaml-6.0.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [102/117] Extracting py39-yaml-6.0.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [103/117] Installing py39-Jinja2-3.1.3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [103/117] Extracting py39-Jinja2-3.1.3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [104/117] Installing py39-jsonschema-4.21.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [104/117] Extracting py39-jsonschema-4.21.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [105/117] Installing py39-pysaml2-7.5.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [105/117] Extracting py39-pysaml2-7.5.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [106/117] Installing py39-sqlite3-3.9.18_7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [106/117] Extracting py39-sqlite3-3.9.18_7: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [107/117] Installing py39-sortedcontainers-2.4.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [107/117] Extracting py39-sortedcontainers-2.4.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [108/117] Installing py39-prometheus-client-0.17.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [108/117] Extracting py39-prometheus-client-0.17.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [109/117] Installing py39-pymacaroons-0.13.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [109/117] Extracting py39-pymacaroons-0.13.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [110/117] Installing py39-ijson-3.2.3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [110/117] Extracting py39-ijson-3.2.3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [111/117] Installing py39-immutabledict-3.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [111/117] Extracting py39-immutabledict-3.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [112/117] Installing py39-psycopg2-2.9.9_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [112/117] Extracting py39-psycopg2-2.9.9_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [113/117] Installing py39-bleach-6.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [113/117] Extracting py39-bleach-6.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [114/117] Installing py39-treq-22.2.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [114/117] Extracting py39-treq-22.2.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [115/117] Installing py39-phonenumbers-8.13.28...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [115/117] Extracting py39-phonenumbers-8.13.28: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [116/117] Installing py39-netaddr-1.2.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [116/117] Extracting py39-netaddr-1.2.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [117/117] Installing py39-matrix-synapse-1.105.0...
===> Creating groups.
Creating group 'synapse' with gid '141'.
===> Creating users
Creating user 'synapse' with uid '126'.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [117/117] Extracting py39-matrix-synapse-1.105.0: .......... done
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
Message from python39-3.9.18_2:

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
Install graphics/py-graphviz and devel/py-twisted to enable state
machine visualization (`MethodicalMachine.asDigraph`).
=====
Message from postgresql15-client-15.6:

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

postgresql-docs
  For all of the html documentation

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

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

postgresql-jdbc
  For Java JDBC support.

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

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

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

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

etc...
=====
Message from py39-matrix-synapse-1.105.0:

--
Configuring Synapse:

The following command can be used to generate a sample configuration of synapse:

/usr/local/bin/python3.9 -B -m synapse.app.homeserver -c /usr/local/etc/matrix-synapse/homeserver.yaml --generate-config -H <SERVER_NAME> --report-stats no

Please note that you will still need to manually configure paths to log
directory, database, and media storage with this method.
Step 17: Install package matrix ldap support
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:
	py39-ldap3: 2.9.1
	py39-matrix-synapse-ldap3: 0.3.0_1

Number of packages to be installed: 2

The process will require 6 MiB more space.
466 KiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching py39-matrix-synapse-ldap3-0.3.0_1.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching py39-ldap3-2.9.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing py39-ldap3-2.9.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting py39-ldap3-2.9.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing py39-matrix-synapse-ldap3-0.3.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting py39-matrix-synapse-ldap3-0.3.0_1: .......... done
Step 18: Install package acme.sh
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	acme.sh: 3.0.7_1
	socat: 1.8.0.0_3

Number of packages to be installed: 2

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

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

 ~acme/.acme.sh
 ~acme/certs

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

If you have EXAMPLES on:

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

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

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

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

New packages to be INSTALLED:
	node_exporter: 1.6.1_4

Number of packages to be installed: 1

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

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

New packages to be INSTALLED:
	nginx: 1.24.0_16,3

Number of packages to be installed: 1

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

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

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

Default path for the NGINX dynamic modules is

/usr/local/libexec/nginx.
Step 21: Install package syslog-ng
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:
	e2fsprogs-libuuid: 1.47.0
	ivykis: 0.43_1
	json-c: 0.17
	syslog-ng: 4.6.0_2

Number of packages to be installed: 4

The process will require 5 MiB more space.
1 MiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching json-c-0.17.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching e2fsprogs-libuuid-1.47.0.pkg: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching syslog-ng-4.6.0_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching ivykis-0.43_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Installing json-c-0.17...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting json-c-0.17: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Installing e2fsprogs-libuuid-1.47.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Installing ivykis-0.43_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting ivykis-0.43_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Installing syslog-ng-4.6.0_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting syslog-ng-4.6.0_2: .......... done
=====
Message from syslog-ng-4.6.0_2:

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

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

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

        syslog_ng_enable="YES"

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

        syslogd_enable="NO"

4. Shut down the standard FreeBSD syslogd:

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

5. Start syslog-ng:

     /usr/local/etc/rc.d/syslog-ng start
Step 22: Clean package installation
The following package files will be deleted:
	/var/cache/pkg/openssl-3.0.13_2,1.pkg
	/var/cache/pkg/openssl-3.0.13_2,1~9d9aca70ca.pkg
The cleanup will free 6 MiB
Deleting files: .. done
Step 23: Create necessary directories if they don't exist
Step 24: Clean cook artifacts
Step 25: Install pot local
Step 26: Set file ownership on cook scripts
Step 27: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 28: Create rc.d script to start cook
creating rc.d script to start cook
Step 29: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 30: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot matrix-synapse-amd64-14_0
=====>  Remove p46626d08f16a43 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-amd64-14_0/m/dev
===>  exporting matrix-synapse-amd64-14_0 @ 1713819908 to /tmp/matrix-synapse-amd64-14_0_2.4.1.xz

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