DMARC-report

Overview

This flavour contains a local implementation of parsedmarc.

parsedmarc will produce CSV/JSON output from the relevant mailbox folder in the destination folder selected for /mnt.

This information can be submitted to a local script to produce a very simple chart at the site web address.

It is currently expected that this jail will run on an internal IP with no remote access.

The flavour includes a local consul agent instance to be available that it can connect to (see configuration below). You can e.g. use the consul pot flavour on this site to run consul. You can also connect to this host and service consul restart manually.

Warnings

The parsedmarc process can take up to 30min to complete with only a few hundred mails in your dmarc folder on a first run.

There is no progress indicator when complete. When your dmarc folder empties, the initial run is complete, and the messages go to the Archive folder.

Installation

  • Create your local jail from the image or the flavour files.
  • Clone the local jail
  • Mount in persistent storage
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
      -E DATACENTER=<datacentername> \
      -E NODENAME=<nodename> \
      -E IP=<IP address of this system> \
      -E CONSULSERVERS="<comma-deliminated list of consul servers>" \
      -E GOSSIPKEY=<32 byte Base64 key from consul keygen>] \
      -E IMAPSERVER=<mail host> \
      -E IMAPUSER=<imap username> \
      -E IMAPPASS=<imap password> \
      -E IMAPFOLDER=<imap folder with dmarc reports> \
      -E OUTPUTFOLDER=<name of folder to create in /mnt/> \
      [ -E REMOTELOG=<IP address> ]
    
  • Start the jail

Required Paramaters

The DATACENTER parameter defines a common datacenter.

The NODENAME parameter defines the name of this node.

The IP parameter is the IP address which will be used to access services.

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

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

The GOSSIPKEY parameter is the gossip encryption key for consul agent. We’re using a default key if you do not set the parameter, do not use the default key for production encryption, instead provide your own.

The IMAPSERVER parameter is the IP address or hostname of the IMAP server. It defaults to port 993 and SSL.

The IMAP user credentials are set with IMAPUSER and IMAPPASS.

The IMAPFOLDER parameter is the mail folder with the DMARC reports as attachments.

The OUTPUTFOLDER parameter is the folder to create in /mnt, which should be mounted in as persistent storage.

Optional Parameters

The REMOTELOG parameter is the IP address of a destination syslog-ng server, such as with the loki flavour, or beast-of-argh flavour.

Usage

We recommend creating a dedicated mailbox folder for DMARC reports and filtering those mails to it. Then configure this image to use that mail folder.

This development version sets up parsedmarc and runs the python process to generate JSON and CSV output from a mailbox.

Then it generates 3 simple charts from the data for display at the pot image’s IP address.

Note: there is very little feedback that processing a mailbox has happened. Check the folders under Archive called Aggregate, Foresic, and Invalid. You might need to subscribe to the folders in an IMAP client to see. When mails are processed from the identified dmarc mail folder, they are transferred to the Archive subfolders.

Getting Started

How To Use The Ready-Made Image

FreeBSD 14.0:
pot import -p dmarc-report-amd64-14_0 -t 0.11.2 -U https://potluck.honeyguide.net/dmarc-report

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p dmarc-report-amd64-14_0 -t 0.11.2 -C potluck.pub -U https://potluck.honeyguide.net/dmarc-report

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

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

Alternatively: Create a Jail With This Flavour Yourself

1. Create Flavour Files

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

2. Create Jail From Flavour

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

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

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

Version History

0.11

  • Remove opensearch and grafana
  • Introduce a script to produce 3 charts from aggregate.csv
  • Fix write path for index.html report

0.10

  • Version bump for new base image
  • Switch from zincsearch to opensearch with security plugins disabled
  • Fix node_exporter zfs issue
  • Update parsedmarc version and config
  • Create opensearch indexes manually
  • Add py39-regex
  • Fix typo for create-index.sh not configure-index.sh

0.9

  • Version bump for base image
  • FBSD14 base image

0.8

  • Version bump for new base image

0.7

  • Version bump for new base image

0.6

  • Version bump for new base image

0.5

  • Version bump for new base image
  • New zincsearch

0.4

  • Version bump for new base image

