Matrix Synapse (Nomad)

Overview

IMPORTANT NOTE: THIS IS A BETA IMAGE!

This instance uses sqlite instead of postgres and may not be suitable for busy servers.

This is a Matrix Synapse jail that can be started with pot but it can also be deployed via nomad.

For more details about nomadimages, see about potluck.

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
  • Add an adjusted nomad job file to nomad to run

Parameters

IP is the IP address of the jail. (-i “10.10.10.10”)

DOMAIN is the domain for synapse. (-d “domain”)

ALERTEMAIL is the email address for alerts. (-a “email@example.com”)

ENABLEREGISTRATION is whether to enable account registration or not. (-e “false”)

MYSHAREDSECRET is the shared secret to use. (-s “secret”)

SMTPHOST is the mail server to use. (-h “smtp.example.com”)

SMTPPORT is the SMTP port to use. (-p “25”)

SMTPUSER is the username for authenticated SMTP. (-u “username”)

SMTPPASS is the password for authenticated SMTP. (-c “password”)

SMTPFROM is the email from address for authenticated SMTP. (-f “email@example.com”)

LDAPSERVER is the IP or domain name of the LDAP server. (-l “ldap.example.com”)

LDAPPASSWORD is the password to use for LDAP. (-b “ldappassword”)

LDAPDOMAIN is the domain in use by LDAP. (-t “example2.com”)

NOSSL set to true disables SSL on nginx. (-n “false”)

CONTROLUSER set to true enables a control user. (-x “true”)

SSLEMAIL is the registration email to use with zerossl. (-y “email@example.com”)

Nomad Job Description Example

This is an untested nomad job file to use as a starting point.

job "example" {
  datacenters = ["datacenter"]
  type        = "service"

  group "group1" {
    count = 1 

    task "www1" {
      driver = "pot"

      service {
        tags = ["nginx", "www", "matrix"]
        name = "matrix"
        port = "http"

         check {
            type     = "tcp"
            name     = "tcp"
            interval = "60s"
            timeout  = "30s"
          }
          check_restart {
            limit = 5
            grace = "120s"
            ignore_warnings = false
          }
      }

      env {
        IP = "10.10.10.10"
        DOMAIN = "example.com"
        ALERTEMAIL = "user@example.com"
        ENABLEREGISTRATION = "false"
        MYSHAREDSECRET = "sharedsecret"
        SMTPHOST = "smtp.example.com"
        SMTPPORT = "25"
        SMTPUSER = "username"
        SMTPPASS = "password"
        SMTPFROM = "user@example.com"
        LDAPSERVER = "10.10.10.20"
        LDAPPASSWORD = "ldappassword"
        LDAPDOMAIN = "ldapdomain"
        NOSSL = "false"
        CONTROLUSER = "true"
        SSLEMAIL = "user@example.com"
      }
      config {
        image = "https://potluck.honeyguide.net/matrix-synapse-nomad/"
        pot = "matrix-synapse-nomad-amd64-13_0"
        tag = "0.10.2"
        command = "/usr/local/bin/cook"
        args = [""]

        copy = [
         "/path/to/importauthkey:/root/importauthkey"
        ]
        mount = [
         "/mnt/matrixdata:/mnt"
        ]
        port_map = {
          http = "80"
          https = "443"
          matrix = "8448"
        }
      }

      resources {
        cpu = 1000
        memory = 1024

        network {
          mbits = 10
          port "http" {}
          port "https" {}
          port "matrix" {}
        }
      }
    }
  }
}

Getting Started

How To Use The Ready-Made Image

FreeBSD 13.0:
pot import -p matrix-synapse-nomad-amd64-13_0 -t 0.10.2 -U https://potluck.honeyguide.net/matrix-synapse-nomad

FreeBSD 12.3:
pot import -p matrix-synapse-nomad-amd64-12_3 -t 0.10.2 -U https://potluck.honeyguide.net/matrix-synapse-nomad

If you don’t want to use the default pot bridged network configuration but instead need an individual network setup (e.g. assign a host IP address), after importing it you can simply clone the jail like that (em0 is the host network adapter in this example):
pot clone -P matrix-synapse-nomad-amd64-13_0 -p my-cloned-jail -N alias -i "em0|10.10.10.10"

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

Alternatively: Create a Jail With This Flavour Yourself

1. Create Flavour Files

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

2. Create Jail From Flavour

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

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

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

Version History

0.10.2

  • Updating to match matrix-synapse image

0.10.1

  • Full rebuild nomad image for latest python and matrix

0.9.3

  • Rebuild for FreeBSD 12_3 and 13 & pot 13

0.9.2

  • Rebuild for FreeBSD 13 & new packages

0.9.1


0.9

  • Initial commit, beta

These images were built on Thu Jan 13 17:44:13 UTC 2022

Manual Image Download Links

matrix-synapse-nomad-amd64-13_0_0.10.2.xz ( 432.524 MB )
matrix-synapse-nomad-amd64-13_0_0.10.2.xz.skein ( 0.250977 KB ) matrix-synapse-nomad-amd64-13_0_0.10.2.xz.meta ( 0.00195312 KB )

matrix-synapse-nomad-amd64-12_3_0.10.2.xz ( 381.413 MB )
matrix-synapse-nomad-amd64-12_3_0.10.2.xz.skein ( 0.250977 KB ) matrix-synapse-nomad-amd64-12_3_0.10.2.xz.meta ( 0.00195312 KB )

Jenkins Pot Creation Logs

matrix-synapse-nomad-amd64-13_0_0.10.2:


matrix-synapse-nomad/matrix-synapse-nomad:
set-attribute -A persistent -V OFF
set-attribute -A no-rc-script -V ON
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/nginx.conf -d /root/nginx.conf
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/nginx.nossl.conf -d /root/nginx.nossl.conf
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/homeserver.yaml -d /root/homeserver.yaml
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/my.log.config -d /root/my.log.config
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/certrenew.sh -d /root/certrenew.sh
matrix-synapse-nomad/matrix-synapse-nomad.sh:
#!/bin/sh

# POTLUCK TEMPLATE v2.0
# EDIT THE FOLLOWING FOR NEW FLAVOUR:
# 1. RUNS_IN_NOMAD - yes or no
# 2. 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
# 3. Adjust package installation between BEGIN & END PACKAGE SETUP
# 4. Adjust jail configuration script generation between BEGIN & END COOK
#    Configure the config files that have been copied in where necessary

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

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

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

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

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

exit_ok() {
  trap - EXIT
  exit 0
}

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

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

# -------------- BEGIN PACKAGE SETUP -------------
step "Bootstrap package repo"
mkdir -p /usr/local/etc/pkg/repos
# shellcheck disable=SC2016
#echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest" }' \
echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/quarterly" }' \
  >/usr/local/etc/pkg/repos/FreeBSD.conf
ASSUME_ALWAYS_YES=yes pkg bootstrap

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

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

step "Disable sendmail"
service sendmail onedisable

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

# -------- BEGIN PACKAGE & MOUNTPOINT SETUP -------------
# Install packages
step "Install package sudo"
pkg install -y sudo

step "Install package openssl"
pkg install -y openssl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package curl"
pkg install -y curl

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

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

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

step "Install package nginx"
pkg install -y nginx

step "Clean package installation"
pkg clean -y

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

# ---------- END PACKAGE & MOUNTPOINT SETUP -------------

#
# Create configurations
#

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

# clear any old cook runtime file
step "Clean cook artifacts"
rm -rf /usr/local/bin/cook

# ----------------- BEGIN COOK ------------------
step "Create cook script"
echo "#!/bin/sh
RUNS_IN_NOMAD=$RUNS_IN_NOMAD
# declare this again for the pot image, might work carrying variable through like
# with above
COOKLOG=/var/log/cook.log

# No need to change this, just ensures configuration is done only once
if [ -e /usr/local/etc/pot-is-seasoned ]
then
    # If this pot flavour is blocking (i.e. it should not return),
    # we block indefinitely
    if [ \"\$RUNS_IN_NOMAD\" = \"true\" ]
    then
        /bin/sh /etc/rc
        tail -f /dev/null
    fi
    exit 0
fi


# ADJUST THIS: STOP SERVICES AS NEEDED BEFORE CONFIGURATION


# No need to adjust this:
# If this pot flavour is not blocking, we need to read the environment first from /tmp/environment.sh
# where pot is storing it in this case
if [ -e /tmp/environment.sh ]
then
    . /tmp/environment.sh
fi

#
# ADJUST THIS BY CHECKING FOR ALL VARIABLES YOUR FLAVOUR NEEDS:
#

# Convert parameters to variables if passed (overwrite environment)
while getopts s:e:r:k:h:u:p:l:b:d:w:n: option
do
    case \"\${option}\"
    in
      i) IP=\${OPTARG};;
      d) DOMAIN=\${OPTARG};;
      a) ALERTEMAIL=\${OPTARG};;
      e) ENABLEREGISTRATION=\${OPTARG};;
      s) MYSHAREDSECRET=\${OPTARG};;
      h) SMTPHOST=\${OPTARG};;
      p) SMTPPORT=\${OPTARG};;
      u) SMTPUSER=\${OPTARG};;
      c) SMTPPASS=\${OPTARG};;
      f) SMTPFROM=\${OPTARG};;
      l) LDAPSERVER=\${OPTARG};;
      b) LDAPPASSWORD=\${OPTARG};;
      t) LDAPDOMAIN=\${OPTARG};;
      n) NOSSL=\${OPTARG};;
      x) CONTROLUSER=\${OPTARG};;
      y) SSLEMAIL=\${OPTARG};;
    esac
done

# Check config variables are set
if [ -z \${IP+x} ];
then
    echo 'IP is unset - see documentation how to pass in the IP address as a parameter' >> /var/log/cook.log
    echo 'IP is unset - see documentation how to pass in the IP address as a parameter'
    exit 1
fi
if [ -z \${DOMAIN+x} ]; then
    echo 'DOMAIN is unset - see documentation how to pass in a domain name as a parameter' >> /var/log/cook.log
    echo 'DOMAIN is unset - see documentation how to pass in a domain name as a parameter'
    exit 1
fi
if [ -z \${ALERTEMAIL+x} ];
then
    echo 'ALERTEMAIL is unset - see documentation for how to pass in the alert email address as a parameter' >> /var/log/cook.log
    echo 'ALERTEMAIL is unset - see documentation for how to pass in the alert email address as a parameter'
    exit 1
fi
if [ -z \${ENABLEREGISTRATION+x} ];
then
    echo 'REGISTRATIONENABLE is unset - defaulting to false - see documentation for how to set true or false to enable registrations' >> /var/log/cook.log
    echo 'REGISTRATIONENABLE is unset - defaulting to false - see documentation for how to set true or false to enable registrations'
    REGISTRATIONENABLE=false
fi
if [ -z \${MYSHAREDSECRET+x} ];
then
    echo 'MYSHAREDSECRET is unset - please provide a shared secret - see documentation for how to pass this in as a parameter' >> /var/log/cook.log
    echo 'MYSHAREDSECRET is unset - please provide a shared secret - see documentation for how to pass this in as a parameter'
    exit 1
fi
if [ -z \${SMTPHOST+x} ];
then
    echo 'SMTPHOST is unset - please include the mail host - see documentation for how to pass in the mail host as a parameter' >> /var/log/cook.log
    echo 'SMTPHOST is unset - please include the mail host - see documentation for how to pass in the mail host as a parameter'
    exit 1
fi
if [ -z \${SMTPPORT+x} ]; then
    echo 'SMTPPORT is unset - defaulting to port 25 - see documentation for how to pass in the smtp port as a parameter' >> /var/log/cook.log
    echo 'SMTPPORT is unset - defaulting to port 25 - see documentation for how to pass in the smtp port as a parameter'
    SMTPPORT=25
fi
if [ -z \${SMTPUSER+x} ];
then
    echo 'SMTPUSER is unset - see documentation for how to pass in a smtp username as a parameter' >> /var/log/cook.log
    echo 'SMTPUSER is unset - see documentation for how to pass in a smtp username as a parameter'
    exit 1
fi
if [ -z \${SMTPPASS+x} ];
then
    echo 'SMTPPASS is unset - see documentation for how to pass in a smtp password as a parameter' >> /var/log/cook.log
    echo 'SMTPPASS is unset - see documentation for how to pass in a smtp password as a parameter'
    exit 1
fi
if [ -z \${SMTPFROM+x} ]; then
    echo 'SMTPFROM is unset - see documentation for how to pass in the from address as a parameter' >> /var/log/cook.log
    echo 'SMTPFROM is unset - see documentation for how to pass in the from address as a parameter'
    exit 1
fi
if [ -z \${LDAPSERVER+x} ]; then
    echo 'LDAPSERVER is unset - see documentation for how to pass in the LDAP server as a parameter' >> /var/log/cook.log
    echo 'LDAPSERVER is unset - see documentation for how to pass in the LDAP server as a parameter'
    exit 1
fi
if [ -z \${LDAPPASSWORD+x} ]; then
    echo 'LDAPPASSWORD is unset - see documentation for how to pass in the LDAP password as a parameter' >> /var/log/cook.log
    echo 'LDAPPASSWORD is unset - see documentation for how to pass in the LDAP password as a parameter'
    exit 1
fi
if [ -z \${LDAPDOMAIN+x} ]; then
    echo 'LDAPDOMAIN is unset - see documentation how to pass in the LDAP domain name as a parameter' >> /var/log/cook.log
    echo 'LDAPDOMAIN is unset - see documentation how to pass in the LDAP domain name as a parameter'
    exit 1
fi
if [ -z \${NOSSL+x} ]; then
    echo 'NOSSL is unset - default true - see documentation for how to enable SSL' >> /var/log/cook.log
    echo 'NOSSL is unset - default true - see documentation for how to enable SSL'
    NOSSL=true
fi
if [ -z \${CONTROLUSER+x} ]; then
    echo 'CONTROLUSER is unset - default false - see documentation for how to enable a control user SSH with authorized_keys file' >> /var/log/cook.log
    echo 'CONTROLUSER is unset - default false - see documentation for how to enable a control user SSH with authorized_keys file'
    CONTROLUSER=false
fi
if [ -z \${SSLEMAIL+x} ]; then
    echo 'SSLEMAIL is unset - see documentation for how to set email address for acme.sh regitration' >> /var/log/cook.log
    echo 'SSLEMAIL is unset - see documentation for how to set email address for acme.sh regitration'
    exit 1
fi


# ADJUST THIS BELOW: NOW ALL THE CONFIGURATION FILES NEED TO BE ADJUSTED & COPIED:

# check that /mnt/matrixdata exists
if [ -d /mnt/matrixdata ]; then
    echo \"INFO: /mnt/matrixdata exists. All good.\"
else
    echo \"ERROR: /mnt/matrixdata does not exist. Where is the persistent storage?\"
    exit 1
fi

# make dirs
mkdir -p /mnt/matrixdata/matrix-synapse
mkdir -p /mnt/matrixdata/media_store
mkdir -p /mnt/matrixdata/control
mkdir -p /usr/local/www/well-known/matrix

# double check permissions on directories
chown synapse /mnt/matrixdata
chown -R synapse /mnt/matrixdata/matrix-synapse
chmod -R ugo+rw /mnt/matrixdata/matrix-synapse
chown -R synapse /mnt/matrixdata/media_store
chmod -R ugo+rw /mnt/matrixdata/media_store
chown -R synapse /var/log/matrix-synapse
chown -R synapse /var/run/matrix-synapse

# split domain into parts for use in matrix-synapse ldap configuration
MYSUFFIX=\$(echo \${LDAPDOMAIN} | awk -F '.' 'NF>=2 {print \$(NF-1)}')
MYTLD=\$(echo \${LDAPDOMAIN} | awk -F '.' 'NF>=2 {print \$(NF)}')
echo \"From domain name of \${LDAPDOMAIN} we get MYSUFFIX of \${MYSUFFIX} and MYTLD of \${MYTLD}\"

# generate macaroon and form key
MYMACAROON=\$(/usr/bin/openssl rand -base64 48)
MYFORMKEY=\$(/usr/bin/openssl rand -base64 48)

# copy over log config
if [ -f /root/my.log.config ]; then
    cp -f /root/my.log.config /usr/local/etc/matrix-synapse/my.log.config
