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.6.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.6.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.6

  • Version bump for new base image
  • Python is now py311

2.5

  • Version bump for new base image

2.4

  • Version bump for new base image
  • Fix node_exporter zfs issue
  • Set owner synapse for /usr/local/etc/matrix-synapse/DOMAIN.signing.key
  • Update certificate renewal script

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 Thu Jul 11 21:35:16 UTC 2024

Manual Image Download Links

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

Jenkins Pot Creation Logs

matrix-synapse-amd64-14_0_2.6.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 py311-matrix-synapse

step "Install package matrix ldap support"
pkg install -y py311-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_26 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_0_0_0_26/m@1720718608 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-p8 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:bb:de:88:7f: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.

Thu Jul 11 21:30:50 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 update1.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-p8.
No updates are available to install.
=====>  Stop the pot matrix-synapse-amd64-14_0
=====>  Remove p466904f087ee9 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-p8 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:e4:b3:9b:16: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.

Thu Jul 11 21:31:22 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...
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.19.0_2

Number of packages to be installed: 1

The process will require 124 MiB more space.
24 MiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.19.0_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.19.0_2...
===> 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.19.0_2: ..... 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 118 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.15
	giflib: 5.2.2
	glib: 2.80.3,2
	graphite2: 1.3.14
	harfbuzz: 9.0.0
	jbigkit: 2.1_3
	jpeg-turbo: 3.0.3
	lcms2: 2.16_2
	lerc: 4.0.0
	libX11: 1.8.9,1
	libXScrnSaver: 1.2.4_1
	libXau: 1.0.9_1
	libXdmcp: 1.1.5
	libXext: 1.3.6,1
	libXft: 2.3.8
	libXrender: 0.9.10_2
	libdeflate: 1.20
	libedit: 3.1.20240517,1
	libffi: 3.4.6
	libgcrypt: 1.11.0
	libgpg-error: 1.50
	libimagequant: 4.3.1_2
	libltdl: 2.4.7
	libraqm: 0.10.1
	libsodium: 1.0.19
	libxcb: 1.17.0
	libxml2: 2.11.8
	libxslt: 1.1.37_1
	libyaml: 0.2.5
	mpdecimal: 4.0.0
	nspr: 4.35
	nss: 3.101
	openjpeg: 2.5.2_1
	pcre2: 10.43
	png: 1.6.43
	postgresql15-client: 15.7
	py311-Automat: 22.10.0
	py311-Babel: 2.14.0
	py311-Jinja2: 3.1.3
	py311-appdirs: 1.4.4
	py311-attrs: 23.2.0
	py311-bcrypt: 3.2.2_1
	py311-bleach: 6.1.0_1
	py311-canonicaljson: 2.0.0
	py311-certifi: 2024.6.2
	py311-cffi: 1.16.0
	py311-charset-normalizer: 3.3.2_1
	py311-constantly: 15.1.0
	py311-cryptography: 42.0.8_1,1
	py311-defusedxml: 0.7.1
	py311-elementpath: 4.4.0
	py311-h2: 4.1.0
	py311-hpack: 4.0.0
	py311-hyperframe: 6.0.0
	py311-hyperlink: 21.0.0_1
	py311-idna: 3.7
	py311-ijson: 3.3.0
	py311-immutabledict: 3.0.0
	py311-incremental: 21.3.0
	py311-jsonschema: 4.22.0
	py311-jsonschema-specifications: 2023.12.1
	py311-lxml: 4.9.3
	py311-markupsafe: 2.1.5_1
	py311-matrix-common: 1.3.0
	py311-matrix-synapse: 1.105.1_3
	py311-msgpack: 1.0.8
	py311-netaddr: 1.3.0
	py311-olefile: 0.46
	py311-openssl: 23.2.0,1
	py311-packaging: 24.1
	py311-phonenumbers: 8.13.28
	py311-pillow: 10.3.0_1
	py311-priority1: 1.3.0_1
	py311-prometheus-client: 0.17.1
	py311-psycopg2: 2.9.9_1
	py311-pyasn1: 0.6.0
	py311-pyasn1-modules: 0.4.0
	py311-pycparser: 2.22
	py311-pydantic: 1.10.17,1
	py311-pymacaroons: 0.13.0_2
	py311-pynacl: 1.5.0_1
	py311-pysaml2: 7.5.0_1
	py311-pyserial: 3.5_2
	py311-pysocks: 1.7.1_1
	py311-python-dateutil: 2.9.0
	py311-pytz: 2024.1,1
	py311-referencing: 0.35.1
	py311-requests: 2.32.3
	py311-rpds-py: 0.13.2_6
	py311-service-identity: 24.1.0
	py311-setuptools: 63.1.0_1
	py311-signedjson: 1.1.4_2
	py311-six: 1.16.0
	py311-sortedcontainers: 2.4.0
	py311-sqlite3: 3.11.9_7
	py311-tinycss2: 1.3.0
	py311-tkinter: 3.11.9_7
	py311-treq: 22.2.0_1
	py311-twisted: 23.8.0_1
	py311-typing-extensions: 4.12.2
	py311-unpaddedbase64: 2.1.0_1
	py311-urllib3: 1.26.19,1
	py311-webencodings: 0.5.1
	py311-xmlschema: 3.3.1
	py311-yaml: 6.0.1
	py311-zope.interface: 5.3.0
	python311: 3.11.9
	sqlite3: 3.46.0,1
	tcl86: 8.6.14_2
	tiff: 4.6.0
	tk86: 8.6.14_2
	webp: 1.4.0_1
	xmlsec1: 1.3.2_1
	xorgproto: 2024.1