0.3

  • Version bump for new base image
  • Still WIP image, not working 100% yet for reports
  • Update to zincsearch 0.4.7
  • Make nginx fake elasticsearch on ip:9200/_bulk by proxy_pass to ip:4080/api/_bulk
  • Make parsedmarc send to ip:9200
  • Adjustments to parsedmarc rc script
  • Add zinc user/pass to parsedmarc elasticsearch config
  • Start parsedmarc service last
  • Increase request entity size for fake elasticsearch to 512MB
  • Enable prometheus monitoring for zincsearch
  • Proxy_pass to elasticsearch compatible API bulk endpoint
  • Adjust proxy_pass to /es/
  • Fixup changes to parsedmarc ini for fake elasticsearch
  • Force zincsearch index creation for ‘dmarc_aggregate’ and ‘dmarc_forensic’ before parsedmarc setup
  • Fix stall in index creation
  • Create a default index after checking zincsearch is responding. Don’t create ‘dmarc_aggregate’ and ‘dmarc_forensic’.
  • Bugfixing index creation step
  • Revert to forcing zincsearch index creation for ‘dmarc_aggregate’ and ‘dmarc_forensic’ before parsedmarc setup
  • Split index creation to own script before parsedmarc install
  • Use 127.0.0.1 instead of localhost
  • Add grafana8 to use with custom dashboard for parsedmarc, suitable dashboard to be tested still
  • Further adjustments to index creation
  • Add grafana variables, simplify index creation script
  • Fix missing grafana.ini
  • Update to Grafana9
  • Remove fake elasticsearch proxy_pass for testing direct
  • Tweaks to parsedmarc elasticsearch config, add back fake elasticsearch for parsedmarc ingestion
  • Fix Grafana datasource and add first dashboard
  • Fix syslog-ng problems for 4.2 version, remove stats_freq option
  • Updates to make Grafana play nice with fake elasticsearch
  • Create alias for index creation, configure Grafana to use alias
  • Add cron job to update alias (commented out)
  • Fix grafana database pattern, separate datasources for aggregate and forensic
  • Manually set elasticsearch version in zincsearch rc
  • Add local unbound and consul DNS services
  • Update README with consul DNS info
  • fix local_unbound dns resolution with missing parameters for access control
  • Disable consul DNS option with local_unbound as is only practical in VNET jails with a localhost

0.2

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

0.1

  • Rework project to start with parsedmarc python application
  • Remove serverport parameter
  • Fix username parsedmarc in user creation
  • Update checklist for python39 changes
  • Add parsedmarc.ini with imported parameters
  • Add outputfolder parameter
  • Touch log file and set permissions
  • Add rc script for parsedmarc
  • Update README
  • Add zincsearch, an elasticsearch clone
  • Make parsedmarc log to zincsearch automatically
  • Remove Elasticsearch and Kibana install
  • Fix zincsearch download
  • Add back rust
  • Fix zincsearch startup

0.0

  • First bash at a pot jail with automatic dmarc report by accessing IMAP mailbox
  • Use node pm2 as process manager to background node app

These images were built on Sun Apr 21 21:54:05 UTC 2024

Manual Image Download Links

dmarc-report-amd64-14_0_0.11.2.xz ( )
dmarc-report-amd64-14_0_0.11.2.xz.skein ( ) dmarc-report-amd64-14_0_0.11.2.xz.skein.sig ( ) dmarc-report-amd64-14_0_0.11.2.xz.meta ( )

Jenkins Pot Creation Logs

dmarc-report-amd64-14_0_0.11.2:


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

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

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

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

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

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

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

exit_ok() {
  trap - EXIT
  exit 0
}

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

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

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

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

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

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

step "Disable sendmail"
service sendmail onedisable

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

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

step "Install package openssl"
pkg install -y openssl

step "Install package sudo"
pkg install -y sudo

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

step "Install package curl"
pkg install -y curl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package nano"
pkg install -y nano

step "Install package bash"
pkg install -y bash

step "Install package rsync"
pkg install -y rsync

step "Install package git-lite"
pkg install -y git-lite

step "Install package node_exporter"
pkg install -y node_exporter

step "Install package nginx"
pkg install -y nginx

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

step "Install package python39"
pkg install -y python39

step "Install package py39-pip"
pkg install -y py39-pip

step "Install package py39-virtualenv"
pkg install -y py39-virtualenv

step "Install package py39-libxml2"
pkg install -y py39-libxml2

step "Install package py39-cryptography"
pkg install -y py39-cryptography