fi

# generate basic setup
/usr/local/bin/python3.8 -B -m synapse.app.homeserver -c /usr/local/etc/matrix-synapse/homeserver.yaml --generate-config -H \${DOMAIN} --report-stats no

mv /usr/local/etc/matrix-synapse/homeserver.yaml /usr/local/etc/matrix-synapse/homeserver.yaml.generated

# set variables and copy over homeserver.yaml
if [ -f /root/homeserver.yaml ]; then
    sed < /root/homeserver.yaml \
    -e \"s|%%DOMAIN%%|\${DOMAIN}|g\" \
    -e \"s|%%ALERTEMAIL%%|\${ALERTEMAIL}|g\" \
    -e \"s|%%REGISTRATIONENABLE%%|\${REGISTRATIONENABLE}|g\" \
    -e \"s|%%MYSHAREDSECRET%%|\${MYSHAREDSECRET}|g\" \
    -e \"s|%%MYMACAROON%%|\${MYMACAROON}|g\" \
    -e \"s|%%MYFORMKEY%%|\${MYFORMKEY}|g\" \
    -e \"s|%%SMTPHOST%%|\${SMTPHOST}|g\" \
    -e \"s|%%SMTPPORT%%|\${SMTPPORT}|g\" \
    -e \"s|%%SMTPUSER%%|\${SMTPUSER}|g\" \
    -e \"s|%%SMTPPASS%%|\${SMTPPASS}|g\" \
    -e \"s|%%LDAPSERVER%%|\${LDAPSERVER}|g\" \
    -e \"s|%%MYSUFFIX%%|\${MYSUFFIX}|g\" \
    -e \"s|%%MYTLD%%|\${MYTLD}|g\" \
    -e \"s|%%LDAPPASSWORD%%|\${LDAPPASSWORD}|g\" > /usr/local/etc/matrix-synapse/homeserver.yaml
else
    echo \"Error: no /root/homeserver.yaml file to modify. This error should not happen in prebuilt pot image.\"
fi

# enable matrix
service synapse enable

# setup control user
# sshd (control user)
if [ \${CONTROLUSER} = yes ]; then
    pw user add -n control -c 'Control Account' -d /mnt/matrixdata/control -G wheel -m -s /bin/sh
    mkdir -p /mnt/matrixdata/control/.ssh
    chown control:control /mnt/matrixdata/control/.ssh
    # copy in importauthkey to enable a specific pubkey access
    if [ -f /root/importauthkey ]; then
        cat /root/importauthkey > /mnt/matrixdata/control/.ssh/authorized_keys
    else
        touch /mnt/matrixdata/control/.ssh/authorized_keys
    fi
    chown control:control /mnt/matrixdata/control/.ssh/authorized_keys
    chmod u+rw /mnt/matrixdata/control/.ssh/authorized_keys
    chmod go-w /mnt/matrixdata/control/.ssh/authorized_keys
    echo \"StrictModes no\" >> /etc/ssh/sshd_config
    service sshd enable
    service sshd restart
fi

# setup nginx.conf
if [ \${NOSSL} = true ]; then
    if [ -f /root/nginx.nossl.conf ]; then
        sed < /root/nginx.nossl.conf \
        -e \"s|%%DOMAIN%%|\${DOMAIN}|g\" > /usr/local/etc/nginx/nginx.conf
    else
        echo \"Error: no /root/nginx.nossl.conf file to modify. This error should not happen in prebuilt pot image.\"
    fi
else
    if [ -f /root/nginx.conf ]; then
        sed < /root/nginx.conf \
        -e \"s|%%DOMAIN%%|\${DOMAIN}|g\" > /usr/local/etc/nginx/nginx.conf
    else
        echo \"Error: no /root/nginx.conf file to modify. This error should not happen in prebuilt pot image.\"
    fi
    # ssl steps
    if [ -f /root/certrenew.sh ]; then
        sed -i .orig -e \"s|%%SSLEMAIL%%|\${SSLEMAIL}|g\" -e \"s|%%DOMAIN%%|\${DOMAIN}|g\" /root/certrenew.sh
        chmod u+x /root/certrenew.sh
        echo \"30      4       1       *       *       root   /bin/sh /root/certrenew.sh\" >> /etc/crontab
    fi
fi

# enable nginx
service nginx enable

# ADJUST THIS: START THE SERVICES AGAIN AFTER CONFIGURATION