Number of packages to be installed: 118

The process will require 645 MiB more space.
99 MiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/118] Fetching png-1.6.43.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/118] Fetching py311-sqlite3-3.11.9_7.pkg: ..... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/118] Fetching libxcb-1.17.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/118] Fetching libraqm-0.10.1.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/118] Fetching mpdecimal-4.0.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/118] Fetching py311-cryptography-42.0.8_1,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/118] Fetching freetype2-2.13.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/118] Fetching jpeg-turbo-3.0.3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/118] Fetching py311-matrix-common-1.3.0.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/118] Fetching py311-service-identity-24.1.0.pkg: ..... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/118] Fetching libxslt-1.1.37_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/118] Fetching py311-hyperframe-6.0.0.pkg: ..... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/118] Fetching py311-pycparser-2.22.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/118] Fetching py311-python-dateutil-2.9.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/118] Fetching libyaml-0.2.5.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/118] Fetching py311-pysaml2-7.5.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/118] Fetching xmlsec1-1.3.2_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/118] Fetching py311-six-1.16.0.pkg: ...... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/118] Fetching nss-3.101.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/118] Fetching lcms2-2.16_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/118] Fetching py311-appdirs-1.4.4.pkg: ..... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/118] Fetching py311-bleach-6.1.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/118] Fetching py311-hyperlink-21.0.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/118] Fetching py311-twisted-23.8.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/118] Fetching py311-charset-normalizer-3.3.2_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/118] Fetching py311-prometheus-client-0.17.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/118] Fetching py311-jsonschema-4.22.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/118] Fetching py311-pyasn1-modules-0.4.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/118] Fetching py311-Automat-22.10.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/118] Fetching libdeflate-1.20.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/118] Fetching fribidi-1.0.15.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/118] Fetching openjpeg-2.5.2_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/118] Fetching py311-setuptools-63.1.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/118] Fetching py311-idna-3.7.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/118] Fetching py311-canonicaljson-2.0.0.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/118] Fetching libxml2-2.11.8.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/118] Fetching py311-cffi-1.16.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/118] Fetching py311-netaddr-1.3.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/118] Fetching py311-packaging-24.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/118] Fetching libXScrnSaver-1.2.4_1.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/118] Fetching libimagequant-4.3.1_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/118] Fetching py311-msgpack-1.0.8.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/118] Fetching py311-defusedxml-0.7.1.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/118] Fetching libX11-1.8.9,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/118] Fetching libXrender-0.9.10_2.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/118] Fetching giflib-5.2.2.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/118] Fetching xorgproto-2024.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/118] Fetching py311-pynacl-1.5.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/118] Fetching py311-pytz-2024.1,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/118] Fetching py311-pysocks-1.7.1_1.pkg: ...... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/118] Fetching libXft-2.3.8.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/118] Fetching py311-markupsafe-2.1.5_1.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/118] Fetching webp-1.4.0_1.pkg: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/118] Fetching py311-pyserial-3.5_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/118] Fetching py311-requests-2.32.3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/118] Fetching py311-attrs-23.2.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/118] Fetching graphite2-1.3.14.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/118] Fetching py311-priority1-1.3.0_1.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/118] Fetching py311-jsonschema-specifications-2023.12.1.pkg: . done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/118] Fetching py311-sortedcontainers-2.4.0.pkg: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/118] Fetching harfbuzz-9.0.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/118] Fetching py311-webencodings-0.5.1.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/118] Fetching python311-3.11.9.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/118] Fetching py311-pydantic-1.10.17,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/118] Fetching py311-certifi-2024.6.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/118] Fetching py311-pymacaroons-0.13.0_2.pkg: ...... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/118] Fetching py311-signedjson-1.1.4_2.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/118] Fetching libedit-3.1.20240517,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/118] Fetching py311-hpack-4.0.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/118] Fetching py311-ijson-3.3.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/118] Fetching py311-phonenumbers-8.13.28.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/118] Fetching libgcrypt-1.11.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/118] Fetching py311-h2-4.1.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/118] Fetching py311-treq-22.2.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/118] Fetching py311-bcrypt-3.2.2_1.pkg: ...... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/118] Fetching py311-Babel-2.14.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/118] Fetching py311-lxml-4.9.3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/118] Fetching py311-tkinter-3.11.9_7.pkg: .... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/118] Fetching tk86-8.6.14_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/118] Fetching pcre2-10.43.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/118] Fetching libgpg-error-1.50.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/118] Fetching brotli-1.1.0,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/118] Fetching py311-referencing-0.35.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/118] Fetching nspr-4.35.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/118] Fetching py311-elementpath-4.4.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/118] Fetching libXext-1.3.6,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/118] Fetching py311-yaml-6.0.1.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/118] Fetching py311-rpds-py-0.13.2_6.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/118] Fetching py311-immutabledict-3.0.0.pkg: . done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/118] Fetching py311-matrix-synapse-1.105.1_3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/118] Fetching py311-urllib3-1.26.19,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/118] Fetching libXau-1.0.9_1.pkg: .. done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/118] Fetching libltdl-2.4.7.pkg: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/118] Fetching fontconfig-2.15.0_2,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/118] Fetching py311-olefile-0.46.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/118] Fetching py311-psycopg2-2.9.9_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/118] Fetching postgresql15-client-15.7.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/118] Fetching sqlite3-3.46.0,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [99/118] Fetching py311-unpaddedbase64-2.1.0_1.pkg: . done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [100/118] Fetching glib-2.80.3,2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [101/118] Fetching py311-pillow-10.3.0_1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [102/118] Fetching py311-pyasn1-0.6.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [103/118] Fetching libsodium-1.0.19.pkg: ....... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [104/118] Fetching py311-xmlschema-3.3.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [105/118] Fetching py311-constantly-15.1.0.pkg: ... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [106/118] Fetching jbigkit-2.1_3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [107/118] Fetching py311-typing-extensions-4.12.2.pkg: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [108/118] Fetching libffi-3.4.6.pkg: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [109/118] Fetching libXdmcp-1.1.5.pkg: .... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [110/118] Fetching tiff-4.6.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [111/118] Fetching tcl86-8.6.14_2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [112/118] Fetching py311-openssl-23.2.0,1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [113/118] Fetching expat-2.6.2.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [114/118] Fetching py311-tinycss2-1.3.0.pkg: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [115/118] Fetching py311-incremental-21.3.0.pkg: ...... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [116/118] Fetching py311-Jinja2-3.1.3.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [117/118] Fetching lerc-4.0.0.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [118/118] Fetching py311-zope.interface-5.3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/118] Installing xorgproto-2024.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/118] Extracting xorgproto-2024.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/118] Installing mpdecimal-4.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/118] Extracting mpdecimal-4.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/118] Installing libXau-1.0.9_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/118] Extracting libXau-1.0.9_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/118] Installing libffi-3.4.6...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/118] Extracting libffi-3.4.6: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/118] Installing libXdmcp-1.1.5...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/118] Extracting libXdmcp-1.1.5: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/118] Installing png-1.6.43...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/118] Extracting png-1.6.43: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/118] Installing libxcb-1.17.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/118] Extracting libxcb-1.17.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/118] Installing python311-3.11.9...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/118] Extracting python311-3.11.9: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/118] Installing libgpg-error-1.50...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/118] Extracting libgpg-error-1.50: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/118] Installing brotli-1.1.0,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/118] Extracting brotli-1.1.0,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/118] Installing freetype2-2.13.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/118] Extracting freetype2-2.13.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/118] Installing py311-pycparser-2.22...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/118] Extracting py311-pycparser-2.22: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/118] Installing libxml2-2.11.8...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/118] Extracting libxml2-2.11.8: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/118] Installing libX11-1.8.9,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/118] Extracting libX11-1.8.9,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/118] Installing libgcrypt-1.11.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/118] Extracting libgcrypt-1.11.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/118] Installing expat-2.6.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/118] Extracting expat-2.6.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/118] Installing jpeg-turbo-3.0.3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/118] Extracting jpeg-turbo-3.0.3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/118] Installing libxslt-1.1.37_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/118] Extracting libxslt-1.1.37_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/118] Installing libdeflate-1.20...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/118] Extracting libdeflate-1.20: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/118] Installing py311-setuptools-63.1.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/118] Extracting py311-setuptools-63.1.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/118] Installing py311-cffi-1.16.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/118] Extracting py311-cffi-1.16.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/118] Installing py311-packaging-24.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/118] Extracting py311-packaging-24.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/118] Installing libXrender-0.9.10_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/118] Extracting libXrender-0.9.10_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/118] Installing libedit-3.1.20240517,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/118] Extracting libedit-3.1.20240517,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/118] Installing pcre2-10.43...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/118] Extracting pcre2-10.43: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/118] Installing libXext-1.3.6,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/118] Extracting libXext-1.3.6,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/118] Installing fontconfig-2.15.0_2,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/118] Extracting fontconfig-2.15.0_2,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/118] Installing py311-pyasn1-0.6.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/118] Extracting py311-pyasn1-0.6.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/118] Installing jbigkit-2.1_3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/118] Extracting jbigkit-2.1_3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/118] Installing lerc-4.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/118] Extracting lerc-4.0.0: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/118] Installing py311-cryptography-42.0.8_1,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/118] Extracting py311-cryptography-42.0.8_1,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/118] Installing py311-hyperframe-6.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/118] Extracting py311-hyperframe-6.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/118] Installing py311-six-1.16.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/118] Extracting py311-six-1.16.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/118] Installing py311-pyasn1-modules-0.4.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/118] Extracting py311-pyasn1-modules-0.4.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/118] Installing py311-idna-3.7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/118] Extracting py311-idna-3.7: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/118] Installing libXScrnSaver-1.2.4_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/118] Extracting libXScrnSaver-1.2.4_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/118] Installing py311-pysocks-1.7.1_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/118] Extracting py311-pysocks-1.7.1_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/118] Installing libXft-2.3.8...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/118] Extracting libXft-2.3.8: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/118] Installing py311-attrs-23.2.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/118] Extracting py311-attrs-23.2.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/118] Installing graphite2-1.3.14...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/118] Extracting graphite2-1.3.14: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/118] Installing py311-hpack-4.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/118] Extracting py311-hpack-4.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/118] Installing py311-lxml-4.9.3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/118] Extracting py311-lxml-4.9.3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/118] Installing nspr-4.35...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/118] Extracting nspr-4.35: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/118] Installing py311-rpds-py-0.13.2_6...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/118] Extracting py311-rpds-py-0.13.2_6: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/118] Installing sqlite3-3.46.0,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/118] Extracting sqlite3-3.46.0,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/118] Installing glib-2.80.3,2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/118] Extracting glib-2.80.3,2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/118] Installing tiff-4.6.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/118] Extracting tiff-4.6.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/118] Installing tcl86-8.6.14_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/118] Extracting tcl86-8.6.14_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/118] Installing py311-service-identity-24.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/118] Extracting py311-service-identity-24.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/118] Installing nss-3.101...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/118] Extracting nss-3.101: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/118] Installing lcms2-2.16_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/118] Extracting lcms2-2.16_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/118] Installing py311-appdirs-1.4.4...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/118] Extracting py311-appdirs-1.4.4: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/118] Installing py311-hyperlink-21.0.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [53/118] Extracting py311-hyperlink-21.0.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/118] Installing py311-charset-normalizer-3.3.2_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [54/118] Extracting py311-charset-normalizer-3.3.2_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/118] Installing py311-Automat-22.10.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [55/118] Extracting py311-Automat-22.10.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/118] Installing fribidi-1.0.15...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [56/118] Extracting fribidi-1.0.15: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/118] Installing giflib-5.2.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [57/118] Extracting giflib-5.2.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/118] Installing py311-pyserial-3.5_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [58/118] Extracting py311-pyserial-3.5_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/118] Installing py311-priority1-1.3.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [59/118] Extracting py311-priority1-1.3.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/118] Installing harfbuzz-9.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [60/118] Extracting harfbuzz-9.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/118] Installing py311-webencodings-0.5.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [61/118] Extracting py311-webencodings-0.5.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/118] Installing py311-certifi-2024.6.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [62/118] Extracting py311-certifi-2024.6.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/118] Installing py311-h2-4.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [63/118] Extracting py311-h2-4.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/118] Installing py311-bcrypt-3.2.2_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [64/118] Extracting py311-bcrypt-3.2.2_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/118] Installing tk86-8.6.14_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [65/118] Extracting tk86-8.6.14_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/118] Installing py311-referencing-0.35.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [66/118] Extracting py311-referencing-0.35.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/118] Installing py311-elementpath-4.4.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [67/118] Extracting py311-elementpath-4.4.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/118] Installing py311-urllib3-1.26.19,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [68/118] Extracting py311-urllib3-1.26.19,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/118] Installing libltdl-2.4.7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [69/118] Extracting libltdl-2.4.7: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/118] Installing libsodium-1.0.19...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [70/118] Extracting libsodium-1.0.19: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/118] Installing py311-constantly-15.1.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [71/118] Extracting py311-constantly-15.1.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/118] Installing py311-typing-extensions-4.12.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [72/118] Extracting py311-typing-extensions-4.12.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/118] Installing py311-openssl-23.2.0,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [73/118] Extracting py311-openssl-23.2.0,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/118] Installing py311-incremental-21.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [74/118] Extracting py311-incremental-21.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/118] Installing py311-zope.interface-5.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [75/118] Extracting py311-zope.interface-5.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/118] Installing libraqm-0.10.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [76/118] Extracting libraqm-0.10.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/118] Installing py311-python-dateutil-2.9.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [77/118] Extracting py311-python-dateutil-2.9.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/118] Installing libyaml-0.2.5...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [78/118] Extracting libyaml-0.2.5: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/118] Installing xmlsec1-1.3.2_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [79/118] Extracting xmlsec1-1.3.2_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/118] Installing py311-twisted-23.8.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [80/118] Extracting py311-twisted-23.8.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/118] Installing openjpeg-2.5.2_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [81/118] Extracting openjpeg-2.5.2_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/118] Installing py311-canonicaljson-2.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [82/118] Extracting py311-canonicaljson-2.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/118] Installing libimagequant-4.3.1_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [83/118] Extracting libimagequant-4.3.1_2: ......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/118] Installing py311-defusedxml-0.7.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [84/118] Extracting py311-defusedxml-0.7.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/118] Installing py311-pynacl-1.5.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [85/118] Extracting py311-pynacl-1.5.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/118] Installing py311-pytz-2024.1,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [86/118] Extracting py311-pytz-2024.1,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/118] Installing py311-markupsafe-2.1.5_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [87/118] Extracting py311-markupsafe-2.1.5_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/118] Installing webp-1.4.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [88/118] Extracting webp-1.4.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/118] Installing py311-requests-2.32.3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [89/118] Extracting py311-requests-2.32.3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/118] Installing py311-jsonschema-specifications-2023.12.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [90/118] Extracting py311-jsonschema-specifications-2023.12.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/118] Installing py311-Babel-2.14.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [91/118] Extracting py311-Babel-2.14.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/118] Installing py311-tkinter-3.11.9_7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [92/118] Extracting py311-tkinter-3.11.9_7: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/118] Installing py311-olefile-0.46...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [93/118] Extracting py311-olefile-0.46: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/118] Installing postgresql15-client-15.7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [94/118] Extracting postgresql15-client-15.7: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/118] Installing py311-unpaddedbase64-2.1.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [95/118] Extracting py311-unpaddedbase64-2.1.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/118] Installing py311-xmlschema-3.3.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [96/118] Extracting py311-xmlschema-3.3.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/118] Installing py311-tinycss2-1.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [97/118] Extracting py311-tinycss2-1.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/118] Installing py311-sqlite3-3.11.9_7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [98/118] Extracting py311-sqlite3-3.11.9_7: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [99/118] Installing py311-matrix-common-1.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [99/118] Extracting py311-matrix-common-1.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [100/118] Installing py311-pysaml2-7.5.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [100/118] Extracting py311-pysaml2-7.5.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [101/118] Installing py311-bleach-6.1.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [101/118] Extracting py311-bleach-6.1.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [102/118] Installing py311-prometheus-client-0.17.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [102/118] Extracting py311-prometheus-client-0.17.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [103/118] Installing py311-jsonschema-4.22.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [103/118] Extracting py311-jsonschema-4.22.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [104/118] Installing py311-netaddr-1.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [104/118] Extracting py311-netaddr-1.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [105/118] Installing py311-msgpack-1.0.8...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [105/118] Extracting py311-msgpack-1.0.8: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [106/118] Installing py311-sortedcontainers-2.4.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [106/118] Extracting py311-sortedcontainers-2.4.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [107/118] Installing py311-pydantic-1.10.17,1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [107/118] Extracting py311-pydantic-1.10.17,1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [108/118] Installing py311-pymacaroons-0.13.0_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [108/118] Extracting py311-pymacaroons-0.13.0_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [109/118] Installing py311-signedjson-1.1.4_2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [109/118] Extracting py311-signedjson-1.1.4_2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [110/118] Installing py311-ijson-3.3.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [110/118] Extracting py311-ijson-3.3.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [111/118] Installing py311-phonenumbers-8.13.28...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [111/118] Extracting py311-phonenumbers-8.13.28: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [112/118] Installing py311-treq-22.2.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [112/118] Extracting py311-treq-22.2.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [113/118] Installing py311-yaml-6.0.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [113/118] Extracting py311-yaml-6.0.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [114/118] Installing py311-immutabledict-3.0.0...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [114/118] Extracting py311-immutabledict-3.0.0: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [115/118] Installing py311-psycopg2-2.9.9_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [115/118] Extracting py311-psycopg2-2.9.9_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [116/118] Installing py311-pillow-10.3.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [116/118] Extracting py311-pillow-10.3.0_1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [117/118] Installing py311-Jinja2-3.1.3...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [117/118] Extracting py311-Jinja2-3.1.3: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [118/118] Installing py311-matrix-synapse-1.105.1_3...
===> 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] [118/118] Extracting py311-matrix-synapse-1.105.1_3: .......... done
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
=====
Message from python311-3.11.9:

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