step "Install package py39-cryptography-vectors"
pkg install -y py39-cryptography-vectors

step "Install package py39-regex"
pkg install -y py39-regex

step "Install package py39-pandas"
pkg install -y py39-pandas

step "Install package py39-matplotlib"
pkg install -y py39-matplotlib

step "Install package libxslt"
pkg install -y libxslt

step "Install package rust"
pkg install -y rust

step "Clean package installation"
pkg clean -y


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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

dmarc-report/dmarc-report+1:
dmarc-report/dmarc-report+1.sh:

dmarc-report/dmarc-report+2:
dmarc-report/dmarc-report+2.sh:

dmarc-report/dmarc-report+3:
dmarc-report/dmarc-report+3.sh:

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

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

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

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

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

Number of packages to be upgraded: 1

12 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching pkg-1.21.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading pkg from 1.21.1 to 1.21.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting pkg-1.21.2: .......... done
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	consul: 1.18.1_1

Number of packages to be installed: 1

The process will require 121 MiB more space.
24 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching consul-1.18.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing consul-1.18.1_1...
===> Creating groups.
Creating group 'consul' with gid '469'.
===> Creating users
Creating user 'consul' with uid '469'.
===> Creating homedir(s)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting consul-1.18.1_1: ..... done
Step 7: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

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

Number of packages to be upgraded: 1

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

New packages to be INSTALLED:
	expat: 2.6.2
	git-lite: 2.44.0
	pcre2: 10.43

Number of packages to be installed: 3

The process will require 41 MiB more space.
8 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching pcre2-10.43.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching expat-2.6.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching git-lite-2.44.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing pcre2-10.43...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting pcre2-10.43: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing expat-2.6.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting expat-2.6.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing git-lite-2.44.0...
===> Creating groups.
Creating group 'git_daemon' with gid '964'.
===> Creating users
Creating user 'git_daemon' with uid '964'.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting git-lite-2.44.0: .......... done
=====
Message from git-lite-2.44.0:

--
If you installed the GITWEB option please follow these instructions:

In the directory /usr/local/share/examples/git/gitweb you can find all files to
make gitweb work as a public repository on the web.

All you have to do to make gitweb work is:
1) Please be sure you're able to execute CGI scripts in
   /usr/local/share/examples/git/gitweb.
2) Set the GITWEB_CONFIG variable in your webserver's config to
   /usr/local/etc/git/gitweb.conf. This variable is passed to gitweb.cgi.
3) Restart server.


If you installed the CONTRIB option please note that the scripts are
installed in /usr/local/share/git-core/contrib. Some of them require
other ports to be installed (perl, python, etc), which you may need to
install manually.
Step 17: Install package node_exporter
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	node_exporter: 1.6.1_4

Number of packages to be installed: 1

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

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

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

Number of packages to be installed: 1

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

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

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

Default path for the NGINX dynamic modules is

/usr/local/libexec/nginx.
Step 19: Install package syslog-ng
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 9 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	e2fsprogs-libuuid: 1.47.0
	glib: 2.80.0,2
	ivykis: 0.43_1
	json-c: 0.17
	libffi: 3.4.4_1
	mpdecimal: 4.0.0
	py39-packaging: 23.2
	python39: 3.9.18_2
	syslog-ng: 4.6.0_2

Number of packages to be installed: 9

The process will require 151 MiB more space.
24 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/9] Fetching ivykis-0.43_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/9] Fetching mpdecimal-4.0.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/9] Fetching python39-3.9.18_2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/9] Fetching glib-2.80.0,2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/9] Fetching syslog-ng-4.6.0_2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/9] Fetching libffi-3.4.4_1.pkg: ......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/9] Fetching py39-packaging-23.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/9] Fetching json-c-0.17.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/9] Fetching e2fsprogs-libuuid-1.47.0.pkg: ........ done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/9] Installing mpdecimal-4.0.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/9] Extracting mpdecimal-4.0.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/9] Installing libffi-3.4.4_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/9] Extracting libffi-3.4.4_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/9] Installing python39-3.9.18_2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/9] Extracting python39-3.9.18_2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/9] Installing py39-packaging-23.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/9] Extracting py39-packaging-23.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/9] Installing ivykis-0.43_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/9] Extracting ivykis-0.43_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/9] Installing glib-2.80.0,2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/9] Extracting glib-2.80.0,2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/9] Installing json-c-0.17...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/9] Extracting json-c-0.17: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/9] Installing e2fsprogs-libuuid-1.47.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/9] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/9] Installing syslog-ng-4.6.0_2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/9] Extracting syslog-ng-4.6.0_2: .......... done
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from python39-3.9.18_2:

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

