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
- Image Readme
- How To Use The Ready-Made Image
- Alternatively: Create a Jail With This Flavour Yourself
- Version History
- Manual Image Download Links
- Jenkins Pot Creation Logs
How To Use The Ready-Made Image
FreeBSD 13.2:
pot import -p matrix-synapse-amd64-13_2 -t 1.9.1 -U https://potluck.honeyguide.net/matrix-synapse
With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p matrix-synapse-amd64-13_2 -t 1.9.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-13_2 -p my-cloned-jail -N alias -i "em0|10.10.10.10"
Note: Some images might require specific network configuration, double check the Overview-chapter at the top.
Alternatively: Create a Jail With This Flavour Yourself
1. Create Flavour Files
Save all files and directories from https://github.com/hny-gd/potluck/tree/master/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. 13.2) and the name your jail should get.
Note: Some images might require specific network configuration, double check the Overview-chapter at the top.
Version History
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 Fri Sep 8 19:39:48 UTC 2023
Manual Image Download Links
matrix-synapse-amd64-13_2_1.9.1.xz (
)
matrix-synapse-amd64-13_2_1.9.1.xz.skein (
)
matrix-synapse-amd64-13_2_1.9.1.xz.skein.sig (
)
matrix-synapse-amd64-13_2_1.9.1.xz.meta (
)
Jenkins Pot Creation Logs
matrix-synapse-amd64-13_2_1.9.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-13_2/conf)
=====> Cloning freebsd-potluck-amd64-13_2_0_0_17 with snap
=====> clone zroot/srv/pot/jails/freebsd-potluck-amd64-13_2_0_0_17/m@1694195587 into zroot/srv/pot/jails/matrix-synapse-amd64-13_2/m
=====> Flavour: fbsd-update
=====> Starting matrix-synapse-amd64-13_2 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===> Starting the pot matrix-synapse-amd64-13_2
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=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
inet 127.0.0.1 netmask 0xff000000
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:93:a7:df:c0: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 motd:.
Updating /var/run/os-release done.
Creating and/or trimming log files.
Starting syslogd.
Starting cron.
Starting sendmail_outbound.
Fri Sep 8 19:35:43 UTC 2023
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/tmp/fbsd-update.sh
=====> Executing fbsd-update script on matrix-synapse-amd64-13_2
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching metadata signature for 13.2-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 13.2-RELEASE-p3.
No updates are available to install.
=====> Stop the pot matrix-synapse-amd64-13_2
=====> Remove p464fb778c12788 epair network interfaces
=====> unmount /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/tmp
=====> unmount /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/dev
=====> Flavour: matrix-synapse
=====> Executing matrix-synapse pot commands on matrix-synapse-amd64-13_2
=====> mount /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/tmp
=====> Source /usr/local/etc/pot/flavours/matrix-synapse.d/local copied in the pot matrix-synapse-amd64-13_2
=====> unmount /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/tmp
=====> /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/dev is already unmounted
=====> Starting matrix-synapse-amd64-13_2 pot for the initial bootstrap
=====> mount /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===> Starting the pot matrix-synapse-amd64-13_2
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=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
inet 127.0.0.1 netmask 0xff000000
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 02:ba:bb:ff:ab: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 motd:.
Updating /var/run/os-release done.
Creating and/or trimming log files.
Starting syslogd.
Starting cron.
Starting sendmail_outbound.
Fri Sep 8 19:35:49 UTC 2023
/usr/local/etc/pot/flavours/matrix-synapse.sh -> /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/tmp/matrix-synapse.sh
=====> Executing matrix-synapse script on matrix-synapse-amd64-13_2
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_outbound 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...
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.16.0_1
Number of packages to be installed: 1
The process will require 108 MiB more space.
19 MiB to be downloaded.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching consul-1.16.0_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing consul-1.16.0_1...
===> Creating groups.
Creating group 'consul' with gid '469'.
===> Creating users
Creating user 'consul' with uid '469'.
===> Creating homedir(s)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting consul-1.16.0_1: ..... done
Step 7: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 8: Install package 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 115 package(s) will be affected (of 0 checked):
New packages to be INSTALLED:
brotli: 1.0.9,1
expat: 2.5.0
fontconfig: 2.14.2,1
freetype2: 2.12.1_2
fribidi: 1.0.13
giflib: 5.2.1
glib: 2.76.5,2
graphite2: 1.3.14
harfbuzz: 7.3.0
jbigkit: 2.1_1
jpeg-turbo: 2.1.5.1
lcms2: 2.15_1
libX11: 1.8.6,1
libXScrnSaver: 1.2.4
libXau: 1.0.9
libXdmcp: 1.1.3
libXext: 1.3.4,1
libXft: 2.3.7
libXrender: 0.9.10_2
libdeflate: 1.18
libedit: 3.1.20221030,1
libffi: 3.4.4
libgcrypt: 1.10.2
libgpg-error: 1.47
libimagequant: 4.2.0_1
libltdl: 2.4.7
libraqm: 0.10.1
libsodium: 1.0.18
libxcb: 1.15_1
libxml2: 2.10.4
libxslt: 1.1.37
libyaml: 0.2.5
mpdecimal: 2.5.1
nspr: 4.35
nss: 3.92
openjpeg: 2.5.0
pcre2: 10.42
png: 1.6.39
postgresql13-client: 13.12
py39-Automat: 20.2.0
py39-Babel: 2.12.1
py39-Jinja2: 3.1.2
py39-appdirs: 1.4.4
py39-attrs: 23.1.0
py39-bcrypt: 3.2.2
py39-bleach: 5.0.1_1
py39-canonicaljson: 2.0.0
py39-certifi: 2023.5.7
py39-cffi: 1.15.1
py39-charset-normalizer: 3.1.0
py39-constantly: 15.1.0
py39-cryptography: 3.4.8_1,1
py39-dateutil: 2.8.2
py39-defusedxml: 0.7.1
py39-elementpath: 4.1.4
py39-h2: 4.0.0
py39-hpack: 4.0.0
py39-hyperframe: 6.0.0
py39-hyperlink: 21.0.0_1
py39-idna: 3.4_1
py39-ijson: 3.2.0.post0
py39-immutabledict: 2.2.4_1
py39-incremental: 21.3.0
py39-jsonschema: 4.17.3_2
py39-lxml: 4.9.2
py39-markupsafe: 2.1.3
py39-matrix-common: 1.3.0
py39-matrix-synapse: 1.85.2
py39-msgpack: 1.0.5_1
py39-netaddr: 0.8.0
py39-olefile: 0.46
py39-openssl: 21.0.0,1
py39-packaging: 23.1
py39-phonenumbers: 8.4.1
py39-pillow: 9.5.0
py39-priority1: 1.3.0
py39-prometheus-client: 0.17.0
py39-psycopg2: 2.9.6
py39-pyasn1: 0.4.8
py39-pyasn1-modules: 0.2.8
py39-pycparser: 2.21
py39-pydantic: 1.10.10
py39-pymacaroons: 0.13.0
py39-pynacl: 1.5.0
py39-pyrsistent: 0.18.1
py39-pysaml2: 7.4.1
py39-pyserial: 3.5_2
py39-pysocks: 1.7.1
py39-pytz: 2023.3,1
py39-requests: 2.31.0
py39-service_identity: 18.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.17_7
py39-tinycss2: 1.2.1_2
py39-tkinter: 3.9.17_6
py39-treq: 20.9.0
py39-twisted: 22.10.0_1
py39-typing-extensions: 4.6.3
py39-unpaddedbase64: 2.1.0
py39-urllib3: 1.26.16,1
py39-webencodings: 0.5.1
py39-xmlschema: 2.3.1
py39-yaml: 6.0
py39-zope.interface: 5.3.0
python39: 3.9.17
sqlite3: 3.42.0,1
tcl86: 8.6.13
tiff: 4.4.0_1
tk86: 8.6.13
webp: 1.3.0_1
xmlsec1: 1.2.37
xorgproto: 2022.1_1
Number of packages to be installed: 115
The process will require 472 MiB more space.
76 MiB to be downloaded.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/115] Fetching py39-attrs-23.1.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/115] Fetching png-1.6.39.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/115] Fetching libxcb-1.15_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/115] Fetching py39-elementpath-4.1.4.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/115] Fetching libraqm-0.10.1.pkg: .... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/115] Fetching mpdecimal-2.5.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/115] Fetching py39-signedjson-1.1.4.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/115] Fetching freetype2-2.12.1_2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/115] Fetching jpeg-turbo-2.1.5.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/115] Fetching py39-pyasn1-0.4.8.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/115] Fetching py39-hyperlink-21.0.0_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/115] Fetching libxslt-1.1.37.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/115] Fetching py39-cryptography-3.4.8_1,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/115] Fetching libyaml-0.2.5.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/115] Fetching py39-priority1-1.3.0.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/115] Fetching xmlsec1-1.2.37.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/115] Fetching py39-lxml-4.9.2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/115] Fetching nss-3.92.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/115] Fetching lcms2-2.15_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/115] Fetching py39-pydantic-1.10.10.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/115] Fetching py39-pyasn1-modules-0.2.8.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/115] Fetching py39-olefile-0.46.pkg: ...... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/115] Fetching py39-matrix-common-1.3.0.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/115] Fetching py39-markupsafe-2.1.3.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/115] Fetching py39-msgpack-1.0.5_1.pkg: ........ done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/115] Fetching py39-zope.interface-5.3.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/115] Fetching libdeflate-1.18.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/115] Fetching fribidi-1.0.13.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/115] Fetching openjpeg-2.5.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/115] Fetching py39-pynacl-1.5.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/115] Fetching py39-pillow-9.5.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/115] Fetching py39-tinycss2-1.2.1_2.pkg: .... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/115] Fetching py39-openssl-21.0.0,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/115] Fetching py39-pyrsistent-0.18.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/115] Fetching py39-hpack-4.0.0.pkg: ..... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/115] Fetching py39-constantly-15.1.0.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/115] Fetching libxml2-2.10.4.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/115] Fetching py39-yaml-6.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/115] Fetching py39-Jinja2-3.1.2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/115] Fetching py39-jsonschema-4.17.3_2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/115] Fetching py39-urllib3-1.26.16,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/115] Fetching py39-pysaml2-7.4.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/115] Fetching python39-3.9.17.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/115] Fetching py39-Automat-20.2.0.pkg: ....... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/115] Fetching libXScrnSaver-1.2.4.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/115] Fetching libimagequant-4.2.0_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/115] Fetching py39-charset-normalizer-3.1.0.pkg: ........ done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/115] Fetching py39-sqlite3-3.9.17_7.pkg: .... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/115] Fetching libX11-1.8.6,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/115] Fetching py39-requests-2.31.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/115] Fetching libXrender-0.9.10_2.pkg: .... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/115] Fetching giflib-5.2.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/115] Fetching xorgproto-2022.1_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/115] Fetching py39-unpaddedbase64-2.1.0.pkg: . done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/115] Fetching libXft-2.3.7.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [56/115] Fetching webp-1.3.0_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [57/115] Fetching py39-sortedcontainers-2.4.0.pkg: ..... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [58/115] Fetching py39-prometheus-client-0.17.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [59/115] Fetching py39-service_identity-18.1.0.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [60/115] Fetching graphite2-1.3.14.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [61/115] Fetching py39-pymacaroons-0.13.0.pkg: .... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [62/115] Fetching harfbuzz-7.3.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [63/115] Fetching postgresql13-client-13.12.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [64/115] Fetching py39-pyserial-3.5_2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [65/115] Fetching py39-hyperframe-6.0.0.pkg: ... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [66/115] Fetching libedit-3.1.20221030,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [67/115] Fetching py39-ijson-3.2.0.post0.pkg: ..... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [68/115] Fetching libgcrypt-1.10.2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [69/115] Fetching tk86-8.6.13.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [70/115] Fetching pcre2-10.42.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [71/115] Fetching py39-immutabledict-2.2.4_1.pkg: . done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [72/115] Fetching libgpg-error-1.47.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [73/115] Fetching brotli-1.0.9,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [74/115] Fetching py39-packaging-23.1.pkg: ......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [75/115] Fetching nspr-4.35.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [76/115] Fetching py39-dateutil-2.8.2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [77/115] Fetching py39-pycparser-2.21.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [78/115] Fetching libXext-1.3.4,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [79/115] Fetching py39-cffi-1.15.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [80/115] Fetching py39-six-1.16.0.pkg: ... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [81/115] Fetching py39-tkinter-3.9.17_6.pkg: ... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [82/115] Fetching py39-setuptools-63.1.0_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [83/115] Fetching py39-pytz-2023.3,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [84/115] Fetching py39-psycopg2-2.9.6.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [85/115] Fetching libXau-1.0.9.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [86/115] Fetching py39-appdirs-1.4.4.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [87/115] Fetching py39-canonicaljson-2.0.0.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [88/115] Fetching py39-webencodings-0.5.1.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [89/115] Fetching libltdl-2.4.7.pkg: ..... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [90/115] Fetching fontconfig-2.14.2,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [91/115] Fetching py39-incremental-21.3.0.pkg: ... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [92/115] Fetching py39-bleach-5.0.1_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [93/115] Fetching py39-bcrypt-3.2.2.pkg: .... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [94/115] Fetching sqlite3-3.42.0,1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [95/115] Fetching py39-Babel-2.12.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [96/115] Fetching py39-certifi-2023.5.7.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [97/115] Fetching glib-2.76.5,2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [98/115] Fetching py39-pysocks-1.7.1.pkg: ... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [99/115] Fetching libsodium-1.0.18.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [100/115] Fetching py39-treq-20.9.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [101/115] Fetching jbigkit-2.1_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [102/115] Fetching py39-xmlschema-2.3.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [103/115] Fetching libffi-3.4.4.pkg: ...... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [104/115] Fetching py39-defusedxml-0.7.1.pkg: .... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [105/115] Fetching py39-phonenumbers-8.4.1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [106/115] Fetching libXdmcp-1.1.3.pkg: .. done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [107/115] Fetching tiff-4.4.0_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [108/115] Fetching tcl86-8.6.13.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [109/115] Fetching py39-matrix-synapse-1.85.2.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [110/115] Fetching py39-netaddr-0.8.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [111/115] Fetching expat-2.5.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [112/115] Fetching py39-idna-3.4_1.pkg: ......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [113/115] Fetching py39-typing-extensions-4.6.3.pkg: ...... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [114/115] Fetching py39-twisted-22.10.0_1.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [115/115] Fetching py39-h2-4.0.0.pkg: ......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/115] Installing mpdecimal-2.5.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/115] Extracting mpdecimal-2.5.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/115] Installing libffi-3.4.4...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/115] Extracting libffi-3.4.4: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/115] Installing python39-3.9.17...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/115] Extracting python39-3.9.17: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/115] Installing xorgproto-2022.1_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/115] Extracting xorgproto-2022.1_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/115] Installing py39-setuptools-63.1.0_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [5/115] Extracting py39-setuptools-63.1.0_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/115] Installing libXau-1.0.9...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [6/115] Extracting libXau-1.0.9: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/115] Installing libXdmcp-1.1.3...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [7/115] Extracting libXdmcp-1.1.3: ......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/115] Installing png-1.6.39...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [8/115] Extracting png-1.6.39: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/115] Installing libxcb-1.15_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [9/115] Extracting libxcb-1.15_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/115] Installing libgpg-error-1.47...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [10/115] Extracting libgpg-error-1.47: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/115] Installing brotli-1.0.9,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [11/115] Extracting brotli-1.0.9,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/115] Installing py39-pycparser-2.21...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [12/115] Extracting py39-pycparser-2.21: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/115] Installing freetype2-2.12.1_2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [13/115] Extracting freetype2-2.12.1_2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/115] Installing libxml2-2.10.4...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [14/115] Extracting libxml2-2.10.4: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/115] Installing libX11-1.8.6,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [15/115] Extracting libX11-1.8.6,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/115] Installing libgcrypt-1.10.2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [16/115] Extracting libgcrypt-1.10.2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/115] Installing py39-cffi-1.15.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [17/115] Extracting py39-cffi-1.15.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/115] Installing expat-2.5.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [18/115] Extracting expat-2.5.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/115] Installing jpeg-turbo-2.1.5.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [19/115] Extracting jpeg-turbo-2.1.5.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/115] Installing py39-pyasn1-0.4.8...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [20/115] Extracting py39-pyasn1-0.4.8: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/115] Installing libxslt-1.1.37...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [21/115] Extracting libxslt-1.1.37: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/115] Installing py39-cryptography-3.4.8_1,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [22/115] Extracting py39-cryptography-3.4.8_1,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/115] Installing libdeflate-1.18...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [23/115] Extracting libdeflate-1.18: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/115] Installing libXrender-0.9.10_2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [24/115] Extracting libXrender-0.9.10_2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/115] Installing libedit-3.1.20221030,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [25/115] Extracting libedit-3.1.20221030,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/115] Installing pcre2-10.42...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [26/115] Extracting pcre2-10.42: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/115] Installing libXext-1.3.4,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [27/115] Extracting libXext-1.3.4,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/115] Installing py39-six-1.16.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [28/115] Extracting py39-six-1.16.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/115] Installing fontconfig-2.14.2,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [29/115] Extracting fontconfig-2.14.2,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/115] Installing jbigkit-2.1_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [30/115] Extracting jbigkit-2.1_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/115] Installing py39-attrs-23.1.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [31/115] Extracting py39-attrs-23.1.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/115] Installing py39-lxml-4.9.2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [32/115] Extracting py39-lxml-4.9.2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/115] Installing py39-pyasn1-modules-0.2.8...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [33/115] Extracting py39-pyasn1-modules-0.2.8: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/115] Installing py39-openssl-21.0.0,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [34/115] Extracting py39-openssl-21.0.0,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/115] Installing py39-hpack-4.0.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [35/115] Extracting py39-hpack-4.0.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/115] Installing libXScrnSaver-1.2.4...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [36/115] Extracting libXScrnSaver-1.2.4: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/115] Installing libXft-2.3.7...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [37/115] Extracting libXft-2.3.7: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/115] Installing graphite2-1.3.14...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [38/115] Extracting graphite2-1.3.14: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/115] Installing py39-hyperframe-6.0.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [39/115] Extracting py39-hyperframe-6.0.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/115] Installing nspr-4.35...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [40/115] Extracting nspr-4.35: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/115] Installing sqlite3-3.42.0,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [41/115] Extracting sqlite3-3.42.0,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/115] Installing py39-certifi-2023.5.7...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [42/115] Extracting py39-certifi-2023.5.7: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/115] Installing glib-2.76.5,2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [43/115] Extracting glib-2.76.5,2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/115] Installing py39-pysocks-1.7.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [44/115] Extracting py39-pysocks-1.7.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/115] Installing tiff-4.4.0_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [45/115] Extracting tiff-4.4.0_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/115] Installing tcl86-8.6.13...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [46/115] Extracting tcl86-8.6.13: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/115] Installing py39-idna-3.4_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [47/115] Extracting py39-idna-3.4_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/115] Installing py39-elementpath-4.1.4...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [48/115] Extracting py39-elementpath-4.1.4: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/115] Installing py39-hyperlink-21.0.0_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [49/115] Extracting py39-hyperlink-21.0.0_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/115] Installing py39-priority1-1.3.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [50/115] Extracting py39-priority1-1.3.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/115] Installing nss-3.92...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [51/115] Extracting nss-3.92: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/115] Installing lcms2-2.15_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [52/115] Extracting lcms2-2.15_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/115] Installing py39-zope.interface-5.3.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [53/115] Extracting py39-zope.interface-5.3.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/115] Installing fribidi-1.0.13...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [54/115] Extracting fribidi-1.0.13: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/115] Installing py39-constantly-15.1.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [55/115] Extracting py39-constantly-15.1.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [56/115] Installing py39-urllib3-1.26.16,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [56/115] Extracting py39-urllib3-1.26.16,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [57/115] Installing py39-Automat-20.2.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [57/115] Extracting py39-Automat-20.2.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [58/115] Installing py39-charset-normalizer-3.1.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [58/115] Extracting py39-charset-normalizer-3.1.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [59/115] Installing giflib-5.2.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [59/115] Extracting giflib-5.2.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [60/115] Installing py39-service_identity-18.1.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [60/115] Extracting py39-service_identity-18.1.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [61/115] Installing harfbuzz-7.3.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [61/115] Extracting harfbuzz-7.3.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [62/115] Installing py39-pyserial-3.5_2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [62/115] Extracting py39-pyserial-3.5_2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [63/115] Installing tk86-8.6.13...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [63/115] Extracting tk86-8.6.13: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [64/115] Installing py39-pytz-2023.3,1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [64/115] Extracting py39-pytz-2023.3,1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [65/115] Installing py39-appdirs-1.4.4...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [65/115] Extracting py39-appdirs-1.4.4: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [66/115] Installing py39-webencodings-0.5.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [66/115] Extracting py39-webencodings-0.5.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [67/115] Installing libltdl-2.4.7...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [67/115] Extracting libltdl-2.4.7: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [68/115] Installing py39-incremental-21.3.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [68/115] Extracting py39-incremental-21.3.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [69/115] Installing py39-bcrypt-3.2.2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [69/115] Extracting py39-bcrypt-3.2.2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [70/115] Installing libsodium-1.0.18...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [70/115] Extracting libsodium-1.0.18: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [71/115] Installing py39-typing-extensions-4.6.3...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [71/115] Extracting py39-typing-extensions-4.6.3: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [72/115] Installing py39-h2-4.0.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [72/115] Extracting py39-h2-4.0.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [73/115] Installing libraqm-0.10.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [73/115] Extracting libraqm-0.10.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [74/115] Installing libyaml-0.2.5...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [74/115] Extracting libyaml-0.2.5: ......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [75/115] Installing xmlsec1-1.2.37...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [75/115] Extracting xmlsec1-1.2.37: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [76/115] Installing py39-olefile-0.46...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [76/115] Extracting py39-olefile-0.46: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [77/115] Installing py39-markupsafe-2.1.3...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [77/115] Extracting py39-markupsafe-2.1.3: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [78/115] Installing openjpeg-2.5.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [78/115] Extracting openjpeg-2.5.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [79/115] Installing py39-pynacl-1.5.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [79/115] Extracting py39-pynacl-1.5.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [80/115] Installing py39-tinycss2-1.2.1_2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [80/115] Extracting py39-tinycss2-1.2.1_2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [81/115] Installing py39-pyrsistent-0.18.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [81/115] Extracting py39-pyrsistent-0.18.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [82/115] Installing libimagequant-4.2.0_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [82/115] Extracting libimagequant-4.2.0_1: ......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [83/115] Installing py39-requests-2.31.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [83/115] Extracting py39-requests-2.31.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [84/115] Installing py39-unpaddedbase64-2.1.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [84/115] Extracting py39-unpaddedbase64-2.1.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [85/115] Installing webp-1.3.0_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [85/115] Extracting webp-1.3.0_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [86/115] Installing postgresql13-client-13.12...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [86/115] Extracting postgresql13-client-13.12: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [87/115] Installing py39-dateutil-2.8.2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [87/115] Extracting py39-dateutil-2.8.2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [88/115] Installing py39-tkinter-3.9.17_6...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [88/115] Extracting py39-tkinter-3.9.17_6: ........ done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [89/115] Installing py39-canonicaljson-2.0.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [89/115] Extracting py39-canonicaljson-2.0.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [90/115] Installing py39-Babel-2.12.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [90/115] Extracting py39-Babel-2.12.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [91/115] Installing py39-xmlschema-2.3.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [91/115] Extracting py39-xmlschema-2.3.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [92/115] Installing py39-defusedxml-0.7.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [92/115] Extracting py39-defusedxml-0.7.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [93/115] Installing py39-twisted-22.10.0_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [93/115] Extracting py39-twisted-22.10.0_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [94/115] Installing py39-signedjson-1.1.4...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [94/115] Extracting py39-signedjson-1.1.4: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [95/115] Installing py39-pydantic-1.10.10...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [95/115] Extracting py39-pydantic-1.10.10: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [96/115] Installing py39-matrix-common-1.3.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [96/115] Extracting py39-matrix-common-1.3.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [97/115] Installing py39-msgpack-1.0.5_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [97/115] Extracting py39-msgpack-1.0.5_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [98/115] Installing py39-pillow-9.5.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [98/115] Extracting py39-pillow-9.5.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [99/115] Installing py39-yaml-6.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [99/115] Extracting py39-yaml-6.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [100/115] Installing py39-Jinja2-3.1.2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [100/115] Extracting py39-Jinja2-3.1.2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [101/115] Installing py39-jsonschema-4.17.3_2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [101/115] Extracting py39-jsonschema-4.17.3_2: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [102/115] Installing py39-pysaml2-7.4.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [102/115] Extracting py39-pysaml2-7.4.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [103/115] Installing py39-sqlite3-3.9.17_7...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [103/115] Extracting py39-sqlite3-3.9.17_7: ........ done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [104/115] Installing py39-sortedcontainers-2.4.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [104/115] Extracting py39-sortedcontainers-2.4.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [105/115] Installing py39-prometheus-client-0.17.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [105/115] Extracting py39-prometheus-client-0.17.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [106/115] Installing py39-pymacaroons-0.13.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [106/115] Extracting py39-pymacaroons-0.13.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [107/115] Installing py39-ijson-3.2.0.post0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [107/115] Extracting py39-ijson-3.2.0.post0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [108/115] Installing py39-immutabledict-2.2.4_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [108/115] Extracting py39-immutabledict-2.2.4_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [109/115] Installing py39-packaging-23.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [109/115] Extracting py39-packaging-23.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [110/115] Installing py39-psycopg2-2.9.6...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [110/115] Extracting py39-psycopg2-2.9.6: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [111/115] Installing py39-bleach-5.0.1_1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [111/115] Extracting py39-bleach-5.0.1_1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [112/115] Installing py39-treq-20.9.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [112/115] Extracting py39-treq-20.9.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [113/115] Installing py39-phonenumbers-8.4.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [113/115] Extracting py39-phonenumbers-8.4.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [114/115] Installing py39-netaddr-0.8.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [114/115] Extracting py39-netaddr-0.8.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [115/115] Installing py39-matrix-synapse-1.85.2...
===> Creating groups.
Creating group 'synapse' with gid '141'.
===> Creating users
Creating user 'synapse' with uid '126'.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [115/115] Extracting py39-matrix-synapse-1.85.2: .......... done
Running fc-cache to build fontconfig cache...
Generating GIO modules cache
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from python39-3.9.17:
--
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:
py39-gdbm databases/py-gdbm@py39
py39-sqlite3 databases/py-sqlite3@py39
py39-tkinter x11-toolkits/py-tkinter@py39
=====
Message from freetype2-2.12.1_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.16,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 postgresql13-client-13.12:
--
The PostgreSQL port has a collection of "side orders":
postgresql-docs
For all of the html documentation
p5-Pg
A perl5 API for client access to PostgreSQL databases.
postgresql-tcltk
If you want tcl/tk client support.
postgresql-jdbc
For Java JDBC support.
postgresql-odbc
For client access from unix applications using ODBC as access
method. Not needed to access unix PostgreSQL servers from Win32
using ODBC. See below.
ruby-postgres, py-psycopg2
For client access to PostgreSQL databases using the ruby & python
languages.
postgresql-plperl, postgresql-pltcl & postgresql-plruby
For using perl5, tcl & ruby as procedural languages.
postgresql-contrib
Lots of contributed utilities, postgresql functions and
datatypes. There you find pg_standby, pgcrypto and many other cool
things.
etc...
=====
Message from py39-matrix-synapse-1.85.2:
--
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.
--
Running synapse with the sqlite backend is only recommended for testing purposes.
Future versions of synapse will disable federation by default if sqlite is used.
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.8.1
py39-matrix-synapse-ldap3: 0.2.2_2
Number of packages to be installed: 2
The process will require 6 MiB more space.
432 KiB to be downloaded.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching py39-matrix-synapse-ldap3-0.2.2_2.pkg: ... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching py39-ldap3-2.8.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing py39-ldap3-2.8.1...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting py39-ldap3-2.8.1: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing py39-matrix-synapse-ldap3-0.2.2_2...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting py39-matrix-synapse-ldap3-0.2.2_2: .......... 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.6
socat: 1.7.4.4
Number of packages to be installed: 2
The process will require 2 MiB more space.
383 KiB to be downloaded.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching acme.sh-3.0.6.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching socat-1.7.4.4.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Installing socat-1.7.4.4...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting socat-1.7.4.4: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Installing acme.sh-3.0.6...
===> Creating groups.
Creating group 'acme' with gid '169'.
===> Creating users
Creating user 'acme' with uid '169'.
===> Creating homedir(s)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting acme.sh-3.0.6: .......... done
=====
Message from acme.sh-3.0.6:
--
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.5.0_6
Number of packages to be installed: 1
The process will require 11 MiB more space.
3 MiB to be downloaded.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.5.0_6.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.5.0_6...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.5.0_6: .......... done
=====
Message from node_exporter-1.5.0_6:
--
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_6,3
Number of packages to be installed: 1
The process will require 1 MiB more space.
463 KiB to be downloaded.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching nginx-1.24.0_6,3.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Installing nginx-1.24.0_6,3...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting nginx-1.24.0_6,3: .......... done
=====
Message from nginx-1.24.0_6,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
json-c: 0.16
pcre: 8.45_3
syslog-ng: 4.2.0
Number of packages to be installed: 4
The process will require 11 MiB more space.
2 MiB to be downloaded.
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching json-c-0.16.pkg: ........ done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching e2fsprogs-libuuid-1.47.0.pkg: ..... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching syslog-ng-4.2.0.pkg: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching pcre-8.45_3.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Installing json-c-0.16...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting json-c-0.16: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Installing e2fsprogs-libuuid-1.47.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Installing pcre-8.45_3...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting pcre-8.45_3: .......... done
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Installing syslog-ng-4.2.0...
[matrix-synapse-amd64-13_2.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting syslog-ng-4.2.0: .......... done
=====
Message from syslog-ng-4.2.0:
--
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
Nothing to do.
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-13_2
=====> Remove p464fb779212788 epair network interfaces
=====> unmount /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/tmp
=====> unmount /mnt/srv/pot/jails/matrix-synapse-amd64-13_2/m/dev
===> exporting matrix-synapse-amd64-13_2 @ 1694201868 to /tmp/matrix-synapse-amd64-13_2_1.9.1.xz
xz: Reduced the number of threads from 4 to 3 to not exceed the memory usage limit of 503 MiB