py311-gdbm       databases/py-gdbm@py311
py311-sqlite3    databases/py-sqlite3@py311
py311-tkinter    x11-toolkits/py-tkinter@py311
=====
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 py311-Automat-22.10.0:

--
Install graphics/py-graphviz and devel/py-twisted to enable state
machine visualization (`MethodicalMachine.asDigraph`).
=====
Message from py311-urllib3-1.26.19,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 postgresql15-client-15.7:

--
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 py311-matrix-synapse-1.105.1_3:

--
Configuring Synapse:

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

/usr/local/bin/python3.11 -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:
	py311-ldap3: 2.9.1
	py311-matrix-synapse-ldap3: 0.3.0_1

Number of packages to be installed: 2

The process will require 7 MiB more space.
609 KiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching py311-matrix-synapse-ldap3-0.3.0_1.pkg: ...... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching py311-ldap3-2.9.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing py311-ldap3-2.9.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting py311-ldap3-2.9.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing py311-matrix-synapse-ldap3-0.3.0_1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting py311-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_7

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_7.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_7...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting node_exporter-1.6.1_7: .......... done
=====
Message from node_exporter-1.6.1_7:

--
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.26.1,3

Number of packages to be installed: 1

The process will require 2 MiB more space.
554 KiB to be downloaded.
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching nginx-1.26.1,3.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing nginx-1.26.1,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.26.1,3: .......... done
=====
Message from nginx-1.26.1,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.1
	ivykis: 0.43.2
	json-c: 0.17
	syslog-ng: 4.7.1

Number of packages to be installed: 4

The process will require 6 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.1.pkg: ........ done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching syslog-ng-4.7.1.pkg: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching ivykis-0.43.2.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.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting e2fsprogs-libuuid-1.47.1: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Installing ivykis-0.43.2...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting ivykis-0.43.2: .......... done
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Installing syslog-ng-4.7.1...
[matrix-synapse-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting syslog-ng-4.7.1: .......... done
=====
Message from syslog-ng-4.7.1:

--
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-14_0
=====>  Remove p466904f297ee9 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 @ 1720733591 to /tmp/matrix-synapse-amd64-14_0_2.6.1.xz

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