py39-gdbm       databases/py-gdbm@py39
py39-sqlite3    databases/py-sqlite3@py39
py39-tkinter    x11-toolkits/py-tkinter@py39
=====
Message from syslog-ng-4.6.0_2:

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

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

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

        syslog_ng_enable="YES"

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

        syslogd_enable="NO"

4. Shut down the standard FreeBSD syslogd:

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

5. Start syslog-ng:

     /usr/local/etc/rc.d/syslog-ng start
Step 20: Install package python39
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 21: Install package py39-pip
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	py39-pip: 23.3.2_1
	py39-setuptools: 63.1.0_1

Number of packages to be installed: 2

The process will require 27 MiB more space.
4 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching py39-setuptools-63.1.0_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching py39-pip-23.3.2_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing py39-setuptools-63.1.0_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting py39-setuptools-63.1.0_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing py39-pip-23.3.2_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting py39-pip-23.3.2_1: .......... done
=====
Message from py39-pip-23.3.2_1:

--
pip MUST ONLY be used:

 * With the --user flag, OR
 * To install or manage Python packages in virtual environments

Failure to follow this warning can and will result in an inconsistent
system-wide Python environment (LOCALBASE/lib/pythonX.Y/site-packages) and
cause errors.

Avoid using pip as root unless you know what you're doing.
Step 22: Install package py39-virtualenv
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 5 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	py39-distlib: 0.3.8
	py39-filelock: 3.13.3
	py39-platformdirs: 4.2.0
	py39-typing-extensions: 4.11.0
	py39-virtualenv: 20.25.0_1

Number of packages to be installed: 5

The process will require 8 MiB more space.
4 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Fetching py39-platformdirs-4.2.0.pkg: ...... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Fetching py39-virtualenv-20.25.0_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Fetching py39-distlib-0.3.8.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Fetching py39-filelock-3.13.3.pkg: .... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Fetching py39-typing-extensions-4.11.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Installing py39-typing-extensions-4.11.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/5] Extracting py39-typing-extensions-4.11.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Installing py39-platformdirs-4.2.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/5] Extracting py39-platformdirs-4.2.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Installing py39-distlib-0.3.8...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/5] Extracting py39-distlib-0.3.8: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Installing py39-filelock-3.13.3...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/5] Extracting py39-filelock-3.13.3: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Installing py39-virtualenv-20.25.0_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/5] Extracting py39-virtualenv-20.25.0_1: .......... done
Step 23: Install package py39-libxml2
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	libxml2: 2.11.7
	py39-libxml2: 2.11.7

Number of packages to be installed: 2

The process will require 5 MiB more space.
1 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching libxml2-2.11.7.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching py39-libxml2-2.11.7.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing libxml2-2.11.7...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting libxml2-2.11.7: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing py39-libxml2-2.11.7...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting py39-libxml2-2.11.7: ...... done
Step 24: Install package py39-cryptography
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	py39-cffi: 1.16.0
	py39-cryptography: 42.0.5_1,1
	py39-pycparser: 2.22

Number of packages to be installed: 3

The process will require 7 MiB more space.
1 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching py39-cryptography-42.0.5_1,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching py39-pycparser-2.22.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching py39-cffi-1.16.0.pkg: ....... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Installing py39-pycparser-2.22...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting py39-pycparser-2.22: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Installing py39-cffi-1.16.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting py39-cffi-1.16.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Installing py39-cryptography-42.0.5_1,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting py39-cryptography-42.0.5_1,1: .......... done
Step 25: Install package py39-cryptography-vectors
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:
	py39-cryptography-vectors: 42.0.5

Number of packages to be installed: 1

The process will require 72 MiB more space.
27 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching py39-cryptography-vectors-42.0.5.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing py39-cryptography-vectors-42.0.5...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting py39-cryptography-vectors-42.0.5: .......... done
Step 26: Install package py39-regex
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:
	py39-regex: 2023.10.3