# run certificate renewal script
if [ \${NOSSL} = false ]; then
    echo \"Generating certificates then starting services with SSL\"
    cd /root
    /usr/local/sbin/acme.sh --register-account -m \${SSLEMAIL} --server zerossl
    /usr/local/sbin/acme.sh --force --issue -d \${DOMAIN} --standalone
    cp -f /.acme.sh/\${DOMAIN}/* /usr/local/etc/ssl/
    if [ -f /usr/local/etc/ssl/\${DOMAIN}.key ]; then
        service nginx start
        service synapse start
    else
        echo \"Error: where is /usr/local/etc/ssl/\${DOMAIN}.key?\"
    fi
else
    echo \"Starting services without SSL\"
    service synapse start
    service nginx start
fi

# Do not touch this:
touch /usr/local/etc/pot-is-seasoned

# If this pot flavour is blocking (i.e. it should not return), there is no /tmp/environment.sh
# created by pot and we now after configuration block indefinitely
if [ \"\$RUNS_IN_NOMAD\" = \"true\" ]
then
    /bin/sh /etc/rc
    tail -f /dev/null
fi
" > /usr/local/bin/cook

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


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

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

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

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

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

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

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

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


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

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

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

matrix-synapse-nomad/matrix-synapse-nomad+4:
set-cmd -c "/usr/local/bin/cook"
matrix-synapse-nomad/matrix-synapse-nomad+4.sh:
Password:===>  Creating a new pot
===>  pot name     : matrix-synapse-nomad-amd64-13_0
===>  type         : single
===>  base         : 13.0
===>  pot_base     : 
===>  level        : 0
===>  network-type : public-bridge
===>  network-stack: ipv4
===>  ip           : 10.192.0.3
===>  bridge       : 
===>  dns          : inherit
===>  flavours     : fbsd-update matrix-synapse-nomad matrix-synapse-nomad+1 matrix-synapse-nomad+2 matrix-synapse-nomad+3 matrix-synapse-nomad+4
===>  Fetching FreeBSD 13.0
===>  Extract the tarball
=====>  Flavour: fbsd-update
=====>  Starting matrix-synapse-nomad-amd64-13_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
defaultrouter: NO -> 10.192.0.1
===>  Starting the pot matrix-synapse-nomad-amd64-13_0
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:ef:b5:09:6c: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
Updating /var/run/os-release done.
Creating and/or trimming log files.
Clearing /tmp (X related).
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.

Thu Jan 13 17:25:45 UTC 2022
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on matrix-synapse-nomad-amd64-13_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 13.0-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 161 patches.....10....20....30....40....50....60....70....80....90....100....110....120....130....140....150....160 done.
Applying patches... done.
Fetching 15 files... ....10.. done.
The following files will be removed as part of updating to
13.0-RELEASE-p6:
/etc/ssl/certs/080911ac.0
/etc/ssl/certs/0b7c536a.0
/etc/ssl/certs/0c4c9b6c.0
/etc/ssl/certs/116bf586.0
/etc/ssl/certs/1320b215.0
/etc/ssl/certs/26312675.0
/etc/ssl/certs/349f2832.0
/etc/ssl/certs/442adcac.0
/etc/ssl/certs/5a4d6896.0
/etc/ssl/certs/9c2e7d30.0
/etc/ssl/certs/a8dee976.0
/etc/ssl/certs/b1b8a7f3.0
/etc/ssl/certs/c01cdfa2.0
/etc/ssl/certs/c47d9980.0
/etc/ssl/certs/cb59f961.0
/etc/ssl/certs/d853d49e.0
/etc/ssl/certs/dc45b0bd.0
/etc/ssl/certs/ee1365c0.0
/etc/ssl/certs/f90208f7.0
/usr/share/certs/trusted/Camerfirma_Chambers_of_Commerce_Root.pem
/usr/share/certs/trusted/Camerfirma_Global_Chambersign_Root.pem
/usr/share/certs/trusted/Certum_Root_CA.pem
/usr/share/certs/trusted/Chambers_of_Commerce_Root_-_2008.pem
/usr/share/certs/trusted/D-TRUST_Root_CA_3_2013.pem
/usr/share/certs/trusted/EC-ACC.pem
/usr/share/certs/trusted/GeoTrust_Primary_Certification_Authority_-_G2.pem
/usr/share/certs/trusted/Global_Chambersign_Root_-_2008.pem
/usr/share/certs/trusted/OISTE_WISeKey_Global_Root_GA_CA.pem
/usr/share/certs/trusted/QuoVadis_Root_CA.pem
/usr/share/certs/trusted/Sonera_Class_2_Root_CA.pem
/usr/share/certs/trusted/Staat_der_Nederlanden_Root_CA_-_G3.pem
/usr/share/certs/trusted/SwissSign_Platinum_CA_-_G2.pem
/usr/share/certs/trusted/Symantec_Class_1_Public_Primary_Certification_Authority_-_G6.pem
/usr/share/certs/trusted/Symantec_Class_2_Public_Primary_Certification_Authority_-_G6.pem
/usr/share/certs/trusted/Trustis_FPS_Root_CA.pem
/usr/share/certs/trusted/VeriSign_Universal_Root_Certification_Authority.pem
/usr/share/certs/trusted/Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem
/usr/share/certs/trusted/Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem
The following files will be added as part of updating to
13.0-RELEASE-p6:
/etc/ssl/blacklisted/080911ac.0
/etc/ssl/blacklisted/0b7c536a.0
/etc/ssl/blacklisted/0c4c9b6c.0
/etc/ssl/blacklisted/116bf586.0
/etc/ssl/blacklisted/1320b215.0
/etc/ssl/blacklisted/26312675.0
/etc/ssl/blacklisted/349f2832.0
/etc/ssl/blacklisted/442adcac.0
/etc/ssl/blacklisted/5a4d6896.0
/etc/ssl/blacklisted/9c2e7d30.0
/etc/ssl/blacklisted/a8dee976.0
/etc/ssl/blacklisted/b1b8a7f3.0
/etc/ssl/blacklisted/c01cdfa2.0
/etc/ssl/blacklisted/c47d9980.0
/etc/ssl/blacklisted/cb59f961.0
/etc/ssl/blacklisted/d853d49e.0
/etc/ssl/blacklisted/dc45b0bd.0
/etc/ssl/blacklisted/ee1365c0.0
/etc/ssl/blacklisted/f90208f7.0
/etc/ssl/certs/002c0b4f.0
/etc/ssl/certs/9482e63a.0
/etc/ssl/certs/b433981b.0
/etc/ssl/certs/b81b93f0.0
/etc/ssl/certs/e35234b1.0
/etc/ssl/certs/fa5da96b.0
/etc/ssl/certs/feffd413.0
/usr/include/c++/v1/barrier
/usr/include/c++/v1/concepts
/usr/include/c++/v1/execution
/usr/include/c++/v1/latch
/usr/include/c++/v1/numbers
/usr/include/c++/v1/semaphore
/usr/include/c++/v1/tr1/barrier
/usr/include/c++/v1/tr1/concepts
/usr/include/c++/v1/tr1/execution
/usr/include/c++/v1/tr1/latch
/usr/include/c++/v1/tr1/numbers
/usr/include/c++/v1/tr1/semaphore
/usr/share/certs/blacklisted/Camerfirma_Chambers_of_Commerce_Root.pem
/usr/share/certs/blacklisted/Camerfirma_Global_Chambersign_Root.pem
/usr/share/certs/blacklisted/Certum_Root_CA.pem
/usr/share/certs/blacklisted/Chambers_of_Commerce_Root_-_2008.pem
/usr/share/certs/blacklisted/D-TRUST_Root_CA_3_2013.pem
/usr/share/certs/blacklisted/EC-ACC.pem
/usr/share/certs/blacklisted/GeoTrust_Primary_Certification_Authority_-_G2.pem
/usr/share/certs/blacklisted/Global_Chambersign_Root_-_2008.pem
/usr/share/certs/blacklisted/OISTE_WISeKey_Global_Root_GA_CA.pem
/usr/share/certs/blacklisted/QuoVadis_Root_CA.pem
/usr/share/certs/blacklisted/Sonera_Class_2_Root_CA.pem
/usr/share/certs/blacklisted/Staat_der_Nederlanden_Root_CA_-_G3.pem
/usr/share/certs/blacklisted/SwissSign_Platinum_CA_-_G2.pem
/usr/share/certs/blacklisted/Symantec_Class_1_Public_Primary_Certification_Authority_-_G6.pem
/usr/share/certs/blacklisted/Symantec_Class_2_Public_Primary_Certification_Authority_-_G6.pem
/usr/share/certs/blacklisted/Trustis_FPS_Root_CA.pem
/usr/share/certs/blacklisted/VeriSign_Universal_Root_Certification_Authority.pem
/usr/share/certs/blacklisted/Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem
/usr/share/certs/blacklisted/Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem
/usr/share/certs/trusted/AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem
/usr/share/certs/trusted/ANF_Secure_Server_Root_CA.pem
/usr/share/certs/trusted/Certum_EC-384_CA.pem
/usr/share/certs/trusted/Certum_Trusted_Root_CA.pem
/usr/share/certs/trusted/GLOBALTRUST_2020.pem
/usr/share/certs/trusted/GlobalSign_Root_E46.pem
/usr/share/certs/trusted/GlobalSign_Root_R46.pem
The following files will be updated as part of updating to
13.0-RELEASE-p6:
/bin/freebsd-version
/lib/libalias.so.7
/lib/libcasper.so.1
/lib/libcrypto.so.111
/rescue/[
/rescue/bectl
/rescue/bsdlabel
/rescue/bunzip2
/rescue/bzcat
/rescue/bzip2
/rescue/camcontrol
/rescue/cat
/rescue/ccdconfig
/rescue/chflags
/rescue/chgrp
/rescue/chio
/rescue/chmod
/rescue/chown
/rescue/chroot
/rescue/clri
/rescue/cp
/rescue/csh
/rescue/date
/rescue/dd
/rescue/devfs
/rescue/df
/rescue/dhclient
/rescue/disklabel
/rescue/dmesg
/rescue/dump
/rescue/dumpfs
/rescue/dumpon
/rescue/echo
/rescue/ed
/rescue/ex
/rescue/expr
/rescue/fastboot
/rescue/fasthalt
/rescue/fdisk
/rescue/fsck
/rescue/fsck_4.2bsd
/rescue/fsck_ffs
/rescue/fsck_msdosfs
/rescue/fsck_ufs
/rescue/fsdb
/rescue/fsirand
/rescue/gbde
/rescue/geom
/rescue/getfacl
/rescue/glabel
/rescue/gpart
/rescue/groups
/rescue/gunzip
/rescue/gzcat
/rescue/gzip
/rescue/halt
/rescue/head
/rescue/hostname
/rescue/id
/rescue/ifconfig
/rescue/init
/rescue/ipf
/rescue/iscsictl
/rescue/iscsid
/rescue/kenv
/rescue/kill
/rescue/kldconfig
/rescue/kldload
/rescue/kldstat
/rescue/kldunload
/rescue/ldconfig
/rescue/less
/rescue/link
/rescue/ln
/rescue/ls
/rescue/lzcat
/rescue/lzma
/rescue/md5
/rescue/mdconfig
/rescue/mdmfs
/rescue/mkdir
/rescue/mknod
/rescue/more
/rescue/mount
/rescue/mount_cd9660
/rescue/mount_msdosfs
/rescue/mount_nfs
/rescue/mount_nullfs
/rescue/mount_udf
/rescue/mount_unionfs
/rescue/mt
/rescue/mv
/rescue/nc
/rescue/newfs
/rescue/newfs_msdos
/rescue/nos-tun
/rescue/pgrep
/rescue/ping
/rescue/ping6
/rescue/pkill
/rescue/poweroff
/rescue/ps
/rescue/pwd
/rescue/rcorder
/rescue/rdump
/rescue/realpath
/rescue/reboot
/rescue/red
/rescue/rescue
/rescue/restore
/rescue/rm
/rescue/rmdir
/rescue/route
/rescue/routed
/rescue/rrestore
/rescue/rtquery
/rescue/rtsol
/rescue/savecore
/rescue/sed
/rescue/setfacl
/rescue/sh
/rescue/shutdown
/rescue/sleep
/rescue/spppcontrol
/rescue/stty
/rescue/swapon
/rescue/sync
/rescue/sysctl
/rescue/tail
/rescue/tar
/rescue/tcsh
/rescue/tee
/rescue/test
/rescue/tunefs
/rescue/umount
/rescue/unlink
/rescue/unlzma
/rescue/unxz
/rescue/unzstd
/rescue/vi
/rescue/whoami
/rescue/xz
/rescue/xzcat
/rescue/zcat
/rescue/zdb
/rescue/zfs
/rescue/zpool
/rescue/zstd
/rescue/zstdcat
/rescue/zstdmt
/sbin/fsck_4.2bsd
/sbin/fsck_ffs
/sbin/fsck_ufs
/sbin/fsdb
/sbin/ggatec
/usr/bin/bc
/usr/bin/dc
/usr/bin/openssl
/usr/bin/tail
/usr/include/openssl/opensslv.h
/usr/include/private/event1/event.h
/usr/lib/libalias.a
/usr/lib/libalias_p.a
/usr/lib/libcrypto.a
/usr/lib/libcrypto_p.a
/usr/lib/libfetch.a
/usr/lib/libfetch.so.6
/usr/lib/libfetch_p.a
/usr/lib/libprivateevent1.a
/usr/lib/libprivateevent1.so.1
/usr/lib/libprivateevent1_p.a
/usr/lib/libradius.a
/usr/lib/libradius.so.4
/usr/lib/libradius_p.a
/usr/lib/libssl.a
/usr/lib/libssl.so.111
/usr/lib/libssl_p.a
/usr/sbin/bhyve
/usr/sbin/ftp-proxy
/usr/sbin/hostapd
/usr/sbin/ntp-keygen
/usr/sbin/wpa_cli
/usr/sbin/wpa_supplicant
/usr/sbin/ypldap
/usr/share/certs/trusted/ACCVRAIZ1.pem
/usr/share/certs/trusted/AC_RAIZ_FNMT-RCM.pem
/usr/share/certs/trusted/Actalis_Authentication_Root_CA.pem
/usr/share/certs/trusted/AffirmTrust_Commercial.pem
/usr/share/certs/trusted/AffirmTrust_Networking.pem
/usr/share/certs/trusted/AffirmTrust_Premium.pem
/usr/share/certs/trusted/AffirmTrust_Premium_ECC.pem
/usr/share/certs/trusted/Amazon_Root_CA_1.pem
/usr/share/certs/trusted/Amazon_Root_CA_2.pem
/usr/share/certs/trusted/Amazon_Root_CA_3.pem
/usr/share/certs/trusted/Amazon_Root_CA_4.pem
/usr/share/certs/trusted/Atos_TrustedRoot_2011.pem
/usr/share/certs/trusted/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
/usr/share/certs/trusted/Baltimore_CyberTrust_Root.pem
/usr/share/certs/trusted/Buypass_Class_2_Root_CA.pem
/usr/share/certs/trusted/Buypass_Class_3_Root_CA.pem
/usr/share/certs/trusted/CA_Disig_Root_R2.pem
/usr/share/certs/trusted/CFCA_EV_ROOT.pem
/usr/share/certs/trusted/COMODO_Certification_Authority.pem
/usr/share/certs/trusted/COMODO_ECC_Certification_Authority.pem
/usr/share/certs/trusted/COMODO_RSA_Certification_Authority.pem
/usr/share/certs/trusted/Certigna.pem
/usr/share/certs/trusted/Certigna_Root_CA.pem
/usr/share/certs/trusted/Certum_Trusted_Network_CA.pem
/usr/share/certs/trusted/Certum_Trusted_Network_CA_2.pem
/usr/share/certs/trusted/Comodo_AAA_Services_root.pem
/usr/share/certs/trusted/Cybertrust_Global_Root.pem
/usr/share/certs/trusted/D-TRUST_Root_Class_3_CA_2_2009.pem
/usr/share/certs/trusted/D-TRUST_Root_Class_3_CA_2_EV_2009.pem
/usr/share/certs/trusted/DST_Root_CA_X3.pem
/usr/share/certs/trusted/DigiCert_Assured_ID_Root_CA.pem
/usr/share/certs/trusted/DigiCert_Assured_ID_Root_G2.pem
/usr/share/certs/trusted/DigiCert_Assured_ID_Root_G3.pem
/usr/share/certs/trusted/DigiCert_Global_Root_CA.pem
/usr/share/certs/trusted/DigiCert_Global_Root_G2.pem
/usr/share/certs/trusted/DigiCert_Global_Root_G3.pem
/usr/share/certs/trusted/DigiCert_High_Assurance_EV_Root_CA.pem
/usr/share/certs/trusted/DigiCert_Trusted_Root_G4.pem
/usr/share/certs/trusted/E-Tugra_Certification_Authority.pem
/usr/share/certs/trusted/Entrust_Root_Certification_Authority.pem
/usr/share/certs/trusted/Entrust_Root_Certification_Authority_-_EC1.pem
/usr/share/certs/trusted/Entrust_Root_Certification_Authority_-_G2.pem
/usr/share/certs/trusted/Entrust_Root_Certification_Authority_-_G4.pem
/usr/share/certs/trusted/Entrust_net_Premium_2048_Secure_Server_CA.pem
/usr/share/certs/trusted/GDCA_TrustAUTH_R5_ROOT.pem
/usr/share/certs/trusted/GTS_Root_R1.pem
/usr/share/certs/trusted/GTS_Root_R2.pem
/usr/share/certs/trusted/GTS_Root_R3.pem
/usr/share/certs/trusted/GTS_Root_R4.pem
/usr/share/certs/trusted/GlobalSign_ECC_Root_CA_-_R4.pem
/usr/share/certs/trusted/GlobalSign_ECC_Root_CA_-_R5.pem
/usr/share/certs/trusted/GlobalSign_Root_CA.pem
/usr/share/certs/trusted/GlobalSign_Root_CA_-_R2.pem
/usr/share/certs/trusted/GlobalSign_Root_CA_-_R3.pem
/usr/share/certs/trusted/GlobalSign_Root_CA_-_R6.pem
/usr/share/certs/trusted/Go_Daddy_Class_2_CA.pem
/usr/share/certs/trusted/Go_Daddy_Root_Certificate_Authority_-_G2.pem
/usr/share/certs/trusted/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem
/usr/share/certs/trusted/Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
/usr/share/certs/trusted/Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem
/usr/share/certs/trusted/Hongkong_Post_Root_CA_1.pem
/usr/share/certs/trusted/Hongkong_Post_Root_CA_3.pem
/usr/share/certs/trusted/ISRG_Root_X1.pem
/usr/share/certs/trusted/IdenTrust_Commercial_Root_CA_1.pem
/usr/share/certs/trusted/IdenTrust_Public_Sector_Root_CA_1.pem
/usr/share/certs/trusted/Izenpe_com.pem
/usr/share/certs/trusted/Microsec_e-Szigno_Root_CA_2009.pem
/usr/share/certs/trusted/Microsoft_ECC_Root_Certificate_Authority_2017.pem
/usr/share/certs/trusted/Microsoft_RSA_Root_Certificate_Authority_2017.pem
/usr/share/certs/trusted/NAVER_Global_Root_Certification_Authority.pem
/usr/share/certs/trusted/NetLock_Arany__Class_Gold__F__tan__s__tv__ny.pem
/usr/share/certs/trusted/Network_Solutions_Certificate_Authority.pem
/usr/share/certs/trusted/OISTE_WISeKey_Global_Root_GB_CA.pem
/usr/share/certs/trusted/OISTE_WISeKey_Global_Root_GC_CA.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_1_G3.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_2.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_2_G3.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_3.pem
/usr/share/certs/trusted/QuoVadis_Root_CA_3_G3.pem
/usr/share/certs/trusted/SSL_com_EV_Root_Certification_Authority_ECC.pem
/usr/share/certs/trusted/SSL_com_EV_Root_Certification_Authority_RSA_R2.pem
/usr/share/certs/trusted/SSL_com_Root_Certification_Authority_ECC.pem
/usr/share/certs/trusted/SSL_com_Root_Certification_Authority_RSA.pem
/usr/share/certs/trusted/SZAFIR_ROOT_CA2.pem
/usr/share/certs/trusted/SecureSign_RootCA11.pem
/usr/share/certs/trusted/SecureTrust_CA.pem
/usr/share/certs/trusted/Secure_Global_CA.pem
/usr/share/certs/trusted/Security_Communication_RootCA2.pem
/usr/share/certs/trusted/Security_Communication_Root_CA.pem
/usr/share/certs/trusted/Staat_der_Nederlanden_EV_Root_CA.pem
/usr/share/certs/trusted/Starfield_Class_2_CA.pem
/usr/share/certs/trusted/Starfield_Root_Certificate_Authority_-_G2.pem
/usr/share/certs/trusted/Starfield_Services_Root_Certificate_Authority_-_G2.pem
/usr/share/certs/trusted/SwissSign_Gold_CA_-_G2.pem
/usr/share/certs/trusted/SwissSign_Silver_CA_-_G2.pem
/usr/share/certs/trusted/T-TeleSec_GlobalRoot_Class_2.pem
/usr/share/certs/trusted/T-TeleSec_GlobalRoot_Class_3.pem
/usr/share/certs/trusted/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem
/usr/share/certs/trusted/TWCA_Global_Root_CA.pem
/usr/share/certs/trusted/TWCA_Root_Certification_Authority.pem
/usr/share/certs/trusted/TeliaSonera_Root_CA_v1.pem
/usr/share/certs/trusted/TrustCor_ECA-1.pem
/usr/share/certs/trusted/TrustCor_RootCert_CA-1.pem
/usr/share/certs/trusted/TrustCor_RootCert_CA-2.pem
/usr/share/certs/trusted/Trustwave_Global_Certification_Authority.pem
/usr/share/certs/trusted/Trustwave_Global_ECC_P256_Certification_Authority.pem
/usr/share/certs/trusted/Trustwave_Global_ECC_P384_Certification_Authority.pem
/usr/share/certs/trusted/UCA_Extended_Validation_Root.pem
/usr/share/certs/trusted/UCA_Global_G2_Root.pem
/usr/share/certs/trusted/USERTrust_ECC_Certification_Authority.pem
/usr/share/certs/trusted/USERTrust_RSA_Certification_Authority.pem
/usr/share/certs/trusted/XRamp_Global_CA_Root.pem
/usr/share/certs/trusted/certSIGN_ROOT_CA.pem
/usr/share/certs/trusted/certSIGN_Root_CA_G2.pem
/usr/share/certs/trusted/e-Szigno_Root_CA_2017.pem
/usr/share/certs/trusted/ePKI_Root_Certification_Authority.pem
/usr/share/certs/trusted/emSign_ECC_Root_CA_-_C3.pem
/usr/share/certs/trusted/emSign_ECC_Root_CA_-_G3.pem
/usr/share/certs/trusted/emSign_Root_CA_-_C1.pem
/usr/share/certs/trusted/emSign_Root_CA_-_G1.pem
/usr/share/zoneinfo/Asia/Amman
/usr/share/zoneinfo/Asia/Gaza
/usr/share/zoneinfo/Asia/Hebron
/usr/share/zoneinfo/Pacific/Apia
/usr/share/zoneinfo/Pacific/Fiji
Installing updates...Scanning //usr/share/certs/blacklisted for certificates...
Scanning //usr/share/certs/trusted for certificates...
 done.
=====>  Stop the pot matrix-synapse-nomad-amd64-13_0
=====>  Remove epair0[a|b] network interfaces
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/dev
=====>  Flavour: matrix-synapse-nomad
=====>  Executing matrix-synapse-nomad pot commands on matrix-synapse-nomad-amd64-13_0
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/nginx.conf copied in the pot matrix-synapse-nomad-amd64-13_0
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/dev is already unmounted
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/nginx.nossl.conf copied in the pot matrix-synapse-nomad-amd64-13_0
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/dev is already unmounted
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/homeserver.yaml copied in the pot matrix-synapse-nomad-amd64-13_0
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/dev is already unmounted
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/my.log.config copied in the pot matrix-synapse-nomad-amd64-13_0
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/dev is already unmounted
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/certrenew.sh copied in the pot matrix-synapse-nomad-amd64-13_0
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/dev is already unmounted
=====>  Starting matrix-synapse-nomad-amd64-13_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
===>  Starting the pot matrix-synapse-nomad-amd64-13_0
add net default: gateway 10.192.0.1
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:02:b7:83:68: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
Updating /var/run/os-release done.
Creating and/or trimming log files.
Clearing /tmp (X related).
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.

Thu Jan 13 17:26:41 UTC 2022
/usr/local/etc/pot/flavours/matrix-synapse-nomad.sh -> /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp/matrix-synapse-nomad.sh
=====>  Executing matrix-synapse-nomad script on matrix-synapse-nomad-amd64-13_0
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.17.5...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.17.5: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:13:amd64/quarterly, please wait...
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Install package sudo
Updating FreeBSD repository catalogue...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 31365 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	gettext-runtime: 0.21
	indexinfo: 0.3.1
	sudo: 1.9.8p2

Number of packages to be installed: 3

The process will require 7 MiB more space.
2 MiB to be downloaded.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching sudo-1.9.8p2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching gettext-runtime-0.21.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching indexinfo-0.3.1.pkg: . done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/3] Installing indexinfo-0.3.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting indexinfo-0.3.1: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Installing gettext-runtime-0.21...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting gettext-runtime-0.21: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Installing sudo-1.9.8p2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting sudo-1.9.8p2: .......... done
Step 7: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	openssl: 1.1.1m_1,1

Number of packages to be installed: 1

The process will require 14 MiB more space.
4 MiB to be downloaded.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching openssl-1.1.1m_1,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing openssl-1.1.1m_1,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting openssl-1.1.1m_1,1: .......... done
Step 8: Install package jq
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:
	jq: 1.6
	oniguruma: 6.9.7.1

Number of packages to be installed: 2

The process will require 2 MiB more space.
499 KiB to be downloaded.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching jq-1.6.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching oniguruma-6.9.7.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing oniguruma-6.9.7.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting oniguruma-6.9.7.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing jq-1.6...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting jq-1.6: .......... done
Step 9: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	jo: 1.4

Number of packages to be installed: 1

19 KiB to be downloaded.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jo-1.4.pkg: ... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jo-1.4...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jo-1.4: ...... done
Step 10: Install package curl
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:
	ca_root_nss: 3.71
	curl: 7.80.0
	libnghttp2: 1.46.0
	libssh2: 1.10.0,3

Number of packages to be installed: 4

The process will require 6 MiB more space.
2 MiB to be downloaded.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching curl-7.80.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching libnghttp2-1.46.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching libssh2-1.10.0,3.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching ca_root_nss-3.71.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/4] Installing libnghttp2-1.46.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting libnghttp2-1.46.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/4] Installing libssh2-1.10.0,3...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting libssh2-1.10.0,3: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/4] Installing ca_root_nss-3.71...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting ca_root_nss-3.71: ........ done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/4] Installing curl-7.80.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting curl-7.80.0: .......... done
=====
Message from ca_root_nss-3.71:

--
FreeBSD does not, and can not warrant that the certification authorities
whose certificates are included in this package have in any way been
audited for trustworthiness or RFC 3647 compliance.

Assessment and verification of trust is the complete responsibility of the
system administrator.


This package installs symlinks to support root certificates discovery by
default for software that uses OpenSSL.

This enables SSL Certificate Verification by client software without manual
intervention.

If you prefer to do this manually, replace the following symlinks with
either an empty file or your site-local certificate bundle.

  * /etc/ssl/cert.pem
  * /usr/local/etc/ssl/cert.pem
  * /usr/local/openssl/cert.pem
Step 11: Install package matrix server
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 122 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	expat: 2.4.2
	fontconfig: 2.13.94_1,1
	freetype2: 2.11.1
	fribidi: 1.0.11
	giflib: 5.2.1
	glib: 2.70.2,2
	graphite2: 1.3.14
	harfbuzz: 3.2.0
	jbigkit: 2.1_1
	jpeg-turbo: 2.1.1_1
	lcms2: 2.12
	libX11: 1.7.2,1
	libXScrnSaver: 1.2.3_2
	libXau: 1.0.9
	libXdmcp: 1.1.3
	libXext: 1.3.4,1
	libXft: 2.3.4
	libXrender: 0.9.10_2
	libedit: 3.1.20210216,1
	libffi: 3.3_1
	libgcrypt: 1.9.4
	libgpg-error: 1.43
	libiconv: 1.16
	libltdl: 2.4.6
	libpthread-stubs: 0.4
	libraqm: 0.7.1
	libsodium: 1.0.18
	libxcb: 1.14_1
	libxml2: 2.9.12
	libxslt: 1.1.34_2
	libyaml: 0.2.5
	mpdecimal: 2.5.1
	nspr: 4.33
	nss: 3.74
	openjpeg: 2.4.0
	pcre: 8.45
	png: 1.6.37_1
	postgresql13-client: 13.5
	py38-Automat: 20.2.0
	py38-Babel: 2.9.1
	py38-Jinja2: 3.0.1
	py38-Paste: 3.4.6
	py38-PyHamcrest: 2.0.2
	py38-appdirs: 1.4.4
	py38-attrs: 21.2.0
	py38-bcrypt: 3.2.0
	py38-bleach: 3.1.5
	py38-canonicaljson: 1.5.0
	py38-certifi: 2021.10.8
	py38-cffi: 1.15.0
	py38-chardet: 4.0.0,1
	py38-constantly: 15.1.0
	py38-cryptography: 3.3.2
	py38-dateutil: 2.8.1
	py38-defusedxml: 0.6.0
	py38-elementpath: 2.4.0
	py38-frozendict: 2.1.1
	py38-h2: 4.0.0
	py38-hpack: 4.0.0
	py38-hyperframe: 6.0.0
	py38-hyperlink: 21.0.0
	py38-idna: 2.10
	py38-ijson: 3.1.4
	py38-importlib-metadata: 4.8.1
	py38-importlib-resources: 5.4.0
	py38-incremental: 21.3.0
	py38-jsonschema: 4.2.1_1
	py38-lxml: 4.7.1
	py38-markupsafe: 2.0.1
	py38-matrix-synapse: 1.49.2
	py38-msgpack: 1.0.3
	py38-netaddr: 0.8.0
	py38-olefile: 0.46
	py38-openssl: 20.0.1
	py38-packaging: 21.3
	py38-phonenumbers: 8.4.1
	py38-pillow: 8.2.0
	py38-priority1: 1.3.0
	py38-prometheus-client: 0.12.0
	py38-psycopg2: 2.9.2
	py38-pyasn1: 0.4.7_1
	py38-pyasn1-modules: 0.2.8
	py38-pycparser: 2.21
	py38-pyjwt1: 1.7.1
	py38-pymacaroons: 0.13.0
	py38-pynacl: 1.4.0
	py38-pyparsing: 3.0.6
	py38-pyrsistent: 0.14.11_1
	py38-pysaml2: 7.1.0
	py38-pyserial: 3.5_2
	py38-pysocks: 1.7.1
	py38-pytz: 2021.3,1
	py38-repoze.who: 2.4
	py38-requests: 2.25.1
	py38-service_identity: 18.1.0
	py38-setuptools: 57.0.0
	py38-signedjson: 1.1.1_1
	py38-simplejson: 3.17.5
	py38-six: 1.16.0
	py38-sortedcontainers: 2.3.0
	py38-sqlite3: 3.8.12_7
	py38-tkinter: 3.8.12_6
	py38-treq: 20.9.0
	py38-twisted: 21.7.0
	py38-typing-extensions: 3.10.0.2
	py38-unpaddedbase64: 2.1.0
	py38-urllib3: 1.26.7,1
	py38-webencodings: 0.5.1
	py38-webob: 1.8.7
	py38-xmlschema: 1.8.2
	py38-yaml: 5.4.1
	py38-zipp: 3.4.0
	py38-zope.interface: 5.3.0
	python38: 3.8.12_1
	readline: 8.1.1
	sqlite3: 3.35.5_4,1
	tcl86: 8.6.12
	tiff: 4.3.0
	tk86: 8.6.12
	webp: 1.2.1
	xmlsec1: 1.2.29
	xorgproto: 2021.5

Number of packages to be installed: 122

The process will require 446 MiB more space.
72 MiB to be downloaded.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/122] Fetching py38-matrix-synapse-1.49.2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/122] Fetching py38-treq-20.9.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/122] Fetching py38-requests-2.25.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/122] Fetching py38-chardet-4.0.0,1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/122] Fetching python38-3.8.12_1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/122] Fetching mpdecimal-2.5.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/122] Fetching readline-8.1.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/122] Fetching libffi-3.3_1.pkg: ..... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/122] Fetching py38-setuptools-57.0.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/122] Fetching py38-certifi-2021.10.8.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/122] Fetching py38-urllib3-1.26.7,1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/122] Fetching py38-openssl-20.0.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/122] Fetching py38-cryptography-3.3.2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/122] Fetching py38-six-1.16.0.pkg: ... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/122] Fetching py38-cffi-1.15.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/122] Fetching py38-pycparser-2.21.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/122] Fetching py38-pysocks-1.7.1.pkg: ... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/122] Fetching py38-idna-2.10.pkg: ......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/122] Fetching py38-hyperlink-21.0.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/122] Fetching py38-service_identity-18.1.0.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/122] Fetching py38-pyasn1-modules-0.2.8.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/122] Fetching py38-pyasn1-0.4.7_1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/122] Fetching py38-attrs-21.2.0.pkg: ......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [24/122] Fetching py38-twisted-21.7.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [25/122] Fetching py38-priority1-1.3.0.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [26/122] Fetching py38-h2-4.0.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [27/122] Fetching py38-hyperframe-6.0.0.pkg: ... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [28/122] Fetching py38-hpack-4.0.0.pkg: ..... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [29/122] Fetching py38-PyHamcrest-2.0.2.pkg: ....... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [30/122] Fetching py38-bcrypt-3.2.0.pkg: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [31/122] Fetching py38-zope.interface-5.3.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [32/122] Fetching py38-typing-extensions-3.10.0.2.pkg: ...... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [33/122] Fetching py38-incremental-21.3.0.pkg: ... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [34/122] Fetching py38-constantly-15.1.0.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [35/122] Fetching py38-appdirs-1.4.4.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [36/122] Fetching py38-Automat-20.2.0.pkg: ....... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [37/122] Fetching py38-pyserial-3.5_2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [38/122] Fetching py38-pyjwt1-1.7.1.pkg: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [39/122] Fetching py38-bleach-3.1.5.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [40/122] Fetching py38-packaging-21.3.pkg: ........ done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [41/122] Fetching py38-pyparsing-3.0.6.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [42/122] Fetching py38-webencodings-0.5.1.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [43/122] Fetching py38-signedjson-1.1.1_1.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [44/122] Fetching py38-pynacl-1.4.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [45/122] Fetching libsodium-1.0.18.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [46/122] Fetching libyaml-0.2.5.pkg: ......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [47/122] Fetching libedit-3.1.20210216,1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [48/122] Fetching py38-unpaddedbase64-2.1.0.pkg: . done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [49/122] Fetching py38-canonicaljson-1.5.0.pkg: . done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [50/122] Fetching py38-simplejson-3.17.5.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [51/122] Fetching py38-frozendict-2.1.1.pkg: ....... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [52/122] Fetching py38-pysaml2-7.1.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [53/122] Fetching py38-Paste-3.4.6.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [54/122] Fetching py38-xmlschema-1.8.2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [55/122] Fetching py38-elementpath-2.4.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [56/122] Fetching py38-lxml-4.7.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [57/122] Fetching libxslt-1.1.34_2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [58/122] Fetching libxml2-2.9.12.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [59/122] Fetching libgpg-error-1.43.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [60/122] Fetching libgcrypt-1.9.4.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [61/122] Fetching xmlsec1-1.2.29.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [62/122] Fetching nss-3.74.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [63/122] Fetching nspr-4.33.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [64/122] Fetching sqlite3-3.35.5_4,1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [65/122] Fetching tcl86-8.6.12.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [66/122] Fetching libltdl-2.4.6.pkg: ..... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [67/122] Fetching py38-repoze.who-2.4.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [68/122] Fetching py38-webob-1.8.7.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [69/122] Fetching py38-pytz-2021.3,1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [70/122] Fetching py38-importlib-resources-5.4.0.pkg: ..... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [71/122] Fetching py38-zipp-3.4.0.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [72/122] Fetching py38-defusedxml-0.6.0.pkg: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [73/122] Fetching py38-dateutil-2.8.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [74/122] Fetching py38-pymacaroons-0.13.0.pkg: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [75/122] Fetching py38-netaddr-0.8.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [76/122] Fetching py38-prometheus-client-0.12.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [77/122] Fetching py38-pillow-8.2.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [78/122] Fetching libxcb-1.14_1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [79/122] Fetching libXdmcp-1.1.3.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [80/122] Fetching xorgproto-2021.5.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [81/122] Fetching libXau-1.0.9.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [82/122] Fetching libpthread-stubs-0.4.pkg: . done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [83/122] Fetching tk86-8.6.12.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [84/122] Fetching libXrender-0.9.10_2.pkg: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [85/122] Fetching libX11-1.7.2,1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [86/122] Fetching libXext-1.3.4,1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [87/122] Fetching libXScrnSaver-1.2.3_2.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [88/122] Fetching libXft-2.3.4.pkg: ......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [89/122] Fetching fontconfig-2.13.94_1,1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [90/122] Fetching expat-2.4.2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [91/122] Fetching freetype2-2.11.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [92/122] Fetching png-1.6.37_1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [93/122] Fetching py38-tkinter-3.8.12_6.pkg: ... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [94/122] Fetching libraqm-0.7.1.pkg: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [95/122] Fetching harfbuzz-3.2.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [96/122] Fetching graphite2-1.3.14.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [97/122] Fetching glib-2.70.2,2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [98/122] Fetching pcre-8.45.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [99/122] Fetching libiconv-1.16.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [100/122] Fetching fribidi-1.0.11.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [101/122] Fetching webp-1.2.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [102/122] Fetching tiff-4.3.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [103/122] Fetching jpeg-turbo-2.1.1_1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [104/122] Fetching jbigkit-2.1_1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [105/122] Fetching giflib-5.2.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [106/122] Fetching openjpeg-2.4.0.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [107/122] Fetching lcms2-2.12.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [108/122] Fetching py38-olefile-0.46.pkg: ...... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [109/122] Fetching py38-yaml-5.4.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [110/122] Fetching py38-sortedcontainers-2.3.0.pkg: ..... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [111/122] Fetching py38-phonenumbers-8.4.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [112/122] Fetching py38-msgpack-1.0.3.pkg: ........ done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [113/122] Fetching py38-jsonschema-4.2.1_1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [114/122] Fetching py38-pyrsistent-0.14.11_1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [115/122] Fetching py38-importlib-metadata-4.8.1.pkg: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [116/122] Fetching py38-ijson-3.1.4.pkg: ..... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [117/122] Fetching py38-Jinja2-3.0.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [118/122] Fetching py38-markupsafe-2.0.1.pkg: .. done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [119/122] Fetching py38-Babel-2.9.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [120/122] Fetching py38-sqlite3-3.8.12_7.pkg: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [121/122] Fetching py38-psycopg2-2.9.2.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [122/122] Fetching postgresql13-client-13.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/122] Installing mpdecimal-2.5.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/122] Extracting mpdecimal-2.5.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/122] Installing readline-8.1.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/122] Extracting readline-8.1.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/122] Installing libffi-3.3_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [3/122] Extracting libffi-3.3_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/122] Installing python38-3.8.12_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [4/122] Extracting python38-3.8.12_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/122] Installing xorgproto-2021.5...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [5/122] Extracting xorgproto-2021.5: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/122] Installing py38-setuptools-57.0.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [6/122] Extracting py38-setuptools-57.0.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/122] Installing libXdmcp-1.1.3...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [7/122] Extracting libXdmcp-1.1.3: ......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/122] Installing libXau-1.0.9...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [8/122] Extracting libXau-1.0.9: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/122] Installing libpthread-stubs-0.4...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [9/122] Extracting libpthread-stubs-0.4: .... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/122] Installing py38-pycparser-2.21...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [10/122] Extracting py38-pycparser-2.21: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/122] Installing libgpg-error-1.43...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [11/122] Extracting libgpg-error-1.43: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/122] Installing libxcb-1.14_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [12/122] Extracting libxcb-1.14_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/122] Installing png-1.6.37_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [13/122] Extracting png-1.6.37_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/122] Installing py38-six-1.16.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [14/122] Extracting py38-six-1.16.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/122] Installing py38-cffi-1.15.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [15/122] Extracting py38-cffi-1.15.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/122] Installing libxml2-2.9.12...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [16/122] Extracting libxml2-2.9.12: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/122] Installing libgcrypt-1.9.4...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [17/122] Extracting libgcrypt-1.9.4: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/122] Installing libX11-1.7.2,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [18/122] Extracting libX11-1.7.2,1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/122] Installing expat-2.4.2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [19/122] Extracting expat-2.4.2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/122] Installing freetype2-2.11.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [20/122] Extracting freetype2-2.11.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/122] Installing py38-cryptography-3.3.2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [21/122] Extracting py38-cryptography-3.3.2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/122] Installing py38-pyasn1-0.4.7_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [22/122] Extracting py38-pyasn1-0.4.7_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/122] Installing libedit-3.1.20210216,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [23/122] Extracting libedit-3.1.20210216,1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [24/122] Installing libxslt-1.1.34_2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [24/122] Extracting libxslt-1.1.34_2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [25/122] Installing libXrender-0.9.10_2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [25/122] Extracting libXrender-0.9.10_2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [26/122] Installing libXext-1.3.4,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [26/122] Extracting libXext-1.3.4,1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [27/122] Installing fontconfig-2.13.94_1,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [27/122] Extracting fontconfig-2.13.94_1,1: .......... done
Running fc-cache to build fontconfig cache...
Font directories:
	/usr/local/share/fonts
	/usr/local/lib/X11/fonts
/usr/local/share/fonts: skipping, no such directory
/usr/local/lib/X11/fonts: skipping, no such directory
/var/db/fontconfig: cleaning cache directory
fc-cache: succeeded
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [28/122] Installing pcre-8.45...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [28/122] Extracting pcre-8.45: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [29/122] Installing libiconv-1.16...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [29/122] Extracting libiconv-1.16: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [30/122] Installing jpeg-turbo-2.1.1_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [30/122] Extracting jpeg-turbo-2.1.1_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [31/122] Installing jbigkit-2.1_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [31/122] Extracting jbigkit-2.1_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [32/122] Installing py38-certifi-2021.10.8...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [32/122] Extracting py38-certifi-2021.10.8: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [33/122] Installing py38-openssl-20.0.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [33/122] Extracting py38-openssl-20.0.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [34/122] Installing py38-pysocks-1.7.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [34/122] Extracting py38-pysocks-1.7.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [35/122] Installing py38-idna-2.10...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [35/122] Extracting py38-idna-2.10: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [36/122] Installing py38-pyasn1-modules-0.2.8...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [36/122] Extracting py38-pyasn1-modules-0.2.8: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [37/122] Installing py38-attrs-21.2.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [37/122] Extracting py38-attrs-21.2.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [38/122] Installing py38-hyperframe-6.0.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [38/122] Extracting py38-hyperframe-6.0.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [39/122] Installing py38-hpack-4.0.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [39/122] Extracting py38-hpack-4.0.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [40/122] Installing py38-lxml-4.7.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [40/122] Extracting py38-lxml-4.7.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [41/122] Installing nspr-4.33...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [41/122] Extracting nspr-4.33: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [42/122] Installing sqlite3-3.35.5_4,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [42/122] Extracting sqlite3-3.35.5_4,1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [43/122] Installing tcl86-8.6.12...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [43/122] Extracting tcl86-8.6.12: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [44/122] Installing libXScrnSaver-1.2.3_2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [44/122] Extracting libXScrnSaver-1.2.3_2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [45/122] Installing libXft-2.3.4...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [45/122] Extracting libXft-2.3.4: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [46/122] Installing graphite2-1.3.14...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [46/122] Extracting graphite2-1.3.14: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [47/122] Installing glib-2.70.2,2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [47/122] Extracting glib-2.70.2,2: .......... done
No schema files found: doing nothing.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [48/122] Installing tiff-4.3.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [48/122] Extracting tiff-4.3.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [49/122] Installing py38-chardet-4.0.0,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [49/122] Extracting py38-chardet-4.0.0,1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [50/122] Installing py38-urllib3-1.26.7,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [50/122] Extracting py38-urllib3-1.26.7,1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [51/122] Installing py38-hyperlink-21.0.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [51/122] Extracting py38-hyperlink-21.0.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [52/122] Installing py38-service_identity-18.1.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [52/122] Extracting py38-service_identity-18.1.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [53/122] Installing py38-priority1-1.3.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [53/122] Extracting py38-priority1-1.3.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [54/122] Installing py38-h2-4.0.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [54/122] Extracting py38-h2-4.0.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [55/122] Installing py38-PyHamcrest-2.0.2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [55/122] Extracting py38-PyHamcrest-2.0.2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [56/122] Installing py38-bcrypt-3.2.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [56/122] Extracting py38-bcrypt-3.2.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [57/122] Installing py38-zope.interface-5.3.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [57/122] Extracting py38-zope.interface-5.3.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [58/122] Installing py38-typing-extensions-3.10.0.2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [58/122] Extracting py38-typing-extensions-3.10.0.2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [59/122] Installing py38-incremental-21.3.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [59/122] Extracting py38-incremental-21.3.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [60/122] Installing py38-constantly-15.1.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [60/122] Extracting py38-constantly-15.1.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [61/122] Installing py38-appdirs-1.4.4...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [61/122] Extracting py38-appdirs-1.4.4: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [62/122] Installing py38-Automat-20.2.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [62/122] Extracting py38-Automat-20.2.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [63/122] Installing py38-pyserial-3.5_2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [63/122] Extracting py38-pyserial-3.5_2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [64/122] Installing py38-pyparsing-3.0.6...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [64/122] Extracting py38-pyparsing-3.0.6: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [65/122] Installing libsodium-1.0.18...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [65/122] Extracting libsodium-1.0.18: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [66/122] Installing py38-simplejson-3.17.5...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [66/122] Extracting py38-simplejson-3.17.5: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [67/122] Installing py38-frozendict-2.1.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [67/122] Extracting py38-frozendict-2.1.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [68/122] Installing py38-elementpath-2.4.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [68/122] Extracting py38-elementpath-2.4.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [69/122] Installing nss-3.74...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [69/122] Extracting nss-3.74: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [70/122] Installing libltdl-2.4.6...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [70/122] Extracting libltdl-2.4.6: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [71/122] Installing py38-webob-1.8.7...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [71/122] Extracting py38-webob-1.8.7: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [72/122] Installing py38-pytz-2021.3,1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [72/122] Extracting py38-pytz-2021.3,1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [73/122] Installing py38-zipp-3.4.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [73/122] Extracting py38-zipp-3.4.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [74/122] Installing tk86-8.6.12...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [74/122] Extracting tk86-8.6.12: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [75/122] Installing harfbuzz-3.2.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [75/122] Extracting harfbuzz-3.2.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [76/122] Installing fribidi-1.0.11...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [76/122] Extracting fribidi-1.0.11: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [77/122] Installing giflib-5.2.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [77/122] Extracting giflib-5.2.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [78/122] Installing lcms2-2.12...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [78/122] Extracting lcms2-2.12: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [79/122] Installing py38-requests-2.25.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [79/122] Extracting py38-requests-2.25.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [80/122] Installing py38-twisted-21.7.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [80/122] Extracting py38-twisted-21.7.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [81/122] Installing py38-packaging-21.3...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [81/122] Extracting py38-packaging-21.3: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [82/122] Installing py38-webencodings-0.5.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [82/122] Extracting py38-webencodings-0.5.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [83/122] Installing py38-pynacl-1.4.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [83/122] Extracting py38-pynacl-1.4.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [84/122] Installing libyaml-0.2.5...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [84/122] Extracting libyaml-0.2.5: ......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [85/122] Installing py38-unpaddedbase64-2.1.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [85/122] Extracting py38-unpaddedbase64-2.1.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [86/122] Installing py38-canonicaljson-1.5.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [86/122] Extracting py38-canonicaljson-1.5.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [87/122] Installing py38-Paste-3.4.6...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [87/122] Extracting py38-Paste-3.4.6: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [88/122] Installing py38-xmlschema-1.8.2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [88/122] Extracting py38-xmlschema-1.8.2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [89/122] Installing xmlsec1-1.2.29...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [89/122] Extracting xmlsec1-1.2.29: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [90/122] Installing py38-repoze.who-2.4...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [90/122] Extracting py38-repoze.who-2.4: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [91/122] Installing py38-importlib-resources-5.4.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [91/122] Extracting py38-importlib-resources-5.4.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [92/122] Installing py38-defusedxml-0.6.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [92/122] Extracting py38-defusedxml-0.6.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [93/122] Installing py38-dateutil-2.8.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [93/122] Extracting py38-dateutil-2.8.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [94/122] Installing py38-tkinter-3.8.12_6...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [94/122] Extracting py38-tkinter-3.8.12_6: ........ done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [95/122] Installing libraqm-0.7.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [95/122] Extracting libraqm-0.7.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [96/122] Installing webp-1.2.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [96/122] Extracting webp-1.2.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [97/122] Installing openjpeg-2.4.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [97/122] Extracting openjpeg-2.4.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [98/122] Installing py38-olefile-0.46...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [98/122] Extracting py38-olefile-0.46: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [99/122] Installing py38-pyrsistent-0.14.11_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [99/122] Extracting py38-pyrsistent-0.14.11_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [100/122] Installing py38-importlib-metadata-4.8.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [100/122] Extracting py38-importlib-metadata-4.8.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [101/122] Installing py38-markupsafe-2.0.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [101/122] Extracting py38-markupsafe-2.0.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [102/122] Installing py38-Babel-2.9.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [102/122] Extracting py38-Babel-2.9.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [103/122] Installing postgresql13-client-13.5...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [103/122] Extracting postgresql13-client-13.5: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [104/122] Installing py38-treq-20.9.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [104/122] Extracting py38-treq-20.9.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [105/122] Installing py38-pyjwt1-1.7.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [105/122] Extracting py38-pyjwt1-1.7.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [106/122] Installing py38-bleach-3.1.5...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [106/122] Extracting py38-bleach-3.1.5: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [107/122] Installing py38-signedjson-1.1.1_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [107/122] Extracting py38-signedjson-1.1.1_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [108/122] Installing py38-pysaml2-7.1.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [108/122] Extracting py38-pysaml2-7.1.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [109/122] Installing py38-pymacaroons-0.13.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [109/122] Extracting py38-pymacaroons-0.13.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [110/122] Installing py38-netaddr-0.8.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [110/122] Extracting py38-netaddr-0.8.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [111/122] Installing py38-prometheus-client-0.12.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [111/122] Extracting py38-prometheus-client-0.12.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [112/122] Installing py38-pillow-8.2.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [112/122] Extracting py38-pillow-8.2.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [113/122] Installing py38-yaml-5.4.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [113/122] Extracting py38-yaml-5.4.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [114/122] Installing py38-sortedcontainers-2.3.0...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [114/122] Extracting py38-sortedcontainers-2.3.0: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [115/122] Installing py38-phonenumbers-8.4.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [115/122] Extracting py38-phonenumbers-8.4.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [116/122] Installing py38-msgpack-1.0.3...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [116/122] Extracting py38-msgpack-1.0.3: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [117/122] Installing py38-jsonschema-4.2.1_1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [117/122] Extracting py38-jsonschema-4.2.1_1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [118/122] Installing py38-ijson-3.1.4...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [118/122] Extracting py38-ijson-3.1.4: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [119/122] Installing py38-Jinja2-3.0.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [119/122] Extracting py38-Jinja2-3.0.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [120/122] Installing py38-sqlite3-3.8.12_7...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [120/122] Extracting py38-sqlite3-3.8.12_7: ........ done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [121/122] Installing py38-psycopg2-2.9.2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [121/122] Extracting py38-psycopg2-2.9.2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [122/122] Installing py38-matrix-synapse-1.49.2...
===> Creating groups.
Creating group 'synapse' with gid '141'.
===> Creating users
Creating user 'synapse' with uid '126'.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [122/122] Extracting py38-matrix-synapse-1.49.2: .......... done
=====
Message from python38-3.8.12_1:

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

py38-gdbm       databases/py-gdbm@py38
py38-sqlite3    databases/py-sqlite3@py38
py38-tkinter    x11-toolkits/py-tkinter@py38
=====
Message from freetype2-2.11.1:

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

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

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

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

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

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

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

The controllable properties are listed in the section "Controlling FreeType
Modules" in the reference's table of contents
(/usr/local/share/doc/freetype2/reference/index.html, if documentation was installed).
=====
Message from py38-urllib3-1.26.7,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 py38-Automat-20.2.0:

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

--
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 py38-matrix-synapse-1.49.2:

--
Configuring Synapse:

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

/usr/local/bin/python3.8 -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 12: 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:
	py38-ldap3: 2.8.1
	py38-matrix-synapse-ldap3: 0.1.5

Number of packages to be installed: 2

The process will require 6 MiB more space.
439 KiB to be downloaded.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching py38-matrix-synapse-ldap3-0.1.5.pkg: ... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching py38-ldap3-2.8.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing py38-ldap3-2.8.1...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting py38-ldap3-2.8.1: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing py38-matrix-synapse-ldap3-0.1.5...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting py38-matrix-synapse-ldap3-0.1.5: .......... done
Step 13: 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.1
	socat: 1.7.4.2

Number of packages to be installed: 2

The process will require 2 MiB more space.
356 KiB to be downloaded.
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching acme.sh-3.0.1.pkg: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching socat-1.7.4.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing socat-1.7.4.2...
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting socat-1.7.4.2: .......... done
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing acme.sh-3.0.1...
===> Creating groups.
Creating group 'acme' with gid '169'.
===> Creating users
Creating user 'acme' with uid '169'.
===> Creating homedir(s)
[matrix-synapse-nomad-amd64-13_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting acme.sh-3.0.1: .......... done
=====
Message from acme.sh-3.0.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.

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 provided at /usr/local/share/examples/acme.sh/acme.sh.conf
and you could create a symlink from that to /usr/local/etc/newsyslog.conf.d/

Your sample cronjob looks like this:

############################################################################
$ sudo crontab -l -u acme
# use /bin/sh to run commands, overriding the default set by cron
SHELL=/bin/sh
# mail any output to here, no matter whose crontab this is
MAILTO=dan@example.org

7 22 * * * /usr/local/sbin/acme.sh --cron --home /var/db/acme/.acme.sh > /dev/null
############################################################################

Change x & y to some minute and hour of the day.
Step 14: 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.20.2_3,2

Number of packages to be installed: 1

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

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

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

Default path for the NGINX dynamic modules is

/usr/local/libexec/nginx.
Step 15: Clean package installation
Nothing to do.
Step 16: Create necessary directories if they don't exist
Step 17: Clean cook artifacts
Step 18: Create cook script
Step 19: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 20: Create rc.d script to start cook
creating rc.d script to start cook
Step 21: Make rc.d script to start cook executable
Setting executable bit on cook rc file
=====>  Stop the pot matrix-synapse-nomad-amd64-13_0
=====>  Remove epair0[a|b] network interfaces
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-13_0/m/dev
=====>  Flavour: matrix-synapse-nomad+1
=====>  Executing matrix-synapse-nomad+1 pot commands on matrix-synapse-nomad-amd64-13_0
=====>  No shell script available for the flavour matrix-synapse-nomad+1
=====>  Flavour: matrix-synapse-nomad+2
=====>  Executing matrix-synapse-nomad+2 pot commands on matrix-synapse-nomad-amd64-13_0
=====>  No shell script available for the flavour matrix-synapse-nomad+2
=====>  Flavour: matrix-synapse-nomad+3
=====>  Executing matrix-synapse-nomad+3 pot commands on matrix-synapse-nomad-amd64-13_0
=====>  No shell script available for the flavour matrix-synapse-nomad+3
=====>  Flavour: matrix-synapse-nomad+4
=====>  Executing matrix-synapse-nomad+4 pot commands on matrix-synapse-nomad-amd64-13_0
=====>  No shell script available for the flavour matrix-synapse-nomad+4

matrix-synapse-nomad-amd64-12_3_0.10.2:


matrix-synapse-nomad/matrix-synapse-nomad:
set-attribute -A persistent -V OFF
set-attribute -A no-rc-script -V ON
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/nginx.conf -d /root/nginx.conf
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/nginx.nossl.conf -d /root/nginx.nossl.conf
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/homeserver.yaml -d /root/homeserver.yaml
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/my.log.config -d /root/my.log.config
copy-in -s /usr/local/etc/pot/flavours/matrix-synapse.d/certrenew.sh -d /root/certrenew.sh
matrix-synapse-nomad/matrix-synapse-nomad.sh:
#!/bin/sh

# POTLUCK TEMPLATE v2.0
# EDIT THE FOLLOWING FOR NEW FLAVOUR:
# 1. RUNS_IN_NOMAD - yes or no
# 2. 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
# 3. Adjust package installation between BEGIN & END PACKAGE SETUP
# 4. Adjust jail configuration script generation between BEGIN & END COOK
#    Configure the config files that have been copied in where necessary

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

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

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

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

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

exit_ok() {
  trap - EXIT
  exit 0
}

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

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

# -------------- BEGIN PACKAGE SETUP -------------
step "Bootstrap package repo"
mkdir -p /usr/local/etc/pkg/repos
# shellcheck disable=SC2016
#echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest" }' \
echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/quarterly" }' \
  >/usr/local/etc/pkg/repos/FreeBSD.conf
ASSUME_ALWAYS_YES=yes pkg bootstrap

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

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

step "Disable sendmail"
service sendmail onedisable

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

# -------- BEGIN PACKAGE & MOUNTPOINT SETUP -------------
# Install packages
step "Install package sudo"
pkg install -y sudo

step "Install package openssl"
pkg install -y openssl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package curl"
pkg install -y curl

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

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

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

step "Install package nginx"
pkg install -y nginx

step "Clean package installation"
pkg clean -y

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

# ---------- END PACKAGE & MOUNTPOINT SETUP -------------

#
# Create configurations
#

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

# clear any old cook runtime file
step "Clean cook artifacts"
rm -rf /usr/local/bin/cook

# ----------------- BEGIN COOK ------------------
step "Create cook script"
echo "#!/bin/sh
RUNS_IN_NOMAD=$RUNS_IN_NOMAD
# declare this again for the pot image, might work carrying variable through like
# with above
COOKLOG=/var/log/cook.log

# No need to change this, just ensures configuration is done only once
if [ -e /usr/local/etc/pot-is-seasoned ]
then
    # If this pot flavour is blocking (i.e. it should not return),
    # we block indefinitely
    if [ \"\$RUNS_IN_NOMAD\" = \"true\" ]
    then
        /bin/sh /etc/rc
        tail -f /dev/null
    fi
    exit 0
fi


# ADJUST THIS: STOP SERVICES AS NEEDED BEFORE CONFIGURATION


# No need to adjust this:
# If this pot flavour is not blocking, we need to read the environment first from /tmp/environment.sh
# where pot is storing it in this case
if [ -e /tmp/environment.sh ]
then
    . /tmp/environment.sh
fi

#
# ADJUST THIS BY CHECKING FOR ALL VARIABLES YOUR FLAVOUR NEEDS:
#

# Convert parameters to variables if passed (overwrite environment)
while getopts s:e:r:k:h:u:p:l:b:d:w:n: option
do
    case \"\${option}\"
    in
      i) IP=\${OPTARG};;
      d) DOMAIN=\${OPTARG};;
      a) ALERTEMAIL=\${OPTARG};;
      e) ENABLEREGISTRATION=\${OPTARG};;
      s) MYSHAREDSECRET=\${OPTARG};;
      h) SMTPHOST=\${OPTARG};;
      p) SMTPPORT=\${OPTARG};;
      u) SMTPUSER=\${OPTARG};;
      c) SMTPPASS=\${OPTARG};;
      f) SMTPFROM=\${OPTARG};;
      l) LDAPSERVER=\${OPTARG};;
      b) LDAPPASSWORD=\${OPTARG};;
      t) LDAPDOMAIN=\${OPTARG};;
      n) NOSSL=\${OPTARG};;
      x) CONTROLUSER=\${OPTARG};;
      y) SSLEMAIL=\${OPTARG};;
    esac
done

# Check config variables are set
if [ -z \${IP+x} ];
then
    echo 'IP is unset - see documentation how to pass in the IP address as a parameter' >> /var/log/cook.log
    echo 'IP is unset - see documentation how to pass in the IP address as a parameter'
    exit 1
fi
if [ -z \${DOMAIN+x} ]; then
    echo 'DOMAIN is unset - see documentation how to pass in a domain name as a parameter' >> /var/log/cook.log
    echo 'DOMAIN is unset - see documentation how to pass in a domain name as a parameter'
    exit 1
fi
if [ -z \${ALERTEMAIL+x} ];
then
    echo 'ALERTEMAIL is unset - see documentation for how to pass in the alert email address as a parameter' >> /var/log/cook.log
    echo 'ALERTEMAIL is unset - see documentation for how to pass in the alert email address as a parameter'
    exit 1
fi
if [ -z \${ENABLEREGISTRATION+x} ];
then
    echo 'REGISTRATIONENABLE is unset - defaulting to false - see documentation for how to set true or false to enable registrations' >> /var/log/cook.log
    echo 'REGISTRATIONENABLE is unset - defaulting to false - see documentation for how to set true or false to enable registrations'
    REGISTRATIONENABLE=false
fi
if [ -z \${MYSHAREDSECRET+x} ];
then
    echo 'MYSHAREDSECRET is unset - please provide a shared secret - see documentation for how to pass this in as a parameter' >> /var/log/cook.log
    echo 'MYSHAREDSECRET is unset - please provide a shared secret - see documentation for how to pass this in as a parameter'
    exit 1
fi
if [ -z \${SMTPHOST+x} ];
then
    echo 'SMTPHOST is unset - please include the mail host - see documentation for how to pass in the mail host as a parameter' >> /var/log/cook.log
    echo 'SMTPHOST is unset - please include the mail host - see documentation for how to pass in the mail host as a parameter'
    exit 1
fi
if [ -z \${SMTPPORT+x} ]; then
    echo 'SMTPPORT is unset - defaulting to port 25 - see documentation for how to pass in the smtp port as a parameter' >> /var/log/cook.log
    echo 'SMTPPORT is unset - defaulting to port 25 - see documentation for how to pass in the smtp port as a parameter'
    SMTPPORT=25
fi
if [ -z \${SMTPUSER+x} ];
then
    echo 'SMTPUSER is unset - see documentation for how to pass in a smtp username as a parameter' >> /var/log/cook.log
    echo 'SMTPUSER is unset - see documentation for how to pass in a smtp username as a parameter'
    exit 1
fi
if [ -z \${SMTPPASS+x} ];
then
    echo 'SMTPPASS is unset - see documentation for how to pass in a smtp password as a parameter' >> /var/log/cook.log
    echo 'SMTPPASS is unset - see documentation for how to pass in a smtp password as a parameter'
    exit 1
fi
if [ -z \${SMTPFROM+x} ]; then
    echo 'SMTPFROM is unset - see documentation for how to pass in the from address as a parameter' >> /var/log/cook.log
    echo 'SMTPFROM is unset - see documentation for how to pass in the from address as a parameter'
    exit 1
fi
if [ -z \${LDAPSERVER+x} ]; then
    echo 'LDAPSERVER is unset - see documentation for how to pass in the LDAP server as a parameter' >> /var/log/cook.log
    echo 'LDAPSERVER is unset - see documentation for how to pass in the LDAP server as a parameter'
    exit 1
fi
if [ -z \${LDAPPASSWORD+x} ]; then
    echo 'LDAPPASSWORD is unset - see documentation for how to pass in the LDAP password as a parameter' >> /var/log/cook.log
    echo 'LDAPPASSWORD is unset - see documentation for how to pass in the LDAP password as a parameter'
    exit 1
fi
if [ -z \${LDAPDOMAIN+x} ]; then
    echo 'LDAPDOMAIN is unset - see documentation how to pass in the LDAP domain name as a parameter' >> /var/log/cook.log
    echo 'LDAPDOMAIN is unset - see documentation how to pass in the LDAP domain name as a parameter'
    exit 1
fi
if [ -z \${NOSSL+x} ]; then
    echo 'NOSSL is unset - default true - see documentation for how to enable SSL' >> /var/log/cook.log
    echo 'NOSSL is unset - default true - see documentation for how to enable SSL'
    NOSSL=true
fi
if [ -z \${CONTROLUSER+x} ]; then
    echo 'CONTROLUSER is unset - default false - see documentation for how to enable a control user SSH with authorized_keys file' >> /var/log/cook.log
    echo 'CONTROLUSER is unset - default false - see documentation for how to enable a control user SSH with authorized_keys file'
    CONTROLUSER=false
fi
if [ -z \${SSLEMAIL+x} ]; then
    echo 'SSLEMAIL is unset - see documentation for how to set email address for acme.sh regitration' >> /var/log/cook.log
    echo 'SSLEMAIL is unset - see documentation for how to set email address for acme.sh regitration'
    exit 1
fi


# ADJUST THIS BELOW: NOW ALL THE CONFIGURATION FILES NEED TO BE ADJUSTED & COPIED:

# check that /mnt/matrixdata exists
if [ -d /mnt/matrixdata ]; then
    echo \"INFO: /mnt/matrixdata exists. All good.\"
else
    echo \"ERROR: /mnt/matrixdata does not exist. Where is the persistent storage?\"
    exit 1
fi

# make dirs
mkdir -p /mnt/matrixdata/matrix-synapse
mkdir -p /mnt/matrixdata/media_store
mkdir -p /mnt/matrixdata/control
mkdir -p /usr/local/www/well-known/matrix

# double check permissions on directories
chown synapse /mnt/matrixdata
chown -R synapse /mnt/matrixdata/matrix-synapse
chmod -R ugo+rw /mnt/matrixdata/matrix-synapse
chown -R synapse /mnt/matrixdata/media_store
chmod -R ugo+rw /mnt/matrixdata/media_store
chown -R synapse /var/log/matrix-synapse
chown -R synapse /var/run/matrix-synapse

# split domain into parts for use in matrix-synapse ldap configuration
MYSUFFIX=\$(echo \${LDAPDOMAIN} | awk -F '.' 'NF>=2 {print \$(NF-1)}')
MYTLD=\$(echo \${LDAPDOMAIN} | awk -F '.' 'NF>=2 {print \$(NF)}')
echo \"From domain name of \${LDAPDOMAIN} we get MYSUFFIX of \${MYSUFFIX} and MYTLD of \${MYTLD}\"

# generate macaroon and form key
MYMACAROON=\$(/usr/bin/openssl rand -base64 48)
MYFORMKEY=\$(/usr/bin/openssl rand -base64 48)

# copy over log config
if [ -f /root/my.log.config ]; then
    cp -f /root/my.log.config /usr/local/etc/matrix-synapse/my.log.config
fi

# generate basic setup
/usr/local/bin/python3.8 -B -m synapse.app.homeserver -c /usr/local/etc/matrix-synapse/homeserver.yaml --generate-config -H \${DOMAIN} --report-stats no

mv /usr/local/etc/matrix-synapse/homeserver.yaml /usr/local/etc/matrix-synapse/homeserver.yaml.generated

# set variables and copy over homeserver.yaml
if [ -f /root/homeserver.yaml ]; then
    sed < /root/homeserver.yaml \
    -e \"s|%%DOMAIN%%|\${DOMAIN}|g\" \
    -e \"s|%%ALERTEMAIL%%|\${ALERTEMAIL}|g\" \
    -e \"s|%%REGISTRATIONENABLE%%|\${REGISTRATIONENABLE}|g\" \
    -e \"s|%%MYSHAREDSECRET%%|\${MYSHAREDSECRET}|g\" \
    -e \"s|%%MYMACAROON%%|\${MYMACAROON}|g\" \
    -e \"s|%%MYFORMKEY%%|\${MYFORMKEY}|g\" \
    -e \"s|%%SMTPHOST%%|\${SMTPHOST}|g\" \
    -e \"s|%%SMTPPORT%%|\${SMTPPORT}|g\" \
    -e \"s|%%SMTPUSER%%|\${SMTPUSER}|g\" \
    -e \"s|%%SMTPPASS%%|\${SMTPPASS}|g\" \
    -e \"s|%%LDAPSERVER%%|\${LDAPSERVER}|g\" \
    -e \"s|%%MYSUFFIX%%|\${MYSUFFIX}|g\" \
    -e \"s|%%MYTLD%%|\${MYTLD}|g\" \
    -e \"s|%%LDAPPASSWORD%%|\${LDAPPASSWORD}|g\" > /usr/local/etc/matrix-synapse/homeserver.yaml
else
    echo \"Error: no /root/homeserver.yaml file to modify. This error should not happen in prebuilt pot image.\"
fi

# enable matrix
service synapse enable

# setup control user
# sshd (control user)
if [ \${CONTROLUSER} = yes ]; then
    pw user add -n control -c 'Control Account' -d /mnt/matrixdata/control -G wheel -m -s /bin/sh
    mkdir -p /mnt/matrixdata/control/.ssh
    chown control:control /mnt/matrixdata/control/.ssh
    # copy in importauthkey to enable a specific pubkey access
    if [ -f /root/importauthkey ]; then
        cat /root/importauthkey > /mnt/matrixdata/control/.ssh/authorized_keys
    else
        touch /mnt/matrixdata/control/.ssh/authorized_keys
    fi
    chown control:control /mnt/matrixdata/control/.ssh/authorized_keys
    chmod u+rw /mnt/matrixdata/control/.ssh/authorized_keys
    chmod go-w /mnt/matrixdata/control/.ssh/authorized_keys
    echo \"StrictModes no\" >> /etc/ssh/sshd_config
    service sshd enable
    service sshd restart
fi

# setup nginx.conf
if [ \${NOSSL} = true ]; then
    if [ -f /root/nginx.nossl.conf ]; then
        sed < /root/nginx.nossl.conf \
        -e \"s|%%DOMAIN%%|\${DOMAIN}|g\" > /usr/local/etc/nginx/nginx.conf
    else
        echo \"Error: no /root/nginx.nossl.conf file to modify. This error should not happen in prebuilt pot image.\"
    fi
else
    if [ -f /root/nginx.conf ]; then
        sed < /root/nginx.conf \
        -e \"s|%%DOMAIN%%|\${DOMAIN}|g\" > /usr/local/etc/nginx/nginx.conf
    else
        echo \"Error: no /root/nginx.conf file to modify. This error should not happen in prebuilt pot image.\"
    fi
    # ssl steps
    if [ -f /root/certrenew.sh ]; then
        sed -i .orig -e \"s|%%SSLEMAIL%%|\${SSLEMAIL}|g\" -e \"s|%%DOMAIN%%|\${DOMAIN}|g\" /root/certrenew.sh
        chmod u+x /root/certrenew.sh
        echo \"30      4       1       *       *       root   /bin/sh /root/certrenew.sh\" >> /etc/crontab
    fi
fi

# enable nginx
service nginx enable

# ADJUST THIS: START THE SERVICES AGAIN AFTER CONFIGURATION

# run certificate renewal script
if [ \${NOSSL} = false ]; then
    echo \"Generating certificates then starting services with SSL\"
    cd /root
    /usr/local/sbin/acme.sh --register-account -m \${SSLEMAIL} --server zerossl
    /usr/local/sbin/acme.sh --force --issue -d \${DOMAIN} --standalone
    cp -f /.acme.sh/\${DOMAIN}/* /usr/local/etc/ssl/
    if [ -f /usr/local/etc/ssl/\${DOMAIN}.key ]; then
        service nginx start
        service synapse start
    else
        echo \"Error: where is /usr/local/etc/ssl/\${DOMAIN}.key?\"
    fi
else
    echo \"Starting services without SSL\"
    service synapse start
    service nginx start
fi

# Do not touch this:
touch /usr/local/etc/pot-is-seasoned

# If this pot flavour is blocking (i.e. it should not return), there is no /tmp/environment.sh
# created by pot and we now after configuration block indefinitely
if [ \"\$RUNS_IN_NOMAD\" = \"true\" ]
then
    /bin/sh /etc/rc
    tail -f /dev/null
fi
" > /usr/local/bin/cook

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


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

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

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

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

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

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

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

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


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

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

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

matrix-synapse-nomad/matrix-synapse-nomad+4:
set-cmd -c "/usr/local/bin/cook"
matrix-synapse-nomad/matrix-synapse-nomad+4.sh:
Password:===>  Creating a new pot
===>  pot name     : matrix-synapse-nomad-amd64-12_3
===>  type         : single
===>  base         : 12.3
===>  pot_base     : 
===>  level        : 0
===>  network-type : public-bridge
===>  network-stack: ipv4
===>  ip           : 10.192.0.4
===>  bridge       : 
===>  dns          : inherit
===>  flavours     : fbsd-update matrix-synapse-nomad matrix-synapse-nomad+1 matrix-synapse-nomad+2 matrix-synapse-nomad+3 matrix-synapse-nomad+4
===>  Fetching FreeBSD 12.3
===>  Extract the tarball
=====>  Flavour: fbsd-update
=====>  Starting matrix-synapse-nomad-amd64-12_3 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
defaultrouter: NO -> 10.192.0.1
===>  Starting the pot matrix-synapse-nomad-amd64-12_3
Generating host.conf.
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:30:2c:56:2d:0b
	inet 10.192.0.4 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Starting syslogd.
Clearing /tmp (X related).
Starting cron.
Starting sendmail_submit.
Starting sendmail_msp_queue.

Thu Jan 13 17:34:59 UTC 2022
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on matrix-synapse-nomad-amd64-12_3
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 2 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 12.3-RELEASE from update2.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.
Fetching 4 patches... done.
Applying patches... done.
The following files will be updated as part of updating to
12.3-RELEASE-p1:
/bin/freebsd-version
/lib/libalias.so.7
/usr/lib/libalias.a
/usr/lib/libalias_p.a
Installing updates...Scanning //usr/share/certs/blacklisted for certificates...
Scanning //usr/share/certs/trusted for certificates...
 done.
=====>  Stop the pot matrix-synapse-nomad-amd64-12_3
=====>  Remove epair0[a|b] network interfaces
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/dev
=====>  Flavour: matrix-synapse-nomad
=====>  Executing matrix-synapse-nomad pot commands on matrix-synapse-nomad-amd64-12_3
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/nginx.conf copied in the pot matrix-synapse-nomad-amd64-12_3
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/dev is already unmounted
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/nginx.nossl.conf copied in the pot matrix-synapse-nomad-amd64-12_3
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/dev is already unmounted
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/homeserver.yaml copied in the pot matrix-synapse-nomad-amd64-12_3
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/dev is already unmounted
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/my.log.config copied in the pot matrix-synapse-nomad-amd64-12_3
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/dev is already unmounted
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  Source /usr/local/etc/pot/flavours/matrix-synapse.d/certrenew.sh copied in the pot matrix-synapse-nomad-amd64-12_3
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/dev is already unmounted
=====>  Starting matrix-synapse-nomad-amd64-12_3 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
===>  Starting the pot matrix-synapse-nomad-amd64-12_3
add net default: gateway 10.192.0.1
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
	inet 127.0.0.1 netmask 0xff000000
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:88:aa:ec:0d:0b
	inet 10.192.0.4 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Starting syslogd.
Clearing /tmp (X related).
Starting cron.
Starting sendmail_submit.
Starting sendmail_msp_queue.

Thu Jan 13 17:35:10 UTC 2022
/usr/local/etc/pot/flavours/matrix-synapse-nomad.sh -> /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp/matrix-synapse-nomad.sh
=====>  Executing matrix-synapse-nomad script on matrix-synapse-nomad-amd64-12_3
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.17.5...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.17.5: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:12:amd64/quarterly, please wait...
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Install package sudo
Updating FreeBSD repository catalogue...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 31447 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	gettext-runtime: 0.21
	indexinfo: 0.3.1
	sudo: 1.9.8p2

Number of packages to be installed: 3

The process will require 7 MiB more space.
2 MiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching sudo-1.9.8p2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching gettext-runtime-0.21.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching indexinfo-0.3.1.pkg: . done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/3] Installing indexinfo-0.3.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting indexinfo-0.3.1: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Installing gettext-runtime-0.21...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting gettext-runtime-0.21: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Installing sudo-1.9.8p2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting sudo-1.9.8p2: .......... done
Step 7: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	openssl: 1.1.1m_1,1

Number of packages to be installed: 1

The process will require 14 MiB more space.
4 MiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching openssl-1.1.1m_1,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing openssl-1.1.1m_1,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting openssl-1.1.1m_1,1: .......... done
Step 8: Install package jq
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:
	jq: 1.6
	oniguruma: 6.9.7.1

Number of packages to be installed: 2

The process will require 2 MiB more space.
497 KiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching jq-1.6.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching oniguruma-6.9.7.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing oniguruma-6.9.7.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting oniguruma-6.9.7.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing jq-1.6...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting jq-1.6: .......... done
Step 9: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	jo: 1.4

Number of packages to be installed: 1

19 KiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jo-1.4.pkg: ... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jo-1.4...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jo-1.4: ...... done
Step 10: Install package curl
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:
	ca_root_nss: 3.71
	curl: 7.80.0
	libnghttp2: 1.46.0
	libssh2: 1.10.0,3

Number of packages to be installed: 4

The process will require 6 MiB more space.
2 MiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/4] Fetching curl-7.80.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/4] Fetching libnghttp2-1.46.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/4] Fetching libssh2-1.10.0,3.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/4] Fetching ca_root_nss-3.71.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/4] Installing libnghttp2-1.46.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/4] Extracting libnghttp2-1.46.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/4] Installing libssh2-1.10.0,3...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/4] Extracting libssh2-1.10.0,3: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/4] Installing ca_root_nss-3.71...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/4] Extracting ca_root_nss-3.71: ........ done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/4] Installing curl-7.80.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/4] Extracting curl-7.80.0: .......... done
=====
Message from ca_root_nss-3.71:

--
FreeBSD does not, and can not warrant that the certification authorities
whose certificates are included in this package have in any way been
audited for trustworthiness or RFC 3647 compliance.

Assessment and verification of trust is the complete responsibility of the
system administrator.


This package installs symlinks to support root certificates discovery by
default for software that uses OpenSSL.

This enables SSL Certificate Verification by client software without manual
intervention.

If you prefer to do this manually, replace the following symlinks with
either an empty file or your site-local certificate bundle.

  * /etc/ssl/cert.pem
  * /usr/local/etc/ssl/cert.pem
  * /usr/local/openssl/cert.pem
Step 11: Install package matrix server
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 122 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	expat: 2.4.2
	fontconfig: 2.13.94_1,1
	freetype2: 2.11.1
	fribidi: 1.0.11
	giflib: 5.2.1
	glib: 2.70.2,2
	graphite2: 1.3.14
	harfbuzz: 3.2.0
	jbigkit: 2.1_1
	jpeg-turbo: 2.1.1_1
	lcms2: 2.12
	libX11: 1.7.2,1
	libXScrnSaver: 1.2.3_2
	libXau: 1.0.9
	libXdmcp: 1.1.3
	libXext: 1.3.4,1
	libXft: 2.3.4
	libXrender: 0.9.10_2
	libedit: 3.1.20210216,1
	libffi: 3.3_1
	libgcrypt: 1.9.4
	libgpg-error: 1.43
	libiconv: 1.16
	libltdl: 2.4.6
	libpthread-stubs: 0.4
	libraqm: 0.7.1
	libsodium: 1.0.18
	libxcb: 1.14_1
	libxml2: 2.9.12
	libxslt: 1.1.34_2
	libyaml: 0.2.5
	mpdecimal: 2.5.1
	nspr: 4.33
	nss: 3.74
	openjpeg: 2.4.0
	pcre: 8.45
	png: 1.6.37_1
	postgresql13-client: 13.5
	py38-Automat: 20.2.0
	py38-Babel: 2.9.1
	py38-Jinja2: 3.0.1
	py38-Paste: 3.4.6
	py38-PyHamcrest: 2.0.2
	py38-appdirs: 1.4.4
	py38-attrs: 21.2.0
	py38-bcrypt: 3.2.0
	py38-bleach: 3.1.5
	py38-canonicaljson: 1.5.0
	py38-certifi: 2021.10.8
	py38-cffi: 1.15.0
	py38-chardet: 4.0.0,1
	py38-constantly: 15.1.0
	py38-cryptography: 3.3.2
	py38-dateutil: 2.8.1
	py38-defusedxml: 0.6.0
	py38-elementpath: 2.4.0
	py38-frozendict: 2.1.1
	py38-h2: 4.0.0
	py38-hpack: 4.0.0
	py38-hyperframe: 6.0.0
	py38-hyperlink: 21.0.0
	py38-idna: 2.10
	py38-ijson: 3.1.4
	py38-importlib-metadata: 4.8.1
	py38-importlib-resources: 5.4.0
	py38-incremental: 21.3.0
	py38-jsonschema: 4.2.1_1
	py38-lxml: 4.7.1
	py38-markupsafe: 2.0.1
	py38-matrix-synapse: 1.49.2
	py38-msgpack: 1.0.3
	py38-netaddr: 0.8.0
	py38-olefile: 0.46
	py38-openssl: 20.0.1
	py38-packaging: 21.3
	py38-phonenumbers: 8.4.1
	py38-pillow: 8.2.0
	py38-priority1: 1.3.0
	py38-prometheus-client: 0.12.0
	py38-psycopg2: 2.9.2
	py38-pyasn1: 0.4.7_1
	py38-pyasn1-modules: 0.2.8
	py38-pycparser: 2.21
	py38-pyjwt1: 1.7.1
	py38-pymacaroons: 0.13.0
	py38-pynacl: 1.4.0
	py38-pyparsing: 3.0.6
	py38-pyrsistent: 0.14.11_1
	py38-pysaml2: 7.1.0
	py38-pyserial: 3.5_2
	py38-pysocks: 1.7.1
	py38-pytz: 2021.3,1
	py38-repoze.who: 2.4
	py38-requests: 2.25.1
	py38-service_identity: 18.1.0
	py38-setuptools: 57.0.0
	py38-signedjson: 1.1.1_1
	py38-simplejson: 3.17.5
	py38-six: 1.16.0
	py38-sortedcontainers: 2.3.0
	py38-sqlite3: 3.8.12_7
	py38-tkinter: 3.8.12_6
	py38-treq: 20.9.0
	py38-twisted: 21.7.0
	py38-typing-extensions: 3.10.0.2
	py38-unpaddedbase64: 2.1.0
	py38-urllib3: 1.26.7,1
	py38-webencodings: 0.5.1
	py38-webob: 1.8.7
	py38-xmlschema: 1.8.2
	py38-yaml: 5.4.1
	py38-zipp: 3.4.0
	py38-zope.interface: 5.3.0
	python38: 3.8.12_1
	readline: 8.1.1
	sqlite3: 3.35.5_4,1
	tcl86: 8.6.12
	tiff: 4.3.0
	tk86: 8.6.12
	webp: 1.2.1
	xmlsec1: 1.2.29
	xorgproto: 2021.5

Number of packages to be installed: 122

The process will require 446 MiB more space.
72 MiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/122] Fetching py38-matrix-synapse-1.49.2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/122] Fetching py38-treq-20.9.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/122] Fetching py38-requests-2.25.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/122] Fetching py38-chardet-4.0.0,1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/122] Fetching python38-3.8.12_1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/122] Fetching mpdecimal-2.5.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/122] Fetching readline-8.1.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/122] Fetching libffi-3.3_1.pkg: ..... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/122] Fetching py38-setuptools-57.0.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/122] Fetching py38-certifi-2021.10.8.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/122] Fetching py38-urllib3-1.26.7,1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/122] Fetching py38-openssl-20.0.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/122] Fetching py38-cryptography-3.3.2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/122] Fetching py38-six-1.16.0.pkg: ... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/122] Fetching py38-cffi-1.15.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/122] Fetching py38-pycparser-2.21.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/122] Fetching py38-pysocks-1.7.1.pkg: ... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/122] Fetching py38-idna-2.10.pkg: ......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/122] Fetching py38-hyperlink-21.0.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/122] Fetching py38-service_identity-18.1.0.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/122] Fetching py38-pyasn1-modules-0.2.8.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/122] Fetching py38-pyasn1-0.4.7_1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/122] Fetching py38-attrs-21.2.0.pkg: ......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [24/122] Fetching py38-twisted-21.7.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [25/122] Fetching py38-priority1-1.3.0.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [26/122] Fetching py38-h2-4.0.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [27/122] Fetching py38-hyperframe-6.0.0.pkg: ... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [28/122] Fetching py38-hpack-4.0.0.pkg: ..... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [29/122] Fetching py38-PyHamcrest-2.0.2.pkg: ....... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [30/122] Fetching py38-bcrypt-3.2.0.pkg: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [31/122] Fetching py38-zope.interface-5.3.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [32/122] Fetching py38-typing-extensions-3.10.0.2.pkg: ...... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [33/122] Fetching py38-incremental-21.3.0.pkg: ... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [34/122] Fetching py38-constantly-15.1.0.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [35/122] Fetching py38-appdirs-1.4.4.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [36/122] Fetching py38-Automat-20.2.0.pkg: ....... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [37/122] Fetching py38-pyserial-3.5_2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [38/122] Fetching py38-pyjwt1-1.7.1.pkg: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [39/122] Fetching py38-bleach-3.1.5.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [40/122] Fetching py38-packaging-21.3.pkg: ........ done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [41/122] Fetching py38-pyparsing-3.0.6.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [42/122] Fetching py38-webencodings-0.5.1.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [43/122] Fetching py38-signedjson-1.1.1_1.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [44/122] Fetching py38-pynacl-1.4.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [45/122] Fetching libsodium-1.0.18.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [46/122] Fetching libyaml-0.2.5.pkg: ......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [47/122] Fetching libedit-3.1.20210216,1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [48/122] Fetching py38-unpaddedbase64-2.1.0.pkg: . done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [49/122] Fetching py38-canonicaljson-1.5.0.pkg: . done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [50/122] Fetching py38-simplejson-3.17.5.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [51/122] Fetching py38-frozendict-2.1.1.pkg: ....... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [52/122] Fetching py38-pysaml2-7.1.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [53/122] Fetching py38-Paste-3.4.6.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [54/122] Fetching py38-xmlschema-1.8.2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [55/122] Fetching py38-elementpath-2.4.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [56/122] Fetching py38-lxml-4.7.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [57/122] Fetching libxslt-1.1.34_2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [58/122] Fetching libxml2-2.9.12.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [59/122] Fetching libgpg-error-1.43.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [60/122] Fetching libgcrypt-1.9.4.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [61/122] Fetching xmlsec1-1.2.29.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [62/122] Fetching nss-3.74.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [63/122] Fetching nspr-4.33.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [64/122] Fetching sqlite3-3.35.5_4,1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [65/122] Fetching tcl86-8.6.12.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [66/122] Fetching libltdl-2.4.6.pkg: ..... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [67/122] Fetching py38-repoze.who-2.4.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [68/122] Fetching py38-webob-1.8.7.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [69/122] Fetching py38-pytz-2021.3,1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [70/122] Fetching py38-importlib-resources-5.4.0.pkg: ..... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [71/122] Fetching py38-zipp-3.4.0.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [72/122] Fetching py38-defusedxml-0.6.0.pkg: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [73/122] Fetching py38-dateutil-2.8.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [74/122] Fetching py38-pymacaroons-0.13.0.pkg: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [75/122] Fetching py38-netaddr-0.8.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [76/122] Fetching py38-prometheus-client-0.12.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [77/122] Fetching py38-pillow-8.2.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [78/122] Fetching libxcb-1.14_1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [79/122] Fetching libXdmcp-1.1.3.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [80/122] Fetching xorgproto-2021.5.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [81/122] Fetching libXau-1.0.9.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [82/122] Fetching libpthread-stubs-0.4.pkg: . done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [83/122] Fetching tk86-8.6.12.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [84/122] Fetching libXrender-0.9.10_2.pkg: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [85/122] Fetching libX11-1.7.2,1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [86/122] Fetching libXext-1.3.4,1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [87/122] Fetching libXScrnSaver-1.2.3_2.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [88/122] Fetching libXft-2.3.4.pkg: ......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [89/122] Fetching fontconfig-2.13.94_1,1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [90/122] Fetching expat-2.4.2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [91/122] Fetching freetype2-2.11.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [92/122] Fetching png-1.6.37_1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [93/122] Fetching py38-tkinter-3.8.12_6.pkg: ... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [94/122] Fetching libraqm-0.7.1.pkg: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [95/122] Fetching harfbuzz-3.2.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [96/122] Fetching graphite2-1.3.14.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [97/122] Fetching glib-2.70.2,2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [98/122] Fetching pcre-8.45.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [99/122] Fetching libiconv-1.16.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [100/122] Fetching fribidi-1.0.11.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [101/122] Fetching webp-1.2.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [102/122] Fetching tiff-4.3.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [103/122] Fetching jpeg-turbo-2.1.1_1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [104/122] Fetching jbigkit-2.1_1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [105/122] Fetching giflib-5.2.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [106/122] Fetching openjpeg-2.4.0.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [107/122] Fetching lcms2-2.12.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [108/122] Fetching py38-olefile-0.46.pkg: ...... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [109/122] Fetching py38-yaml-5.4.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [110/122] Fetching py38-sortedcontainers-2.3.0.pkg: ..... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [111/122] Fetching py38-phonenumbers-8.4.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [112/122] Fetching py38-msgpack-1.0.3.pkg: ........ done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [113/122] Fetching py38-jsonschema-4.2.1_1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [114/122] Fetching py38-pyrsistent-0.14.11_1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [115/122] Fetching py38-importlib-metadata-4.8.1.pkg: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [116/122] Fetching py38-ijson-3.1.4.pkg: ..... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [117/122] Fetching py38-Jinja2-3.0.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [118/122] Fetching py38-markupsafe-2.0.1.pkg: .. done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [119/122] Fetching py38-Babel-2.9.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [120/122] Fetching py38-sqlite3-3.8.12_7.pkg: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [121/122] Fetching py38-psycopg2-2.9.2.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [122/122] Fetching postgresql13-client-13.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/122] Installing mpdecimal-2.5.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/122] Extracting mpdecimal-2.5.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/122] Installing readline-8.1.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/122] Extracting readline-8.1.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/122] Installing libffi-3.3_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [3/122] Extracting libffi-3.3_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/122] Installing python38-3.8.12_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [4/122] Extracting python38-3.8.12_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/122] Installing xorgproto-2021.5...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [5/122] Extracting xorgproto-2021.5: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/122] Installing py38-setuptools-57.0.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [6/122] Extracting py38-setuptools-57.0.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/122] Installing libXdmcp-1.1.3...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [7/122] Extracting libXdmcp-1.1.3: ......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/122] Installing libXau-1.0.9...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [8/122] Extracting libXau-1.0.9: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/122] Installing libpthread-stubs-0.4...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [9/122] Extracting libpthread-stubs-0.4: .... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/122] Installing py38-pycparser-2.21...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [10/122] Extracting py38-pycparser-2.21: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/122] Installing libgpg-error-1.43...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [11/122] Extracting libgpg-error-1.43: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/122] Installing libxcb-1.14_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [12/122] Extracting libxcb-1.14_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/122] Installing png-1.6.37_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [13/122] Extracting png-1.6.37_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/122] Installing py38-six-1.16.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [14/122] Extracting py38-six-1.16.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/122] Installing py38-cffi-1.15.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [15/122] Extracting py38-cffi-1.15.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/122] Installing libxml2-2.9.12...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [16/122] Extracting libxml2-2.9.12: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/122] Installing libgcrypt-1.9.4...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [17/122] Extracting libgcrypt-1.9.4: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/122] Installing libX11-1.7.2,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [18/122] Extracting libX11-1.7.2,1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/122] Installing expat-2.4.2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [19/122] Extracting expat-2.4.2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/122] Installing freetype2-2.11.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [20/122] Extracting freetype2-2.11.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/122] Installing py38-cryptography-3.3.2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [21/122] Extracting py38-cryptography-3.3.2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/122] Installing py38-pyasn1-0.4.7_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [22/122] Extracting py38-pyasn1-0.4.7_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/122] Installing libedit-3.1.20210216,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [23/122] Extracting libedit-3.1.20210216,1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [24/122] Installing libxslt-1.1.34_2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [24/122] Extracting libxslt-1.1.34_2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [25/122] Installing libXrender-0.9.10_2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [25/122] Extracting libXrender-0.9.10_2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [26/122] Installing libXext-1.3.4,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [26/122] Extracting libXext-1.3.4,1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [27/122] Installing fontconfig-2.13.94_1,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [27/122] Extracting fontconfig-2.13.94_1,1: .......... done
Running fc-cache to build fontconfig cache...
Font directories:
	/usr/local/share/fonts
	/usr/local/lib/X11/fonts
/usr/local/share/fonts: skipping, no such directory
/usr/local/lib/X11/fonts: skipping, no such directory
/var/db/fontconfig: cleaning cache directory
fc-cache: succeeded
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [28/122] Installing pcre-8.45...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [28/122] Extracting pcre-8.45: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [29/122] Installing libiconv-1.16...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [29/122] Extracting libiconv-1.16: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [30/122] Installing jpeg-turbo-2.1.1_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [30/122] Extracting jpeg-turbo-2.1.1_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [31/122] Installing jbigkit-2.1_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [31/122] Extracting jbigkit-2.1_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [32/122] Installing py38-certifi-2021.10.8...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [32/122] Extracting py38-certifi-2021.10.8: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [33/122] Installing py38-openssl-20.0.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [33/122] Extracting py38-openssl-20.0.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [34/122] Installing py38-pysocks-1.7.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [34/122] Extracting py38-pysocks-1.7.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [35/122] Installing py38-idna-2.10...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [35/122] Extracting py38-idna-2.10: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [36/122] Installing py38-pyasn1-modules-0.2.8...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [36/122] Extracting py38-pyasn1-modules-0.2.8: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [37/122] Installing py38-attrs-21.2.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [37/122] Extracting py38-attrs-21.2.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [38/122] Installing py38-hyperframe-6.0.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [38/122] Extracting py38-hyperframe-6.0.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [39/122] Installing py38-hpack-4.0.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [39/122] Extracting py38-hpack-4.0.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [40/122] Installing py38-lxml-4.7.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [40/122] Extracting py38-lxml-4.7.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [41/122] Installing nspr-4.33...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [41/122] Extracting nspr-4.33: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [42/122] Installing sqlite3-3.35.5_4,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [42/122] Extracting sqlite3-3.35.5_4,1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [43/122] Installing tcl86-8.6.12...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [43/122] Extracting tcl86-8.6.12: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [44/122] Installing libXScrnSaver-1.2.3_2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [44/122] Extracting libXScrnSaver-1.2.3_2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [45/122] Installing libXft-2.3.4...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [45/122] Extracting libXft-2.3.4: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [46/122] Installing graphite2-1.3.14...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [46/122] Extracting graphite2-1.3.14: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [47/122] Installing glib-2.70.2,2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [47/122] Extracting glib-2.70.2,2: .......... done
No schema files found: doing nothing.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [48/122] Installing tiff-4.3.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [48/122] Extracting tiff-4.3.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [49/122] Installing py38-chardet-4.0.0,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [49/122] Extracting py38-chardet-4.0.0,1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [50/122] Installing py38-urllib3-1.26.7,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [50/122] Extracting py38-urllib3-1.26.7,1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [51/122] Installing py38-hyperlink-21.0.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [51/122] Extracting py38-hyperlink-21.0.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [52/122] Installing py38-service_identity-18.1.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [52/122] Extracting py38-service_identity-18.1.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [53/122] Installing py38-priority1-1.3.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [53/122] Extracting py38-priority1-1.3.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [54/122] Installing py38-h2-4.0.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [54/122] Extracting py38-h2-4.0.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [55/122] Installing py38-PyHamcrest-2.0.2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [55/122] Extracting py38-PyHamcrest-2.0.2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [56/122] Installing py38-bcrypt-3.2.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [56/122] Extracting py38-bcrypt-3.2.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [57/122] Installing py38-zope.interface-5.3.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [57/122] Extracting py38-zope.interface-5.3.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [58/122] Installing py38-typing-extensions-3.10.0.2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [58/122] Extracting py38-typing-extensions-3.10.0.2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [59/122] Installing py38-incremental-21.3.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [59/122] Extracting py38-incremental-21.3.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [60/122] Installing py38-constantly-15.1.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [60/122] Extracting py38-constantly-15.1.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [61/122] Installing py38-appdirs-1.4.4...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [61/122] Extracting py38-appdirs-1.4.4: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [62/122] Installing py38-Automat-20.2.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [62/122] Extracting py38-Automat-20.2.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [63/122] Installing py38-pyserial-3.5_2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [63/122] Extracting py38-pyserial-3.5_2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [64/122] Installing py38-pyparsing-3.0.6...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [64/122] Extracting py38-pyparsing-3.0.6: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [65/122] Installing libsodium-1.0.18...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [65/122] Extracting libsodium-1.0.18: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [66/122] Installing py38-simplejson-3.17.5...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [66/122] Extracting py38-simplejson-3.17.5: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [67/122] Installing py38-frozendict-2.1.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [67/122] Extracting py38-frozendict-2.1.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [68/122] Installing py38-elementpath-2.4.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [68/122] Extracting py38-elementpath-2.4.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [69/122] Installing nss-3.74...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [69/122] Extracting nss-3.74: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [70/122] Installing libltdl-2.4.6...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [70/122] Extracting libltdl-2.4.6: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [71/122] Installing py38-webob-1.8.7...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [71/122] Extracting py38-webob-1.8.7: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [72/122] Installing py38-pytz-2021.3,1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [72/122] Extracting py38-pytz-2021.3,1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [73/122] Installing py38-zipp-3.4.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [73/122] Extracting py38-zipp-3.4.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [74/122] Installing tk86-8.6.12...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [74/122] Extracting tk86-8.6.12: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [75/122] Installing harfbuzz-3.2.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [75/122] Extracting harfbuzz-3.2.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [76/122] Installing fribidi-1.0.11...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [76/122] Extracting fribidi-1.0.11: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [77/122] Installing giflib-5.2.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [77/122] Extracting giflib-5.2.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [78/122] Installing lcms2-2.12...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [78/122] Extracting lcms2-2.12: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [79/122] Installing py38-requests-2.25.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [79/122] Extracting py38-requests-2.25.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [80/122] Installing py38-twisted-21.7.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [80/122] Extracting py38-twisted-21.7.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [81/122] Installing py38-packaging-21.3...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [81/122] Extracting py38-packaging-21.3: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [82/122] Installing py38-webencodings-0.5.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [82/122] Extracting py38-webencodings-0.5.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [83/122] Installing py38-pynacl-1.4.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [83/122] Extracting py38-pynacl-1.4.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [84/122] Installing libyaml-0.2.5...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [84/122] Extracting libyaml-0.2.5: ......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [85/122] Installing py38-unpaddedbase64-2.1.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [85/122] Extracting py38-unpaddedbase64-2.1.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [86/122] Installing py38-canonicaljson-1.5.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [86/122] Extracting py38-canonicaljson-1.5.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [87/122] Installing py38-Paste-3.4.6...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [87/122] Extracting py38-Paste-3.4.6: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [88/122] Installing py38-xmlschema-1.8.2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [88/122] Extracting py38-xmlschema-1.8.2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [89/122] Installing xmlsec1-1.2.29...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [89/122] Extracting xmlsec1-1.2.29: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [90/122] Installing py38-repoze.who-2.4...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [90/122] Extracting py38-repoze.who-2.4: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [91/122] Installing py38-importlib-resources-5.4.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [91/122] Extracting py38-importlib-resources-5.4.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [92/122] Installing py38-defusedxml-0.6.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [92/122] Extracting py38-defusedxml-0.6.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [93/122] Installing py38-dateutil-2.8.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [93/122] Extracting py38-dateutil-2.8.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [94/122] Installing py38-tkinter-3.8.12_6...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [94/122] Extracting py38-tkinter-3.8.12_6: ........ done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [95/122] Installing libraqm-0.7.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [95/122] Extracting libraqm-0.7.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [96/122] Installing webp-1.2.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [96/122] Extracting webp-1.2.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [97/122] Installing openjpeg-2.4.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [97/122] Extracting openjpeg-2.4.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [98/122] Installing py38-olefile-0.46...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [98/122] Extracting py38-olefile-0.46: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [99/122] Installing py38-pyrsistent-0.14.11_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [99/122] Extracting py38-pyrsistent-0.14.11_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [100/122] Installing py38-importlib-metadata-4.8.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [100/122] Extracting py38-importlib-metadata-4.8.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [101/122] Installing py38-markupsafe-2.0.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [101/122] Extracting py38-markupsafe-2.0.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [102/122] Installing py38-Babel-2.9.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [102/122] Extracting py38-Babel-2.9.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [103/122] Installing postgresql13-client-13.5...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [103/122] Extracting postgresql13-client-13.5: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [104/122] Installing py38-treq-20.9.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [104/122] Extracting py38-treq-20.9.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [105/122] Installing py38-pyjwt1-1.7.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [105/122] Extracting py38-pyjwt1-1.7.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [106/122] Installing py38-bleach-3.1.5...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [106/122] Extracting py38-bleach-3.1.5: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [107/122] Installing py38-signedjson-1.1.1_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [107/122] Extracting py38-signedjson-1.1.1_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [108/122] Installing py38-pysaml2-7.1.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [108/122] Extracting py38-pysaml2-7.1.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [109/122] Installing py38-pymacaroons-0.13.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [109/122] Extracting py38-pymacaroons-0.13.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [110/122] Installing py38-netaddr-0.8.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [110/122] Extracting py38-netaddr-0.8.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [111/122] Installing py38-prometheus-client-0.12.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [111/122] Extracting py38-prometheus-client-0.12.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [112/122] Installing py38-pillow-8.2.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [112/122] Extracting py38-pillow-8.2.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [113/122] Installing py38-yaml-5.4.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [113/122] Extracting py38-yaml-5.4.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [114/122] Installing py38-sortedcontainers-2.3.0...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [114/122] Extracting py38-sortedcontainers-2.3.0: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [115/122] Installing py38-phonenumbers-8.4.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [115/122] Extracting py38-phonenumbers-8.4.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [116/122] Installing py38-msgpack-1.0.3...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [116/122] Extracting py38-msgpack-1.0.3: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [117/122] Installing py38-jsonschema-4.2.1_1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [117/122] Extracting py38-jsonschema-4.2.1_1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [118/122] Installing py38-ijson-3.1.4...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [118/122] Extracting py38-ijson-3.1.4: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [119/122] Installing py38-Jinja2-3.0.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [119/122] Extracting py38-Jinja2-3.0.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [120/122] Installing py38-sqlite3-3.8.12_7...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [120/122] Extracting py38-sqlite3-3.8.12_7: ........ done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [121/122] Installing py38-psycopg2-2.9.2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [121/122] Extracting py38-psycopg2-2.9.2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [122/122] Installing py38-matrix-synapse-1.49.2...
===> Creating groups.
Creating group 'synapse' with gid '141'.
===> Creating users
Creating user 'synapse' with uid '126'.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [122/122] Extracting py38-matrix-synapse-1.49.2: .......... done
=====
Message from python38-3.8.12_1:

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

py38-gdbm       databases/py-gdbm@py38
py38-sqlite3    databases/py-sqlite3@py38
py38-tkinter    x11-toolkits/py-tkinter@py38
=====
Message from freetype2-2.11.1:

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

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

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

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

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

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

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

The controllable properties are listed in the section "Controlling FreeType
Modules" in the reference's table of contents
(/usr/local/share/doc/freetype2/reference/index.html, if documentation was installed).
=====
Message from py38-urllib3-1.26.7,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 py38-Automat-20.2.0:

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

--
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 py38-matrix-synapse-1.49.2:

--
Configuring Synapse:

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

/usr/local/bin/python3.8 -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 12: 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:
	py38-ldap3: 2.8.1
	py38-matrix-synapse-ldap3: 0.1.5

Number of packages to be installed: 2

The process will require 6 MiB more space.
439 KiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching py38-matrix-synapse-ldap3-0.1.5.pkg: ... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching py38-ldap3-2.8.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing py38-ldap3-2.8.1...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting py38-ldap3-2.8.1: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing py38-matrix-synapse-ldap3-0.1.5...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting py38-matrix-synapse-ldap3-0.1.5: .......... done
Step 13: 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.1
	socat: 1.7.4.2

Number of packages to be installed: 2

The process will require 2 MiB more space.
355 KiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching acme.sh-3.0.1.pkg: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching socat-1.7.4.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Installing socat-1.7.4.2...
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting socat-1.7.4.2: .......... done
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Installing acme.sh-3.0.1...
===> Creating groups.
Creating group 'acme' with gid '169'.
===> Creating users
Creating user 'acme' with uid '169'.
===> Creating homedir(s)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting acme.sh-3.0.1: .......... done
=====
Message from acme.sh-3.0.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.

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 provided at /usr/local/share/examples/acme.sh/acme.sh.conf
and you could create a symlink from that to /usr/local/etc/newsyslog.conf.d/

Your sample cronjob looks like this:

############################################################################
$ sudo crontab -l -u acme
# use /bin/sh to run commands, overriding the default set by cron
SHELL=/bin/sh
# mail any output to here, no matter whose crontab this is
MAILTO=dan@example.org

7 22 * * * /usr/local/sbin/acme.sh --cron --home /var/db/acme/.acme.sh > /dev/null
############################################################################

Change x & y to some minute and hour of the day.
Step 14: 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.20.2_3,2

Number of packages to be installed: 1

The process will require 1 MiB more space.
455 KiB to be downloaded.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching nginx-1.20.2_3,2.pkg: .......... done
Checking integrity... done (0 conflicting)
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Installing nginx-1.20.2_3,2...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[matrix-synapse-nomad-amd64-12_3.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting nginx-1.20.2_3,2: .......... done
=====
Message from nginx-1.20.2_3,2:

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

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

Default path for the NGINX dynamic modules is

/usr/local/libexec/nginx.
Step 15: Clean package installation
Nothing to do.
Step 16: Create necessary directories if they don't exist
Step 17: Clean cook artifacts
Step 18: Create cook script
Step 19: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 20: Create rc.d script to start cook
creating rc.d script to start cook
Step 21: Make rc.d script to start cook executable
Setting executable bit on cook rc file
=====>  Stop the pot matrix-synapse-nomad-amd64-12_3
=====>  Remove epair0[a|b] network interfaces
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/tmp
=====>  unmount /mnt/srv/pot/jails/matrix-synapse-nomad-amd64-12_3/m/dev
=====>  Flavour: matrix-synapse-nomad+1
=====>  Executing matrix-synapse-nomad+1 pot commands on matrix-synapse-nomad-amd64-12_3
=====>  No shell script available for the flavour matrix-synapse-nomad+1
=====>  Flavour: matrix-synapse-nomad+2
=====>  Executing matrix-synapse-nomad+2 pot commands on matrix-synapse-nomad-amd64-12_3
=====>  No shell script available for the flavour matrix-synapse-nomad+2
=====>  Flavour: matrix-synapse-nomad+3
=====>  Executing matrix-synapse-nomad+3 pot commands on matrix-synapse-nomad-amd64-12_3
=====>  No shell script available for the flavour matrix-synapse-nomad+3
=====>  Flavour: matrix-synapse-nomad+4
=====>  Executing matrix-synapse-nomad+4 pot commands on matrix-synapse-nomad-amd64-12_3
=====>  No shell script available for the flavour matrix-synapse-nomad+4

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