Number of packages to be installed: 1

The process will require 2 MiB more space.
301 KiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching py39-regex-2023.10.3.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing py39-regex-2023.10.3...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting py39-regex-2023.10.3: .......... done
Step 27: Install package py39-pandas
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 24 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	binutils: 2.40_5,1
	gcc13: 13.2.0_4
	gmp: 6.3.0
	libedit: 3.1.20230828_1,1
	mpc: 1.3.1_1
	mpfr: 4.2.1,1
	openblas: 0.3.25,2
	py39-bottleneck: 1.3.8
	py39-dateutil: 2.9.0
	py39-numexpr: 2.9.0_1
	py39-numpy: 1.25.0_6,1
	py39-pandas: 2.0.3_1,1
	py39-pytz: 2024.1,1
	py39-six: 1.16.0
	py39-sqlite3: 3.9.18_7
	py39-tzdata: 2024.1
	sqlite3: 3.45.1,1
	suitesparse-amd: 3.3.1
	suitesparse-camd: 3.3.1
	suitesparse-ccolamd: 3.3.2
	suitesparse-cholmod: 5.2.0
	suitesparse-colamd: 3.3.2
	suitesparse-config: 7.6.1
	suitesparse-umfpack: 6.3.2

Number of packages to be installed: 24

The process will require 663 MiB more space.
140 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/24] Fetching suitesparse-camd-3.3.1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/24] Fetching suitesparse-cholmod-5.2.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/24] Fetching py39-numpy-1.25.0_6,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/24] Fetching py39-bottleneck-1.3.8.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/24] Fetching py39-pandas-2.0.3_1,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/24] Fetching py39-sqlite3-3.9.18_7.pkg: ...... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/24] Fetching suitesparse-umfpack-6.3.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/24] Fetching suitesparse-ccolamd-3.3.2.pkg: ........ done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/24] Fetching py39-numexpr-2.9.0_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/24] Fetching py39-tzdata-2024.1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/24] Fetching suitesparse-amd-3.3.1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/24] Fetching libedit-3.1.20230828_1,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/24] Fetching gmp-6.3.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/24] Fetching mpfr-4.2.1,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/24] Fetching py39-dateutil-2.9.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/24] Fetching suitesparse-config-7.6.1.pkg: ........ done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/24] Fetching suitesparse-colamd-3.3.2.pkg: ...... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/24] Fetching py39-six-1.16.0.pkg: .... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/24] Fetching py39-pytz-2024.1,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/24] Fetching sqlite3-3.45.1,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/24] Fetching mpc-1.3.1_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/24] Fetching gcc13-13.2.0_4.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/24] Fetching binutils-2.40_5,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/24] Fetching openblas-0.3.25,2.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/24] Installing gmp-6.3.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/24] Extracting gmp-6.3.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/24] Installing mpfr-4.2.1,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/24] Extracting mpfr-4.2.1,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/24] Installing mpc-1.3.1_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/24] Extracting mpc-1.3.1_1: ......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/24] Installing binutils-2.40_5,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/24] Extracting binutils-2.40_5,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/24] Installing gcc13-13.2.0_4...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/24] Extracting gcc13-13.2.0_4: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/24] Installing openblas-0.3.25,2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/24] Extracting openblas-0.3.25,2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/24] Installing suitesparse-config-7.6.1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/24] Extracting suitesparse-config-7.6.1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/24] Installing suitesparse-camd-3.3.1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/24] Extracting suitesparse-camd-3.3.1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/24] Installing suitesparse-ccolamd-3.3.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/24] Extracting suitesparse-ccolamd-3.3.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/24] Installing suitesparse-amd-3.3.1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/24] Extracting suitesparse-amd-3.3.1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/24] Installing suitesparse-colamd-3.3.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/24] Extracting suitesparse-colamd-3.3.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/24] Installing suitesparse-cholmod-5.2.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/24] Extracting suitesparse-cholmod-5.2.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/24] Installing suitesparse-umfpack-6.3.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/24] Extracting suitesparse-umfpack-6.3.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/24] Installing libedit-3.1.20230828_1,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/24] Extracting libedit-3.1.20230828_1,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/24] Installing py39-numpy-1.25.0_6,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/24] Extracting py39-numpy-1.25.0_6,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/24] Installing py39-six-1.16.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/24] Extracting py39-six-1.16.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/24] Installing sqlite3-3.45.1,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/24] Extracting sqlite3-3.45.1,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/24] Installing py39-bottleneck-1.3.8...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/24] Extracting py39-bottleneck-1.3.8: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/24] Installing py39-sqlite3-3.9.18_7...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/24] Extracting py39-sqlite3-3.9.18_7: ........ done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/24] Installing py39-numexpr-2.9.0_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/24] Extracting py39-numexpr-2.9.0_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/24] Installing py39-tzdata-2024.1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/24] Extracting py39-tzdata-2024.1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/24] Installing py39-dateutil-2.9.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/24] Extracting py39-dateutil-2.9.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/24] Installing py39-pytz-2024.1,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/24] Extracting py39-pytz-2024.1,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/24] Installing py39-pandas-2.0.3_1,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/24] Extracting py39-pandas-2.0.3_1,1: .......... done
=====
Message from gcc13-13.2.0_4:

--
To ensure binaries built with this toolchain find appropriate versions
of the necessary run-time libraries, you may want to link using

  -Wl,-rpath=/usr/local/lib/gcc13

For ports leveraging USE_GCC, USES=compiler, or USES=fortran this happens
transparently.
=====
Message from py39-pandas-2.0.3_1,1:

--
Install math/py-statsmodels to enable parts of pandas.stats.
Install devel/py-xarray to enable the to_xarray() function.
Step 28: Install package py39-matplotlib
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 52 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	brotli: 1.1.0,1
	fontconfig: 2.15.0_2,1
	freetype2: 2.13.2
	fribidi: 1.0.13_1
	giflib: 5.2.1_1
	graphite2: 1.3.14
	harfbuzz: 8.4.0
	jbigkit: 2.1_2
	jpeg-turbo: 3.0.2
	lcms2: 2.16_1
	libX11: 1.8.7_1,1
	libXScrnSaver: 1.2.4_1
	libXau: 1.0.9_1
	libXdmcp: 1.1.5
	libXext: 1.3.6,1
	libXft: 2.3.7_1
	libXrender: 0.9.10_2
	libdeflate: 1.20
	libgcrypt: 1.10.3_1
	libgpg-error: 1.48
	libimagequant: 4.3.0_2
	libraqm: 0.10.1
	libxcb: 1.16.1
	libxslt: 1.1.37_1
	openjpeg: 2.5.2
	png: 1.6.43
	py39-appdirs: 1.4.4
	py39-brotli: 1.1.0
	py39-certifi: 2024.2.2
	py39-contourpy: 1.2.0
	py39-cycler: 0.12.1
	py39-fonttools: 4.51.0
	py39-fs2: 2.4.16
	py39-importlib-resources: 6.4.0
	py39-kiwisolver: 1.4.5,1
	py39-lxml: 4.9.3
	py39-matplotlib: 3.8.0
	py39-olefile: 0.46
	py39-pillow: 10.3.0
	py39-pluggy: 1.4.0
	py39-pyparsing: 3.1.2
	py39-tkinter: 3.9.18_7
	py39-tornado: 6.3.3
	py39-unicodedata2: 15.1.0
	py39-zipp: 3.18.1
	py39-zopfli: 0.2.3
	qhull: 8.0.2_3,1
	tcl86: 8.6.14_2
	tiff: 4.4.0_3
	tk86: 8.6.14_2
	webp: 1.3.2_1
	xorgproto: 2023.2

Number of packages to be installed: 52

The process will require 149 MiB more space.
31 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/52] Fetching png-1.6.43.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/52] Fetching qhull-8.0.2_3,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/52] Fetching libxcb-1.16.1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/52] Fetching libraqm-0.10.1.pkg: ........ done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/52] Fetching freetype2-2.13.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/52] Fetching jpeg-turbo-3.0.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/52] Fetching py39-kiwisolver-1.4.5,1.pkg: ......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/52] Fetching py39-matplotlib-3.8.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/52] Fetching libxslt-1.1.37_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/52] Fetching py39-zipp-3.18.1.pkg: .. done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/52] Fetching py39-lxml-4.9.3.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/52] Fetching lcms2-2.16_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/52] Fetching py39-olefile-0.46.pkg: ... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/52] Fetching libdeflate-1.20.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/52] Fetching fribidi-1.0.13_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/52] Fetching openjpeg-2.5.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/52] Fetching py39-pillow-10.3.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/52] Fetching py39-fs2-2.4.16.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/52] Fetching py39-pluggy-1.4.0.pkg: ....... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/52] Fetching py39-cycler-0.12.1.pkg: ... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/52] Fetching libXScrnSaver-1.2.4_1.pkg: ... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/52] Fetching libimagequant-4.3.0_2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/52] Fetching libX11-1.8.7_1,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/52] Fetching giflib-5.2.1_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/52] Fetching libXrender-0.9.10_2.pkg: ...... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/52] Fetching xorgproto-2023.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/52] Fetching py39-brotli-1.1.0.pkg: .. done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/52] Fetching libXft-2.3.7_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/52] Fetching webp-1.3.2_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/52] Fetching py39-pyparsing-3.1.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/52] Fetching graphite2-1.3.14.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/52] Fetching harfbuzz-8.4.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/52] Fetching py39-fonttools-4.51.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/52] Fetching py39-tornado-6.3.3.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/52] Fetching py39-contourpy-1.2.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/52] Fetching py39-unicodedata2-15.1.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/52] Fetching libgcrypt-1.10.3_1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/52] Fetching tk86-8.6.14_2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/52] Fetching libgpg-error-1.48.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/52] Fetching brotli-1.1.0,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/52] Fetching libXext-1.3.6,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/52] Fetching py39-tkinter-3.9.18_7.pkg: ..... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/52] Fetching libXau-1.0.9_1.pkg: ... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/52] Fetching py39-appdirs-1.4.4.pkg: ... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/52] Fetching fontconfig-2.15.0_2,1.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/52] Fetching py39-zopfli-0.2.3.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/52] Fetching py39-certifi-2024.2.2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/52] Fetching jbigkit-2.1_2.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/52] Fetching py39-importlib-resources-6.4.0.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/52] Fetching libXdmcp-1.1.5.pkg: ... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/52] Fetching tiff-4.4.0_3.pkg: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/52] Fetching tcl86-8.6.14_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/52] Installing xorgproto-2023.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/52] Extracting xorgproto-2023.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/52] Installing libXau-1.0.9_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/52] Extracting libXau-1.0.9_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/52] Installing libXdmcp-1.1.5...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/52] Extracting libXdmcp-1.1.5: ......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/52] Installing png-1.6.43...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/52] Extracting png-1.6.43: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/52] Installing libxcb-1.16.1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/52] Extracting libxcb-1.16.1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/52] Installing brotli-1.1.0,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/52] Extracting brotli-1.1.0,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/52] Installing freetype2-2.13.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/52] Extracting freetype2-2.13.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/52] Installing libX11-1.8.7_1,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/52] Extracting libX11-1.8.7_1,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/52] Installing jpeg-turbo-3.0.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/52] Extracting jpeg-turbo-3.0.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/52] Installing libdeflate-1.20...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/52] Extracting libdeflate-1.20: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/52] Installing libXrender-0.9.10_2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/52] Extracting libXrender-0.9.10_2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/52] Installing libgpg-error-1.48...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/52] Extracting libgpg-error-1.48: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/52] Installing libXext-1.3.6,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/52] Extracting libXext-1.3.6,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/52] Installing fontconfig-2.15.0_2,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/52] Extracting fontconfig-2.15.0_2,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/52] Installing jbigkit-2.1_2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/52] Extracting jbigkit-2.1_2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/52] Installing libXScrnSaver-1.2.4_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/52] Extracting libXScrnSaver-1.2.4_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/52] Installing libXft-2.3.7_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/52] Extracting libXft-2.3.7_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/52] Installing graphite2-1.3.14...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/52] Extracting graphite2-1.3.14: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/52] Installing libgcrypt-1.10.3_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/52] Extracting libgcrypt-1.10.3_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/52] Installing tiff-4.4.0_3...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/52] Extracting tiff-4.4.0_3: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/52] Installing tcl86-8.6.14_2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/52] Extracting tcl86-8.6.14_2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/52] Installing libxslt-1.1.37_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/52] Extracting libxslt-1.1.37_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/52] Installing lcms2-2.16_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/52] Extracting lcms2-2.16_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/52] Installing fribidi-1.0.13_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/52] Extracting fribidi-1.0.13_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/52] Installing giflib-5.2.1_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/52] Extracting giflib-5.2.1_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/52] Installing harfbuzz-8.4.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/52] Extracting harfbuzz-8.4.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/52] Installing tk86-8.6.14_2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/52] Extracting tk86-8.6.14_2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/52] Installing py39-appdirs-1.4.4...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/52] Extracting py39-appdirs-1.4.4: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/52] Installing libraqm-0.10.1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/52] Extracting libraqm-0.10.1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/52] Installing py39-zipp-3.18.1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/52] Extracting py39-zipp-3.18.1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/52] Installing py39-lxml-4.9.3...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/52] Extracting py39-lxml-4.9.3: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/52] Installing py39-olefile-0.46...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/52] Extracting py39-olefile-0.46: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/52] Installing openjpeg-2.5.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/52] Extracting openjpeg-2.5.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/52] Installing py39-fs2-2.4.16...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/52] Extracting py39-fs2-2.4.16: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/52] Installing libimagequant-4.3.0_2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/52] Extracting libimagequant-4.3.0_2: ......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/52] Installing py39-brotli-1.1.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/52] Extracting py39-brotli-1.1.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/52] Installing webp-1.3.2_1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/52] Extracting webp-1.3.2_1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/52] Installing py39-unicodedata2-15.1.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/52] Extracting py39-unicodedata2-15.1.0: ......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/52] Installing py39-tkinter-3.9.18_7...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/52] Extracting py39-tkinter-3.9.18_7: ........ done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/52] Installing py39-zopfli-0.2.3...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/52] Extracting py39-zopfli-0.2.3: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/52] Installing qhull-8.0.2_3,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/52] Extracting qhull-8.0.2_3,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/52] Installing py39-kiwisolver-1.4.5,1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/52] Extracting py39-kiwisolver-1.4.5,1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/52] Installing py39-pillow-10.3.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/52] Extracting py39-pillow-10.3.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/52] Installing py39-pluggy-1.4.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/52] Extracting py39-pluggy-1.4.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/52] Installing py39-cycler-0.12.1...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/52] Extracting py39-cycler-0.12.1: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/52] Installing py39-pyparsing-3.1.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/52] Extracting py39-pyparsing-3.1.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/52] Installing py39-fonttools-4.51.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/52] Extracting py39-fonttools-4.51.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/52] Installing py39-tornado-6.3.3...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [48/52] Extracting py39-tornado-6.3.3: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/52] Installing py39-contourpy-1.2.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [49/52] Extracting py39-contourpy-1.2.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/52] Installing py39-certifi-2024.2.2...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [50/52] Extracting py39-certifi-2024.2.2: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/52] Installing py39-importlib-resources-6.4.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [51/52] Extracting py39-importlib-resources-6.4.0: .......... done
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/52] Installing py39-matplotlib-3.8.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [52/52] Extracting py39-matplotlib-3.8.0: .......... done
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
Message from freetype2-2.13.2:

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

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

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

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

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

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

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

The controllable properties are listed in the section "Controlling FreeType
Modules" in the reference's table of contents
(/usr/local/share/doc/freetype2/reference/index.html, if documentation was installed).
Step 29: Install package libxslt
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 30: Install package rust
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:
	rust: 1.77.0

Number of packages to be installed: 1

The process will require 1 GiB more space.
146 MiB to be downloaded.
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching rust-1.77.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Installing rust-1.77.0...
[dmarc-report-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting rust-1.77.0: .......... done
Step 31: Clean package installation
The following package files will be deleted:
	/var/cache/pkg/openssl-3.0.13_2,1.pkg
	/var/cache/pkg/openssl-3.0.13_2,1~9d9aca70ca.pkg
The cleanup will free 6 MiB
Deleting files: .. done
Step 32: Clean cook artifacts
Step 33: Install pot local
Step 34: Set file ownership on cook scripts
Step 35: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 36: Create rc.d script to start cook
creating rc.d script to start cook
Step 37: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 38: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot dmarc-report-amd64-14_0
=====>  Remove p4662588351662d epair network interfaces
=====>  unmount /mnt/srv/pot/jails/dmarc-report-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/dmarc-report-amd64-14_0/m/dev
===>  exporting dmarc-report-amd64-14_0 @ 1713735908 to /tmp/dmarc-report-amd64-14_0_0.11.2.xz

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