Smokeping

Overview

This is a development flavour containing the smokeping network latency monitoring tool.

By default it will monitor predefined hosts, but you can copy in a replacement smokeping config file with your own hosts configured under “targets”.

Installation

  • Create a ZFS dataset on the parent system beforehand zfs create -o mountpoint=/mnt/smokepingdata zroot/smokepingdata
  • Create your local jail from the image or the flavour files.
  • Clone the local jail
  • Mount in the ZFS dataset you created pot mount-in -p <jailname> -m /mnt -d /mnt/smokepingdata
  • Optionally copy in a custom smokeping config file. Make sure the destination file is /root/config.in
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
    -E ALERTEMAIL=<address to send alerts to> \
    -E EMAIL=<from email> \
    -E HOSTNAME=<hostname of this system> \
    -E IP=<IP address of this system> \
    -E MAILHOST=<ip of mail host> \
    -E NODENAME=<nodename> \
    [ -E ALTNETWORK=<any value is true> ]
    

You must pass in the following parameters, even if copying in a custom config file. The image expects a value set for IP and NODENAME, and dummy data can be set for the others if using custom config file.

ALERTEMAIL is the email address to send alerts to. If passing as cook flag use -a email@addy.com.

EMAIL is the owner address, and from address, for email notices. If passing as cook flag use -e email2@addy.com.

HOSTNAME is the FQDN which will be used to access such as latency.yourhost.com. If passing as cook flag use -h latency.yourhost.com.

IP is this node’s IP address. If passing as cook flag use -i 1.2.3.4.

MAILHOST is the hostname or IP address of a mail server which will accept unauthenticated mail from this system. If passing as cook flag use -m smtp.yourhost.com.

NODENAME is the name of this node. If passing as cook flag use -n smokeping.

The optional parameter ALTNETWORK is a gateway IP address. Do not use this if you don’t know what it’s for. If passing as cook flag use something like -z 172.17.0.1.

Custom Targets

You can create a custom smokeping config file in the following format

*** General ***

owner    = Peter Random
contact  = some@address.nowhere
mailhost = my.mail.host
sendmail = /usr/sbin/sendmail
# NOTE: do not put the Image Cache below cgi-bin
# since all files under cgi-bin will be executed ... this is not
# good for images.
imgcache = /mnt/smokeping/imagecache
imgurl   = cache
datadir  = /mnt/smokeping/data
piddir  = /mnt/smokeping/run
cgiurl   = http://some.url/smokeping.cgi
smokemail = /usr/local/etc/smokeping/smokemail.sample
tmail = /usr/local/etc/smokeping/tmail.sample
# specify this to get syslog logging
syslogfacility = local0
# each probe is now run in its own process
# disable this to revert to the old behaviour
# concurrentprobes = no

*** Alerts ***
to = alertee@address.somewhere
from = smokealert@company.xy

+someloss
type = loss
# in percent
pattern = >0%,*12*,>0%,*12*,>0%
comment = loss 3 times  in a row

*** Database ***

step     = 300
pings    = 20

# consfn mrhb steps total

AVERAGE  0.5   1  28800
AVERAGE  0.5  12   9600
    MIN  0.5  12   9600
    MAX  0.5  12   9600
AVERAGE  0.5 144   2400
    MAX  0.5 144   2400
    MIN  0.5 144   2400

*** Presentation ***

template = /usr/local/etc/smokeping/basepage.html.sample
htmltitle = yes
graphborders = no

+ charts

menu = Charts
title = The most interesting destinations

++ stddev
sorter = StdDev(entries=>4)
title = Top Standard Deviation
menu = Std Deviation
format = Standard Deviation %f

++ max
sorter = Max(entries=>5)
title = Top Max Roundtrip Time
menu = by Max
format = Max Roundtrip Time %f seconds

++ loss
sorter = Loss(entries=>5)
title = Top Packet Loss
menu = Loss
format = Packets Lost %f

++ median
sorter = Median(entries=>5)
title = Top Median Roundtrip Time
menu = by Median
format = Median RTT %f seconds

+ overview 

width = 600
height = 50
range = 10h

+ detail

width = 600
height = 200
unison_tolerance = 2

"Last 3 Hours"    3h
"Last 30 Hours"   30h
"Last 10 Days"    10d
"Last 360 Days"   360d

*** Probes ***

+ FPing

binary = /usr/local/sbin/fping

*** Targets ***

probe = FPing

menu = Top
title = Network Latency Grapher
remark = Welcome to the SmokePing. \
         Here you will learn all about the latency of our network.

+TopLevel
menu = Top Level
title = top level categories

++News
menu = News
title = New hosts

+++BBC
menu = BBC
title = BBC
host = bbc.com

++ CNBC
menu = CNBC
title = CNBC
host = cnbc.com

+++CNN
menu = CNN
title = CNN
host = cnn.com

++Search
menu = Search
title = Search sites

+++Bing
menu = Bing
title = Bing Search
host = bing.com

+++Google
menu = Google
title = Google Search
host = google.com

+++ Youtube
menu = Youtube
title = Youtube
host = youtube.com

When copying in a custom config file to the pot image, make sure the destination is /root/config.in. This is what the image is expecting.

Usage

To access spokeping:

  • http:///smokeping

Persistent Storage

Persistent storage will be in the ZFS dataset zroot/smokepingdata, available inside the image at /mnt

If you stop the image, the data will still exist, and a new image can be started up and still use it.

If you need to change the directory parameters for the ZFS dataset, adjust the mount-in command accordingly for the source directory as mounted by the parent OS.

Do not adjust the image destination mount point at /mnt because smokeping is configured to use this directory for data.

Getting Started

How To Use The Ready-Made Image

FreeBSD 14.0:
pot import -p smokeping-amd64-14_0 -t 0.9.1 -U https://potluck.honeyguide.net/smokeping

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

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 smokeping-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/smokeping 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.9

  • Version bump for new base image
  • FBSD14 base image

0.8

  • Version bump for ZFS changes

0.7

  • Rebuild for security updates

0.6

  • Rebuild for new versions

0.5

  • Version bump for new quarterlies
  • Add parameter to enable alternate networking
  • Fix smokeping config file issues, create directories second time
  • Fix fping location in smokeping config file
  • Workaround for pid location, update README to match updated smokeping config file

0.4

  • Version bump for new kernel
  • This is a non-layered image

0.3

  • Version bump for new base image
  • Signified

0.2

  • Version bump for new quarterlies

0.1

  • First bash at smokeping with nginx
  • Version bump for rebuild

0.0.0

  • Initiate file

These images were built on Sun Mar 3 20:27:04 UTC 2024

Manual Image Download Links

smokeping-amd64-14_0_0.9.1.xz ( )
smokeping-amd64-14_0_0.9.1.xz.skein ( ) smokeping-amd64-14_0_0.9.1.xz.skein.sig ( ) smokeping-amd64-14_0_0.9.1.xz.meta ( )

Jenkins Pot Creation Logs

smokeping-amd64-14_0_0.9.1:


smokeping/smokeping:
copy-in -s /usr/local/etc/pot/flavours/smokeping.d/local -d /root/.pot_local
smokeping/smokeping.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

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 nginx"
pkg install -y nginx

step "Install package fcgiwrap"
pkg install -y fcgiwrap

step "Install package spawn-fcgi"
pkg install -y spawn-fcgi

step "Install package smokeping"
pkg install -y smokeping

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

smokeping/smokeping+1:
smokeping/smokeping+1.sh:

smokeping/smokeping+2:
smokeping/smokeping+2.sh:

smokeping/smokeping+3:
smokeping/smokeping+3.sh:

smokeping/smokeping+4:
smokeping/smokeping+4.sh:
===>  Creating a new pot
===>  pot name     : smokeping-amd64-14_0
===>  type         : single
===>  base         : 14.0
===>  pot_base     : 
===>  level        : 0
===>  network-type : public-bridge
===>  network-stack: ipv4
===>  ip           : 10.192.0.3
===>  bridge       : 
===>  dns          : inherit
===>  flavours     : fbsd-update smokeping
===>  Fetching FreeBSD 14.0
===>  Extract the tarball
=====>  Flavour: fbsd-update
=====>  Starting smokeping-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/smokeping-amd64-14_0/m/tmp
defaultrouter: NO -> 10.192.0.1
===>  Starting the pot smokeping-amd64-14_0
=====>  Pot smokeping-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=smokeping-amd64-14_0 host.hostname=smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE path=/mnt/srv/pot/jails/smokeping-amd64-14_0/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
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:13:a2:d9:37: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
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Clearing /tmp (X related).
Starting syslogd.
Starting cron.

Sun Mar  3 20:15:20 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/smokeping-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on smokeping-amd64-14_0
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching public key from update2.freebsd.org... done.
Fetching metadata signature for 14.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 126 patches.....10....20....30....40....50....60....70....80....90....100....110....120... done.
Applying patches... done.
The following files will be updated as part of updating to
14.0-RELEASE-p5:
/bin/df
/bin/freebsd-version
/bin/mv
/etc/defaults/rc.conf
/etc/periodic/daily/480.leapfile-ntpd
/lib/libbe.so.1
/lib/libc.so.7
/lib/libspl.so.2
/lib/libufs.so.7
/lib/libutil.so.9
/lib/libzfs.so.4
/lib/libzpool.so.2
/libexec/ld-elf.so.1
/libexec/ld-elf32.so.1
/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/fetch
/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/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/bectl
/sbin/dump
/sbin/fdisk
/sbin/fsck
/sbin/fsck_4.2bsd
/sbin/fsck_ffs
/sbin/fsck_ufs
/sbin/growfs
/sbin/init
/sbin/mdmfs
/sbin/mksnap_ffs
/sbin/mount
/sbin/mount_cd9660
/sbin/mount_fusefs
/sbin/mount_mfs
/sbin/mount_msdosfs
/sbin/mount_nfs
/sbin/mount_nullfs
/sbin/mount_udf
/sbin/mount_unionfs
/sbin/newfs_msdos
/sbin/nfsiod
/sbin/rdump
/sbin/savecore
/sbin/tunefs
/sbin/umount
/sbin/zfs
/usr/bin/c++
/usr/bin/c++filt
/usr/bin/cc
/usr/bin/clang
/usr/bin/clang++
/usr/bin/clang-cpp
/usr/bin/cpp
/usr/bin/find
/usr/bin/gcov
/usr/bin/kyua
/usr/bin/ld.lld
/usr/bin/lldb
/usr/bin/lldb-server
/usr/bin/llvm-addr2line
/usr/bin/llvm-ar
/usr/bin/llvm-cov
/usr/bin/llvm-cxxfilt
/usr/bin/llvm-nm
/usr/bin/llvm-objcopy
/usr/bin/llvm-objdump
/usr/bin/llvm-profdata
/usr/bin/llvm-ranlib
/usr/bin/llvm-readelf
/usr/bin/llvm-readobj
/usr/bin/llvm-size
/usr/bin/llvm-strings
/usr/bin/llvm-strip
/usr/bin/llvm-symbolizer
/usr/bin/lsvfs
/usr/bin/mkuzip
/usr/bin/nfsstat
/usr/bin/objdump
/usr/bin/quota
/usr/bin/readlink
/usr/bin/slogin
/usr/bin/ssh
/usr/bin/ssh-keyscan
/usr/bin/stat
/usr/bin/tail
/usr/include/fs/nfs/nfs_var.h
/usr/include/netinet/in_pcb.h
/usr/include/sys/mount.h
/usr/lib/clang/16/lib/freebsd/libclang_rt.asan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.asan-x86_64.so
/usr/lib/clang/16/lib/freebsd/libclang_rt.cfi-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.cfi_diag-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.dd-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.msan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.stats-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.tsan-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
/usr/lib/clang/16/lib/freebsd/libclang_rt.xray-x86_64.a
/usr/lib/lib9p.a
/usr/lib/lib9p.so.1
/usr/lib/libbe.a
/usr/lib/libc.a
/usr/lib/libc_pic.a
/usr/lib/libefivar.a
/usr/lib/libefivar.so.1
/usr/lib/libprivateauditd.a
/usr/lib/libprivateauditd.so.5
/usr/lib/libprivatessh.a
/usr/lib/libprivatessh.so.5
/usr/lib/libspl.a
/usr/lib/libufs.a
/usr/lib/libugidfw.a
/usr/lib/libugidfw.so.5
/usr/lib/libutil.a
/usr/lib/libzfs.a
/usr/lib/libzpool.a
/usr/lib/snmp_hostres.so.6
/usr/libexec/sendmail/sendmail
/usr/libexec/ssh-keysign
/usr/sbin/automount
/usr/sbin/automountd
/usr/sbin/autounmountd
/usr/sbin/bhyveload
/usr/sbin/extattrctl
/usr/sbin/hv_vss_daemon
/usr/sbin/jail
/usr/sbin/lpd
/usr/sbin/mount_smbfs
/usr/sbin/mountd
/usr/sbin/pnfsdscopymr
/usr/sbin/quot
/usr/sbin/rpc.lockd
/usr/sbin/rpc.umntall
/usr/sbin/snapinfo
/usr/sbin/sshd
/usr/sbin/zdb
/usr/share/zoneinfo/America/Godthab
/usr/share/zoneinfo/America/Miquelon
/usr/share/zoneinfo/America/Montreal
/usr/share/zoneinfo/America/Nassau
/usr/share/zoneinfo/America/Nipigon
/usr/share/zoneinfo/America/Nuuk
/usr/share/zoneinfo/America/Scoresbysund
/usr/share/zoneinfo/America/Thunder_Bay
/usr/share/zoneinfo/America/Toronto
/usr/share/zoneinfo/Antarctica/Casey
/usr/share/zoneinfo/Antarctica/Vostok
/usr/share/zoneinfo/Asia/Almaty
/usr/share/zoneinfo/Asia/Gaza
/usr/share/zoneinfo/Asia/Hebron
/usr/share/zoneinfo/Asia/Ho_Chi_Minh
/usr/share/zoneinfo/Asia/Qostanay
/usr/share/zoneinfo/Asia/Saigon
/usr/share/zoneinfo/Canada/Eastern
/usr/share/zoneinfo/zone.tab
/usr/share/zoneinfo/zone1970.tab
/var/db/etcupdate/current/etc/defaults/rc.conf
/var/db/etcupdate/current/etc/periodic/daily/480.leapfile-ntpd
/var/db/mergemaster.mtree
Installing updates...Scanning /usr/share/certs/untrusted for certificates...
Scanning /usr/share/certs/trusted for certificates...
 done.
=====>  Stop the pot smokeping-amd64-14_0
=====>  Remove p465e4da571287f epair network interfaces
=====>  unmount /mnt/srv/pot/jails/smokeping-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/smokeping-amd64-14_0/m/dev
=====>  Flavour: smokeping
=====>  Executing smokeping pot commands on smokeping-amd64-14_0
=====>  mount /mnt/srv/pot/jails/smokeping-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/smokeping.d/local copied in the pot smokeping-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/smokeping-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/smokeping-amd64-14_0/m/dev is already unmounted
=====>  Starting smokeping-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/smokeping-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot smokeping-amd64-14_0
=====>  Pot smokeping-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=smokeping-amd64-14_0 host.hostname=smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p5 path=/mnt/srv/pot/jails/smokeping-amd64-14_0/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat
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:96:2c:06:11: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
Creating and/or trimming log files.
Updating motd:.
Updating /var/run/os-release done.
Clearing /tmp (X related).
Starting syslogd.
Starting cron.

Sun Mar  3 20:17:50 UTC 2024
/usr/local/etc/pot/flavours/smokeping.sh -> /mnt/srv/pot/jails/smokeping-amd64-14_0/m/tmp/smokeping.sh
=====>  Executing smokeping script on smokeping-amd64-14_0
Creating /var/log/cook.log
Step 1: Bootstrap package repo
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Installing pkg-1.20.9...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Extracting pkg-1.20.9: .......... done
Bootstrapping pkg from pkg+http://pkg.FreeBSD.org/FreeBSD:14: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_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Install package openssl
Updating FreeBSD repository catalogue...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Fetching meta.conf: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 33709 packages processed.
All repositories are up to date.
Updating database digests format: . done
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	openssl: 3.0.13,1

Number of packages to be installed: 1

The process will require 22 MiB more space.
6 MiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching openssl-3.0.13,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing openssl-3.0.13,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting openssl-3.0.13,1: .......... done
Step 7: Install package sudo
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:
	gettext-runtime: 0.22.3
	indexinfo: 0.3.1
	sudo: 1.9.15p5

Number of packages to be installed: 3

The process will require 9 MiB more space.
2 MiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Fetching indexinfo-0.3.1.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Fetching sudo-1.9.15p5.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Fetching gettext-runtime-0.22.3.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Installing indexinfo-0.3.1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/3] Extracting indexinfo-0.3.1: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Installing gettext-runtime-0.22.3...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/3] Extracting gettext-runtime-0.22.3: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Installing sudo-1.9.15p5...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/3] Extracting sudo-1.9.15p5: .......... done
Step 8: Install package ca_root_nss
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:
	ca_root_nss: 3.93_2

Number of packages to be installed: 1

281 KiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching ca_root_nss-3.93_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing ca_root_nss-3.93_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting ca_root_nss-3.93_2: ....... done
Scanning /usr/share/certs/untrusted for certificates...
Scanning /usr/share/certs/trusted for certificates...
Scanning /usr/local/share/certs for certificates...
=====
Message from ca_root_nss-3.93_2:

--
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 certificate discovery
for software that either uses other cryptographic libraries than
OpenSSL, or use OpenSSL but do not follow recommended practice.

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 9: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 6 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	curl: 8.6.0
	libidn2: 2.3.4
	libnghttp2: 1.58.0
	libpsl: 0.21.2_4
	libssh2: 1.11.0,3
	libunistring: 1.1

Number of packages to be installed: 6

The process will require 10 MiB more space.
3 MiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/6] Fetching libnghttp2-1.58.0.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/6] Fetching libidn2-2.3.4.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/6] Fetching libunistring-1.1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/6] Fetching libssh2-1.11.0,3.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/6] Fetching libpsl-0.21.2_4.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/6] Fetching curl-8.6.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/6] Installing libunistring-1.1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/6] Extracting libunistring-1.1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/6] Installing libidn2-2.3.4...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/6] Extracting libidn2-2.3.4: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/6] Installing libnghttp2-1.58.0...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/6] Extracting libnghttp2-1.58.0: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/6] Installing libssh2-1.11.0,3...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/6] Extracting libssh2-1.11.0,3: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/6] Installing libpsl-0.21.2_4...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/6] Extracting libpsl-0.21.2_4: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/6] Installing curl-8.6.0...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/6] Extracting curl-8.6.0: .......... done
Step 10: 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.7_2
	oniguruma: 6.9.9

Number of packages to be installed: 2

The process will require 3 MiB more space.
605 KiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching jq-1.7_2.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching oniguruma-6.9.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing oniguruma-6.9.9...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting oniguruma-6.9.9: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing jq-1.7_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting jq-1.7_2: .......... done
Step 11: 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.6

Number of packages to be installed: 1

21 KiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jo-1.6.pkg: .... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jo-1.6...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jo-1.6: ....... done
Step 12: Install package nano
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:
	nano: 7.2

Number of packages to be installed: 1

The process will require 3 MiB more space.
659 KiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching nano-7.2.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing nano-7.2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting nano-7.2: .......... done
Step 13: Install package bash
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:
	bash: 5.2.21
	readline: 8.2.7

Number of packages to be installed: 2

The process will require 11 MiB more space.
2 MiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching readline-8.2.7.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching bash-5.2.21.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing readline-8.2.7...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting readline-8.2.7: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing bash-5.2.21...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting bash-5.2.21: .......... done
Step 14: Install package rsync
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:
	libiconv: 1.17
	liblz4: 1.9.4,1
	rsync: 3.2.7
	xxhash: 0.8.2
	zstd: 1.5.5

Number of packages to be installed: 5

The process will require 8 MiB more space.
2 MiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/5] Fetching rsync-3.2.7.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/5] Fetching liblz4-1.9.4,1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/5] Fetching zstd-1.5.5.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/5] Fetching xxhash-0.8.2.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/5] Fetching libiconv-1.17.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/5] Installing liblz4-1.9.4,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/5] Extracting liblz4-1.9.4,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/5] Installing zstd-1.5.5...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/5] Extracting zstd-1.5.5: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/5] Installing xxhash-0.8.2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/5] Extracting xxhash-0.8.2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/5] Installing libiconv-1.17...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/5] Extracting libiconv-1.17: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/5] Installing rsync-3.2.7...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/5] Extracting rsync-3.2.7: .......... done
=====
Message from rsync-3.2.7:

--
Some scripts provided by rsync, such as rrsync,
require Python, which is not installed by default.
Step 15: Install package nginx
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:
	nginx: 1.24.0_14,3
	pcre2: 10.42

Number of packages to be installed: 2

The process will require 8 MiB more space.
2 MiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching nginx-1.24.0_14,3.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching pcre2-10.42.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing pcre2-10.42...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting pcre2-10.42: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing nginx-1.24.0_14,3...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting nginx-1.24.0_14,3: .......... done
=====
Message from nginx-1.24.0_14,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 16: Install package fcgiwrap
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:
	fcgi-devkit: 2.4.0_5
	fcgiwrap: 1.1.0_11

Number of packages to be installed: 2

187 KiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching fcgiwrap-1.1.0_11.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching fcgi-devkit-2.4.0_5.pkg: .......... done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing fcgi-devkit-2.4.0_5...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting fcgi-devkit-2.4.0_5: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing fcgiwrap-1.1.0_11...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting fcgiwrap-1.1.0_11: ...... done
Step 17: Install package spawn-fcgi
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:
	spawn-fcgi: 1.6.4_2

Number of packages to be installed: 1

10 KiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching spawn-fcgi-1.6.4_2.pkg: .. done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing spawn-fcgi-1.6.4_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting spawn-fcgi-1.6.4_2: ... done
Step 18: Install package smokeping
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 169 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	brotli: 1.1.0,1
	cairo: 1.17.4_2,3
	dejavu: 2.37_3
	encodings: 1.0.5,1
	expat: 2.5.0
	font-bh-ttf: 1.0.3_5
	font-misc-ethiopic: 1.0.4
	font-misc-meltho: 1.0.3_5
	fontconfig: 2.14.2,1
	fping: 5.0_2
	freetype2: 2.13.2
	fribidi: 1.0.13
	glib: 2.78.3,2
	graphite2: 1.3.14
	harfbuzz: 8.3.0
	libX11: 1.8.7,1
	libXau: 1.0.9
	libXdmcp: 1.1.3
	libXext: 1.3.4,1
	libXft: 2.3.7
	libXrender: 0.9.10_2
	libdatrie: 0.2.13_1
	libffi: 3.4.4
	libfontenc: 1.1.7
	libglvnd: 1.7.0
	libthai: 0.1.29
	libxcb: 1.15_1
	libxml2: 2.10.4_2
	mkfontscale: 1.2.1
	mpdecimal: 2.5.1
	p5-Algorithm-C3: 0.11
	p5-Archive-Extract: 0.88
	p5-Authen-NTLM: 1.09_1
	p5-Authen-SASL: 2.17
	p5-B-Hooks-OP-Check: 0.22
	p5-CGI: 4.60
	p5-CGI-Fast: 2.17
	p5-CGI-Session: 4.48_1
	p5-CPAN-DistnameInfo: 0.12_1
	p5-Class-Accessor-Lite: 0.08
	p5-Class-C3: 0.35
	p5-Class-Method-Modifiers: 2.15
	p5-Class-XSAccessor: 1.19_2,1
	p5-Clone: 0.46
	p5-Clone-Choose: 0.010
	p5-Config-Any: 0.33
	p5-Config-General: 2.65
	p5-Config-Grammar: 1.10_1
	p5-Config-Tiny: 2.30
	p5-Convert-ASN1: 0.34
	p5-Cpanel-JSON-XS: 4.37
	p5-Crypt-DES: 2.07_2
	p5-Data-OptList: 0.114
	p5-Data-Record: 0.02_2
	p5-Devel-Hide: 0.0015
	p5-Devel-StackTrace: 2.04
	p5-Digest-HMAC: 1.04
	p5-Digest-SHA1: 2.13_2
	p5-Encode-Locale: 1.05
	p5-Exporter-Tiny: 1.006002
	p5-FCGI: 0.82
	p5-File-ConfigDir: 0.021
	p5-File-Find-Rule: 0.34
	p5-File-HomeDir: 1.006
	p5-File-Listing: 6.16
	p5-File-Which: 1.27
	p5-GSSAPI: 0.28_2
	p5-Getopt-Long: 2.57
	p5-Getopt-Long-Descriptive: 0.113
	p5-HTML-Parser: 3.81
	p5-HTML-Tagset: 3.20_1
	p5-HTTP-CookieJar: 0.014
	p5-HTTP-Cookies: 6.11
	p5-HTTP-Date: 6.06
	p5-HTTP-Message: 6.45
	p5-HTTP-Negotiate: 6.01_1
	p5-Hash-Merge: 0.302
	p5-IO-File-AtomicChange: 0.08
	p5-IO-HTML: 1.004
	p5-IO-Pty-Easy: 0.10
	p5-IO-Socket-IP: 0.42
	p5-IO-Socket-SSL: 2.084
	p5-IO-Tty: 1.18
	p5-JSON: 4.10
	p5-JSON-MaybeXS: 1.004005
	p5-LWP-MediaTypes: 6.04
	p5-LWP-Protocol-https: 6.11
	p5-List-Compare: 0.53
	p5-List-MoreUtils: 0.430
	p5-List-MoreUtils-XS: 0.430
	p5-MIME-Charset: 1.012.2
	p5-MRO-Compat: 0.15
	p5-MetaCPAN-Client: 2.031000
	p5-Module-Implementation: 0.09_1
	p5-Module-Pluggable: 5.2
	p5-Module-Runtime: 0.016
	p5-Moo: 2.005005
	p5-MooX-ConfigFromFile: 0.009
	p5-MooX-File-ConfigDir: 0.008
	p5-MooX-Locale-Passthrough: 0.001
	p5-MooX-Options: 4.103
	p5-Mozilla-CA: 20231213
	p5-Net-DNS: 1.42,1
	p5-Net-HTTP: 6.23
	p5-Net-OpenSSH: 0.84
	p5-Net-SNMP: 6.0.1_1
	p5-Net-SSLeay: 1.92
	p5-Net-Telnet: 3.05
	p5-Number-Compare: 0.03_1
	p5-OrePAN2: 0.49_1
	p5-Params-Util: 1.102
	p5-Params-Validate: 1.31
	p5-Parse-CPAN-Packages-Fast: 0.09
	p5-Parse-LocalDistribution: 0.19
	p5-Parse-PMFile: 0.44
	p5-Path-Class: 0.37
	p5-Path-Tiny: 0.144
	p5-Ref-Util: 0.204
	p5-Ref-Util-XS: 0.117
	p5-Regexp-Common: 2017060201
	p5-Role-Tiny: 2.002004
	p5-SNMP_Session: 1.13_4
	p5-Safe-Isa: 1.000010
	p5-Socket6: 0.29
	p5-Sub-Exporter: 0.991
	p5-Sub-Install: 0.929
	p5-Sub-Quote: 2.006008_1
	p5-Term-Size-Any: 0.002_1
	p5-Term-Size-Perl: 0.031
	p5-Text-Glob: 0.11
	p5-Text-Soundex: 3.05
	p5-TimeDate: 2.33,1
	p5-Try-Tiny: 0.31
	p5-Type-Tiny: 2.004000
	p5-Type-Tiny-XS: 0.025
	p5-Types-Path-Tiny: 0.006
	p5-Types-URI: 0.007
	p5-Types-UUID: 0.004
	p5-URI: 5.21
	p5-URI-FromHash: 0.05
	p5-UUID-Tiny: 1.04_1
	p5-Unicode-LineBreak: 2019.001
	p5-WWW-RobotRules: 6.02_1
	p5-XML-Filter-BufferText: 1.01_1
	p5-XML-NamespaceSupport: 1.12
	p5-XML-Parser: 2.46
	p5-XML-SAX: 1.02
	p5-XML-SAX-Base: 1.09
	p5-XML-SAX-Expat: 0.51_1
	p5-XML-SAX-Writer: 0.57
	p5-XML-Simple: 2.25
	p5-XString: 0.005
	p5-YAML-LibYAML: 0.88
	p5-bareword-filehandles: 0.007
	p5-indirect: 0.39
	p5-libwww: 6.70
	p5-local-lib: 2.000029
	p5-multidimensional: 0.014
	p5-perl-ldap: 0.6800
	p5-strictures: 2.000006,1
	pango: 1.50.14
	perl5: 5.36.3_1
	pixman: 0.42.2
	png: 1.6.40
	python39: 3.9.18
	rrdtool: 1.8.0_3
	smokeping: 2.8.2_4
	xorg-fonts-truetype: 7.7_1
	xorgproto: 2023.2

Number of packages to be installed: 169

The process will require 312 MiB more space.
61 MiB to be downloaded.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/169] Fetching p5-Moo-2.005005.pkg: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/169] Fetching p5-Sub-Quote-2.006008_1.pkg: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/169] Fetching mpdecimal-2.5.1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/169] Fetching freetype2-2.13.2.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/169] Fetching p5-Config-Any-0.33.pkg: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/169] Fetching p5-IO-Socket-IP-0.42.pkg: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/169] Fetching p5-URI-5.21.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/169] Fetching p5-WWW-RobotRules-6.02_1.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/169] Fetching libglvnd-1.7.0.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/169] Fetching p5-Type-Tiny-2.004000.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/169] Fetching p5-CGI-4.60.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/169] Fetching p5-Authen-NTLM-1.09_1.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/169] Fetching p5-OrePAN2-0.49_1.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/169] Fetching p5-Class-Method-Modifiers-2.15.pkg: ..... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/169] Fetching p5-MIME-Charset-1.012.2.pkg: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/169] Fetching p5-HTTP-Negotiate-6.01_1.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/169] Fetching p5-XML-NamespaceSupport-1.12.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/169] Fetching libthai-0.1.29.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/169] Fetching p5-TimeDate-2.33,1.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/169] Fetching p5-Unicode-LineBreak-2019.001.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/169] Fetching p5-Type-Tiny-XS-0.025.pkg: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/169] Fetching p5-MooX-Locale-Passthrough-0.001.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/169] Fetching p5-Types-UUID-0.004.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/169] Fetching p5-MooX-File-ConfigDir-0.008.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/169] Fetching p5-File-HomeDir-1.006.pkg: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/169] Fetching p5-HTTP-Date-6.06.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/169] Fetching p5-GSSAPI-0.28_2.pkg: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/169] Fetching python39-3.9.18.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/169] Fetching p5-Parse-LocalDistribution-0.19.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/169] Fetching p5-FCGI-0.82.pkg: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/169] Fetching p5-Ref-Util-XS-0.117.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/169] Fetching p5-Config-General-2.65.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/169] Fetching libX11-1.8.7,1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/169] Fetching p5-Sub-Exporter-0.991.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/169] Fetching p5-JSON-MaybeXS-1.004005.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [36/169] Fetching xorgproto-2023.2.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [37/169] Fetching p5-Role-Tiny-2.002004.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [38/169] Fetching p5-HTML-Parser-3.81.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [39/169] Fetching libXft-2.3.7.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [40/169] Fetching p5-LWP-MediaTypes-6.04.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [41/169] Fetching p5-List-MoreUtils-0.430.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [42/169] Fetching p5-bareword-filehandles-0.007.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [43/169] Fetching cairo-1.17.4_2,3.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [44/169] Fetching p5-Types-URI-0.007.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [45/169] Fetching p5-indirect-0.39.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [46/169] Fetching p5-XML-SAX-Writer-0.57.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [47/169] Fetching graphite2-1.3.14.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [48/169] Fetching p5-File-Find-Rule-0.34.pkg: ..... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [49/169] Fetching p5-HTTP-Message-6.45.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [50/169] Fetching p5-Class-C3-0.35.pkg: ..... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [51/169] Fetching p5-Try-Tiny-0.31.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [52/169] Fetching fping-5.0_2.pkg: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [53/169] Fetching p5-Net-HTTP-6.23.pkg: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [54/169] Fetching p5-IO-Socket-SSL-2.084.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [55/169] Fetching p5-IO-Pty-Easy-0.10.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [56/169] Fetching p5-perl-ldap-0.6800.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [57/169] Fetching p5-Path-Class-0.37.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [58/169] Fetching p5-CGI-Fast-2.17.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [59/169] Fetching p5-Params-Util-1.102.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [60/169] Fetching p5-XML-Parser-2.46.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [61/169] Fetching p5-Getopt-Long-2.57.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [62/169] Fetching p5-CGI-Session-4.48_1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [63/169] Fetching p5-Number-Compare-0.03_1.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [64/169] Fetching p5-Types-Path-Tiny-0.006.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [65/169] Fetching p5-B-Hooks-OP-Check-0.22.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [66/169] Fetching brotli-1.1.0,1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [67/169] Fetching p5-Class-Accessor-Lite-0.08.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [68/169] Fetching p5-HTML-Tagset-3.20_1.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [69/169] Fetching p5-Config-Grammar-1.10_1.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [70/169] Fetching p5-XString-0.005.pkg: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [71/169] Fetching p5-Clone-Choose-0.010.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [72/169] Fetching p5-Data-Record-0.02_2.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [73/169] Fetching p5-IO-File-AtomicChange-0.08.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [74/169] Fetching libXau-1.0.9.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [75/169] Fetching p5-Socket6-0.29.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [76/169] Fetching p5-Sub-Install-0.929.pkg: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [77/169] Fetching p5-XML-Filter-BufferText-1.01_1.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [78/169] Fetching p5-Module-Pluggable-5.2.pkg: ..... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [79/169] Fetching fontconfig-2.14.2,1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [80/169] Fetching p5-Net-Telnet-3.05.pkg: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [81/169] Fetching p5-Getopt-Long-Descriptive-0.113.pkg: ..... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [82/169] Fetching p5-MooX-ConfigFromFile-0.009.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [83/169] Fetching p5-UUID-Tiny-1.04_1.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [84/169] Fetching glib-2.78.3,2.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [85/169] Fetching p5-Parse-PMFile-0.44.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [86/169] Fetching p5-JSON-4.10.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [87/169] Fetching perl5-5.36.3_1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [88/169] Fetching p5-Net-OpenSSH-0.84.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [89/169] Fetching font-misc-meltho-1.0.3_5.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [90/169] Fetching libXdmcp-1.1.3.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [91/169] Fetching p5-Devel-StackTrace-2.04.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [92/169] Fetching expat-2.5.0.pkg: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [93/169] Fetching xorg-fonts-truetype-7.7_1.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [94/169] Fetching dejavu-2.37_3.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [95/169] Fetching p5-Devel-Hide-0.0015.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [96/169] Fetching p5-XML-SAX-1.02.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [97/169] Fetching png-1.6.40.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [98/169] Fetching p5-Net-SSLeay-1.92.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [99/169] Fetching libxcb-1.15_1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [100/169] Fetching libdatrie-0.2.13_1.pkg: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [101/169] Fetching p5-libwww-6.70.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [102/169] Fetching p5-Algorithm-C3-0.11.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [103/169] Fetching p5-Module-Runtime-0.016.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [104/169] Fetching p5-Safe-Isa-1.000010.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [105/169] Fetching p5-XML-SAX-Expat-0.51_1.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [106/169] Fetching p5-File-Which-1.27.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [107/169] Fetching p5-Config-Tiny-2.30.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [108/169] Fetching p5-MetaCPAN-Client-2.031000.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [109/169] Fetching p5-Data-OptList-0.114.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [110/169] Fetching p5-URI-FromHash-0.05.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [111/169] Fetching p5-SNMP_Session-1.13_4.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [112/169] Fetching mkfontscale-1.2.1.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [113/169] Fetching fribidi-1.0.13.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [114/169] Fetching p5-MooX-Options-4.103.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [115/169] Fetching p5-Path-Tiny-0.144.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [116/169] Fetching p5-Authen-SASL-2.17.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [117/169] Fetching p5-Term-Size-Any-0.002_1.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [118/169] Fetching libxml2-2.10.4_2.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [119/169] Fetching p5-Ref-Util-0.204.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [120/169] Fetching rrdtool-1.8.0_3.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [121/169] Fetching font-misc-ethiopic-1.0.4.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [122/169] Fetching p5-List-Compare-0.53.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [123/169] Fetching p5-Net-DNS-1.42,1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [124/169] Fetching p5-Convert-ASN1-0.34.pkg: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [125/169] Fetching p5-multidimensional-0.014.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [126/169] Fetching libXrender-0.9.10_2.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [127/169] Fetching p5-Encode-Locale-1.05.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [128/169] Fetching p5-IO-HTML-1.004.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [129/169] Fetching p5-Digest-HMAC-1.04.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [130/169] Fetching encodings-1.0.5,1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [131/169] Fetching p5-Crypt-DES-2.07_2.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [132/169] Fetching harfbuzz-8.3.0.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [133/169] Fetching p5-strictures-2.000006,1.pkg: ..... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [134/169] Fetching p5-XML-SAX-Base-1.09.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [135/169] Fetching p5-Net-SNMP-6.0.1_1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [136/169] Fetching libfontenc-1.1.7.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [137/169] Fetching p5-HTTP-CookieJar-0.014.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [138/169] Fetching p5-Module-Implementation-0.09_1.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [139/169] Fetching p5-HTTP-Cookies-6.11.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [140/169] Fetching p5-LWP-Protocol-https-6.11.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [141/169] Fetching p5-Parse-CPAN-Packages-Fast-0.09.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [142/169] Fetching font-bh-ttf-1.0.3_5.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [143/169] Fetching pango-1.50.14.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [144/169] Fetching p5-Clone-0.46.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [145/169] Fetching p5-List-MoreUtils-XS-0.430.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [146/169] Fetching p5-Hash-Merge-0.302.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [147/169] Fetching libXext-1.3.4,1.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [148/169] Fetching p5-Params-Validate-1.31.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [149/169] Fetching p5-Archive-Extract-0.88.pkg: ..... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [150/169] Fetching p5-Regexp-Common-2017060201.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [151/169] Fetching smokeping-2.8.2_4.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [152/169] Fetching p5-Digest-SHA1-2.13_2.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [153/169] Fetching pixman-0.42.2.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [154/169] Fetching p5-CPAN-DistnameInfo-0.12_1.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [155/169] Fetching p5-File-ConfigDir-0.021.pkg: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [156/169] Fetching p5-File-Listing-6.16.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [157/169] Fetching p5-local-lib-2.000029.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [158/169] Fetching p5-Class-XSAccessor-1.19_2,1.pkg: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [159/169] Fetching p5-Text-Glob-0.11.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [160/169] Fetching p5-Mozilla-CA-20231213.pkg: . done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [161/169] Fetching libffi-3.4.4.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [162/169] Fetching p5-XML-Simple-2.25.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [163/169] Fetching p5-MRO-Compat-0.15.pkg: .. done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [164/169] Fetching p5-YAML-LibYAML-0.88.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [165/169] Fetching p5-Cpanel-JSON-XS-4.37.pkg: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [166/169] Fetching p5-Term-Size-Perl-0.031.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [167/169] Fetching p5-Text-Soundex-3.05.pkg: .... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [168/169] Fetching p5-IO-Tty-1.18.pkg: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [169/169] Fetching p5-Exporter-Tiny-1.006002.pkg: ........ done
Checking integrity... done (0 conflicting)
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/169] Installing xorgproto-2023.2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/169] Extracting xorgproto-2023.2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/169] Installing perl5-5.36.3_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/169] Extracting perl5-5.36.3_1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/169] Installing p5-XML-NamespaceSupport-1.12...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/169] Extracting p5-XML-NamespaceSupport-1.12: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/169] Installing libXau-1.0.9...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/169] Extracting libXau-1.0.9: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/169] Installing libXdmcp-1.1.3...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/169] Extracting libXdmcp-1.1.3: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/169] Installing expat-2.5.0...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/169] Extracting expat-2.5.0: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/169] Installing p5-XML-SAX-Base-1.09...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/169] Extracting p5-XML-SAX-Base-1.09: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/169] Installing p5-Class-Method-Modifiers-2.15...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/169] Extracting p5-Class-Method-Modifiers-2.15: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/169] Installing p5-XML-Parser-2.46...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/169] Extracting p5-XML-Parser-2.46: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/169] Installing brotli-1.1.0,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/169] Extracting brotli-1.1.0,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/169] Installing p5-XString-0.005...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/169] Extracting p5-XString-0.005: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/169] Installing p5-XML-SAX-1.02...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/169] Extracting p5-XML-SAX-1.02: .......... done
could not find ParserDetails.ini in /usr/local/lib/perl5/site_perl/XML/SAX
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/169] Installing png-1.6.40...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/169] Extracting png-1.6.40: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/169] Installing libxcb-1.15_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/169] Extracting libxcb-1.15_1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/169] Installing p5-File-Which-1.27...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/169] Extracting p5-File-Which-1.27: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/169] Installing p5-List-MoreUtils-XS-0.430...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/169] Extracting p5-List-MoreUtils-XS-0.430: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/169] Installing p5-Exporter-Tiny-1.006002...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/169] Extracting p5-Exporter-Tiny-1.006002: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/169] Installing p5-Sub-Quote-2.006008_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/169] Extracting p5-Sub-Quote-2.006008_1: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/169] Installing mpdecimal-2.5.1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/169] Extracting mpdecimal-2.5.1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/169] Installing freetype2-2.13.2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/169] Extracting freetype2-2.13.2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/169] Installing p5-TimeDate-2.33,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/169] Extracting p5-TimeDate-2.33,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/169] Installing p5-File-HomeDir-1.006...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/169] Extracting p5-File-HomeDir-1.006: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/169] Installing libX11-1.8.7,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/169] Extracting libX11-1.8.7,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/169] Installing p5-Role-Tiny-2.002004...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/169] Extracting p5-Role-Tiny-2.002004: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/169] Installing p5-List-MoreUtils-0.430...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/169] Extracting p5-List-MoreUtils-0.430: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/169] Installing p5-Try-Tiny-0.31...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/169] Extracting p5-Try-Tiny-0.31: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/169] Installing p5-Params-Util-1.102...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/169] Extracting p5-Params-Util-1.102: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/169] Installing p5-Sub-Install-0.929...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/169] Extracting p5-Sub-Install-0.929: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/169] Installing p5-Module-Runtime-0.016...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/169] Extracting p5-Module-Runtime-0.016: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/169] Installing p5-XML-SAX-Expat-0.51_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/169] Extracting p5-XML-SAX-Expat-0.51_1: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/169] Installing libfontenc-1.1.7...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/169] Extracting libfontenc-1.1.7: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/169] Installing p5-Clone-0.46...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/169] Extracting p5-Clone-0.46: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/169] Installing p5-local-lib-2.000029...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/169] Extracting p5-local-lib-2.000029: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/169] Installing libffi-3.4.4...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/169] Extracting libffi-3.4.4: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/169] Installing p5-Moo-2.005005...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/169] Extracting p5-Moo-2.005005: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [36/169] Installing p5-IO-Socket-IP-0.42...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [36/169] Extracting p5-IO-Socket-IP-0.42: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [37/169] Installing p5-URI-5.21...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [37/169] Extracting p5-URI-5.21: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [38/169] Installing p5-Type-Tiny-XS-0.025...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [38/169] Extracting p5-Type-Tiny-XS-0.025: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [39/169] Installing p5-HTTP-Date-6.06...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [39/169] Extracting p5-HTTP-Date-6.06: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [40/169] Installing python39-3.9.18...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [40/169] Extracting python39-3.9.18: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [41/169] Installing p5-Ref-Util-XS-0.117...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [41/169] Extracting p5-Ref-Util-XS-0.117: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [42/169] Installing p5-Config-General-2.65...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [42/169] Extracting p5-Config-General-2.65: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [43/169] Installing p5-LWP-MediaTypes-6.04...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [43/169] Extracting p5-LWP-MediaTypes-6.04: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [44/169] Installing p5-Number-Compare-0.03_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [44/169] Extracting p5-Number-Compare-0.03_1: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [45/169] Installing p5-B-Hooks-OP-Check-0.22...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [45/169] Extracting p5-B-Hooks-OP-Check-0.22: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [46/169] Installing p5-Clone-Choose-0.010...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [46/169] Extracting p5-Clone-Choose-0.010: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [47/169] Installing p5-Module-Pluggable-5.2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [47/169] Extracting p5-Module-Pluggable-5.2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [48/169] Installing fontconfig-2.14.2,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [48/169] Extracting fontconfig-2.14.2,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [49/169] Installing p5-Devel-StackTrace-2.04...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [49/169] Extracting p5-Devel-StackTrace-2.04: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [50/169] Installing p5-Net-SSLeay-1.92...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [50/169] Extracting p5-Net-SSLeay-1.92: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [51/169] Installing libdatrie-0.2.13_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [51/169] Extracting libdatrie-0.2.13_1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [52/169] Installing p5-Algorithm-C3-0.11...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [52/169] Extracting p5-Algorithm-C3-0.11: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [53/169] Installing p5-Config-Tiny-2.30...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [53/169] Extracting p5-Config-Tiny-2.30: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [54/169] Installing p5-Data-OptList-0.114...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [54/169] Extracting p5-Data-OptList-0.114: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [55/169] Installing mkfontscale-1.2.1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [55/169] Extracting mkfontscale-1.2.1: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [56/169] Installing libxml2-2.10.4_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [56/169] Extracting libxml2-2.10.4_2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [57/169] Installing p5-Encode-Locale-1.05...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [57/169] Extracting p5-Encode-Locale-1.05: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [58/169] Installing p5-IO-HTML-1.004...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [58/169] Extracting p5-IO-HTML-1.004: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [59/169] Installing p5-Module-Implementation-0.09_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [59/169] Extracting p5-Module-Implementation-0.09_1: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [60/169] Installing libXext-1.3.4,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [60/169] Extracting libXext-1.3.4,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [61/169] Installing p5-Digest-SHA1-2.13_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [61/169] Extracting p5-Digest-SHA1-2.13_2: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [62/169] Installing p5-File-ConfigDir-0.021...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [62/169] Extracting p5-File-ConfigDir-0.021: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [63/169] Installing p5-Class-XSAccessor-1.19_2,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [63/169] Extracting p5-Class-XSAccessor-1.19_2,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [64/169] Installing p5-Text-Glob-0.11...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [64/169] Extracting p5-Text-Glob-0.11: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [65/169] Installing p5-Mozilla-CA-20231213...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [65/169] Extracting p5-Mozilla-CA-20231213: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [66/169] Installing p5-XML-Simple-2.25...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [66/169] Extracting p5-XML-Simple-2.25: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [67/169] Installing p5-YAML-LibYAML-0.88...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [67/169] Extracting p5-YAML-LibYAML-0.88: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [68/169] Installing p5-Cpanel-JSON-XS-4.37...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [68/169] Extracting p5-Cpanel-JSON-XS-4.37: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [69/169] Installing p5-Config-Any-0.33...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [69/169] Extracting p5-Config-Any-0.33: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [70/169] Installing libglvnd-1.7.0...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [70/169] Extracting libglvnd-1.7.0: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [71/169] Installing p5-Type-Tiny-2.004000...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [71/169] Extracting p5-Type-Tiny-2.004000: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [72/169] Installing p5-MIME-Charset-1.012.2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [72/169] Extracting p5-MIME-Charset-1.012.2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [73/169] Installing libthai-0.1.29...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [73/169] Extracting libthai-0.1.29: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [74/169] Installing p5-MooX-File-ConfigDir-0.008...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [74/169] Extracting p5-MooX-File-ConfigDir-0.008: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [75/169] Installing p5-Sub-Exporter-0.991...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [75/169] Extracting p5-Sub-Exporter-0.991: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [76/169] Installing p5-bareword-filehandles-0.007...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [76/169] Extracting p5-bareword-filehandles-0.007: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [77/169] Installing p5-indirect-0.39...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [77/169] Extracting p5-indirect-0.39: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [78/169] Installing graphite2-1.3.14...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [78/169] Extracting graphite2-1.3.14: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [79/169] Installing p5-File-Find-Rule-0.34...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [79/169] Extracting p5-File-Find-Rule-0.34: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [80/169] Installing p5-HTTP-Message-6.45...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [80/169] Extracting p5-HTTP-Message-6.45: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [81/169] Installing p5-Class-C3-0.35...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [81/169] Extracting p5-Class-C3-0.35: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [82/169] Installing p5-IO-Socket-SSL-2.084...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [82/169] Extracting p5-IO-Socket-SSL-2.084: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [83/169] Installing p5-Getopt-Long-2.57...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [83/169] Extracting p5-Getopt-Long-2.57: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [84/169] Installing p5-HTML-Tagset-3.20_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [84/169] Extracting p5-HTML-Tagset-3.20_1: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [85/169] Installing p5-UUID-Tiny-1.04_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [85/169] Extracting p5-UUID-Tiny-1.04_1: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [86/169] Installing glib-2.78.3,2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [86/169] Extracting glib-2.78.3,2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [87/169] Installing font-misc-meltho-1.0.3_5...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [87/169] Extracting font-misc-meltho-1.0.3_5: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [88/169] Installing dejavu-2.37_3...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [88/169] Extracting dejavu-2.37_3: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [89/169] Installing p5-Devel-Hide-0.0015...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [89/169] Extracting p5-Devel-Hide-0.0015: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [90/169] Installing p5-Path-Tiny-0.144...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [90/169] Extracting p5-Path-Tiny-0.144: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [91/169] Installing font-misc-ethiopic-1.0.4...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [91/169] Extracting font-misc-ethiopic-1.0.4: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [92/169] Installing p5-multidimensional-0.014...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [92/169] Extracting p5-multidimensional-0.014: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [93/169] Installing libXrender-0.9.10_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [93/169] Extracting libXrender-0.9.10_2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [94/169] Installing p5-Digest-HMAC-1.04...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [94/169] Extracting p5-Digest-HMAC-1.04: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [95/169] Installing encodings-1.0.5,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [95/169] Extracting encodings-1.0.5,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [96/169] Installing font-bh-ttf-1.0.3_5...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [96/169] Extracting font-bh-ttf-1.0.3_5: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [97/169] Installing p5-Hash-Merge-0.302...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [97/169] Extracting p5-Hash-Merge-0.302: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [98/169] Installing p5-Params-Validate-1.31...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [98/169] Extracting p5-Params-Validate-1.31: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [99/169] Installing pixman-0.42.2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [99/169] Extracting pixman-0.42.2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [100/169] Installing p5-Term-Size-Perl-0.031...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [100/169] Extracting p5-Term-Size-Perl-0.031: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [101/169] Installing p5-WWW-RobotRules-6.02_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [101/169] Extracting p5-WWW-RobotRules-6.02_1: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [102/169] Installing p5-Authen-NTLM-1.09_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [102/169] Extracting p5-Authen-NTLM-1.09_1: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [103/169] Installing p5-HTTP-Negotiate-6.01_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [103/169] Extracting p5-HTTP-Negotiate-6.01_1: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [104/169] Installing p5-Unicode-LineBreak-2019.001...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [104/169] Extracting p5-Unicode-LineBreak-2019.001: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [105/169] Installing p5-MooX-Locale-Passthrough-0.001...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [105/169] Extracting p5-MooX-Locale-Passthrough-0.001: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [106/169] Installing p5-Types-UUID-0.004...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [106/169] Extracting p5-Types-UUID-0.004: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [107/169] Installing p5-GSSAPI-0.28_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [107/169] Extracting p5-GSSAPI-0.28_2: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [108/169] Installing p5-JSON-MaybeXS-1.004005...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [108/169] Extracting p5-JSON-MaybeXS-1.004005: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [109/169] Installing p5-HTML-Parser-3.81...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [109/169] Extracting p5-HTML-Parser-3.81: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [110/169] Installing libXft-2.3.7...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [110/169] Extracting libXft-2.3.7: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [111/169] Installing cairo-1.17.4_2,3...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [111/169] Extracting cairo-1.17.4_2,3: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [112/169] Installing p5-Net-HTTP-6.23...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [112/169] Extracting p5-Net-HTTP-6.23: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [113/169] Installing p5-Path-Class-0.37...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [113/169] Extracting p5-Path-Class-0.37: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [114/169] Installing p5-Types-Path-Tiny-0.006...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [114/169] Extracting p5-Types-Path-Tiny-0.006: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [115/169] Installing p5-Data-Record-0.02_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [115/169] Extracting p5-Data-Record-0.02_2: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [116/169] Installing p5-XML-Filter-BufferText-1.01_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [116/169] Extracting p5-XML-Filter-BufferText-1.01_1: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [117/169] Installing p5-Getopt-Long-Descriptive-0.113...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [117/169] Extracting p5-Getopt-Long-Descriptive-0.113: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [118/169] Installing p5-MooX-ConfigFromFile-0.009...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [118/169] Extracting p5-MooX-ConfigFromFile-0.009: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [119/169] Installing p5-Parse-PMFile-0.44...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [119/169] Extracting p5-Parse-PMFile-0.44: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [120/169] Installing p5-JSON-4.10...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [120/169] Extracting p5-JSON-4.10: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [121/169] Installing xorg-fonts-truetype-7.7_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [121/169] Extracting xorg-fonts-truetype-7.7_1: ... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [122/169] Installing p5-Safe-Isa-1.000010...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [122/169] Extracting p5-Safe-Isa-1.000010: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [123/169] Installing p5-URI-FromHash-0.05...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [123/169] Extracting p5-URI-FromHash-0.05: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [124/169] Installing fribidi-1.0.13...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [124/169] Extracting fribidi-1.0.13: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [125/169] Installing p5-Term-Size-Any-0.002_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [125/169] Extracting p5-Term-Size-Any-0.002_1: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [126/169] Installing p5-Ref-Util-0.204...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [126/169] Extracting p5-Ref-Util-0.204: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [127/169] Installing harfbuzz-8.3.0...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [127/169] Extracting harfbuzz-8.3.0: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [128/169] Installing p5-strictures-2.000006,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [128/169] Extracting p5-strictures-2.000006,1: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [129/169] Installing p5-HTTP-CookieJar-0.014...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [129/169] Extracting p5-HTTP-CookieJar-0.014: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [130/169] Installing p5-HTTP-Cookies-6.11...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [130/169] Extracting p5-HTTP-Cookies-6.11: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [131/169] Installing p5-Regexp-Common-2017060201...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [131/169] Extracting p5-Regexp-Common-2017060201: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [132/169] Installing p5-CPAN-DistnameInfo-0.12_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [132/169] Extracting p5-CPAN-DistnameInfo-0.12_1: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [133/169] Installing p5-File-Listing-6.16...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [133/169] Extracting p5-File-Listing-6.16: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [134/169] Installing p5-MRO-Compat-0.15...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [134/169] Extracting p5-MRO-Compat-0.15: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [135/169] Installing p5-CGI-4.60...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [135/169] Extracting p5-CGI-4.60: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [136/169] Installing p5-Parse-LocalDistribution-0.19...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [136/169] Extracting p5-Parse-LocalDistribution-0.19: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [137/169] Installing p5-FCGI-0.82...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [137/169] Extracting p5-FCGI-0.82: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [138/169] Installing p5-Types-URI-0.007...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [138/169] Extracting p5-Types-URI-0.007: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [139/169] Installing p5-XML-SAX-Writer-0.57...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [139/169] Extracting p5-XML-SAX-Writer-0.57: ......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [140/169] Installing p5-Class-Accessor-Lite-0.08...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [140/169] Extracting p5-Class-Accessor-Lite-0.08: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [141/169] Installing p5-IO-File-AtomicChange-0.08...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [141/169] Extracting p5-IO-File-AtomicChange-0.08: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [142/169] Installing p5-libwww-6.70...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [142/169] Extracting p5-libwww-6.70: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [143/169] Installing p5-MetaCPAN-Client-2.031000...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [143/169] Extracting p5-MetaCPAN-Client-2.031000: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [144/169] Installing p5-MooX-Options-4.103...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [144/169] Extracting p5-MooX-Options-4.103: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [145/169] Installing p5-Authen-SASL-2.17...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [145/169] Extracting p5-Authen-SASL-2.17: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [146/169] Installing p5-List-Compare-0.53...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [146/169] Extracting p5-List-Compare-0.53: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [147/169] Installing p5-Convert-ASN1-0.34...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [147/169] Extracting p5-Convert-ASN1-0.34: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [148/169] Installing p5-Crypt-DES-2.07_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [148/169] Extracting p5-Crypt-DES-2.07_2: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [149/169] Installing p5-Parse-CPAN-Packages-Fast-0.09...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [149/169] Extracting p5-Parse-CPAN-Packages-Fast-0.09: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [150/169] Installing pango-1.50.14...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [150/169] Extracting pango-1.50.14: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [151/169] Installing p5-Archive-Extract-0.88...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [151/169] Extracting p5-Archive-Extract-0.88: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [152/169] Installing p5-Text-Soundex-3.05...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [152/169] Extracting p5-Text-Soundex-3.05: ........ done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [153/169] Installing p5-IO-Tty-1.18...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [153/169] Extracting p5-IO-Tty-1.18: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [154/169] Installing p5-OrePAN2-0.49_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [154/169] Extracting p5-OrePAN2-0.49_1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [155/169] Installing fping-5.0_2...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [155/169] Extracting fping-5.0_2: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [156/169] Installing p5-IO-Pty-Easy-0.10...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [156/169] Extracting p5-IO-Pty-Easy-0.10: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [157/169] Installing p5-perl-ldap-0.6800...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [157/169] Extracting p5-perl-ldap-0.6800: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [158/169] Installing p5-CGI-Fast-2.17...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [158/169] Extracting p5-CGI-Fast-2.17: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [159/169] Installing p5-CGI-Session-4.48_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [159/169] Extracting p5-CGI-Session-4.48_1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [160/169] Installing p5-Config-Grammar-1.10_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [160/169] Extracting p5-Config-Grammar-1.10_1: ...... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [161/169] Installing p5-Socket6-0.29...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [161/169] Extracting p5-Socket6-0.29: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [162/169] Installing p5-Net-Telnet-3.05...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [162/169] Extracting p5-Net-Telnet-3.05: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [163/169] Installing p5-Net-OpenSSH-0.84...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [163/169] Extracting p5-Net-OpenSSH-0.84: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [164/169] Installing p5-SNMP_Session-1.13_4...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [164/169] Extracting p5-SNMP_Session-1.13_4: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [165/169] Installing rrdtool-1.8.0_3...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [165/169] Extracting rrdtool-1.8.0_3: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [166/169] Installing p5-Net-DNS-1.42,1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [166/169] Extracting p5-Net-DNS-1.42,1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [167/169] Installing p5-Net-SNMP-6.0.1_1...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [167/169] Extracting p5-Net-SNMP-6.0.1_1: .......... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [168/169] Installing p5-LWP-Protocol-https-6.11...
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [168/169] Extracting p5-LWP-Protocol-https-6.11: ....... done
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [169/169] Installing smokeping-2.8.2_4...
===> Creating groups.
Creating group 'smokeping' with gid '117'.
===> Creating users
Creating user 'smokeping' with uid '117'.
[smokeping-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [169/169] Extracting smokeping-2.8.2_4: .......... done
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
==> 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 freetype2-2.13.2:

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

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

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

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

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

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

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

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

--
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 libthai-0.1.29:

--
===>   NOTICE:

The libthai port currently does not have a maintainer. As a result, it is
more likely to have unresolved issues, not be up-to-date, or even be removed in
the future. To volunteer to maintain this port, please create an issue at:

https://bugs.freebsd.org/bugzilla

More information about port maintainership is available at:

https://docs.freebsd.org/en/articles/contributing/#ports-contributing
=====
Message from dejavu-2.37_3:

--
Make sure that the freetype module is loaded.  If it is not, add the following
line to the "Modules" section of your X Windows configuration file:

	Load "freetype"

Add the following line to the "Files" section of X Windows configuration file:

	FontPath "/usr/local/share/fonts/dejavu/"

Note: your X Windows configuration file is typically /etc/X11/XF86Config
if you are using XFree86, and /etc/X11/xorg.conf if you are using X.Org.
=====
Message from smokeping-2.8.2_4:

--
SmokePing has now been installed in /usr/local/smokeping/.

NOTE: A set of sample configuration files have been installed in
/usr/local/etc/smokeping.

You *MUST* edit these to suit your requirements. Please read the
manpages 'smokeping_install' and 'smokeping_config' for further
details on installation and configuration.

If you are upgrading from a previous version of Smokeping, the
manpage 'smokeping_upgrade' may be of help.

Once configured, you can start SmokePing by adding:

  smokeping_enable="YES"

to /etc/rc.conf, and then running, as root:

  /usr/local/etc/rc.d/smokeping start

For configuration of web access, please see the 'smokeping_install'
manpage.

Enjoy!
Step 19: Clean package installation
Nothing to do.
Step 20: Clean cook artifacts
Step 21: Install pot local
Step 22: Set file ownership on cook scripts
Step 23: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 24: Create rc.d script to start cook
creating rc.d script to start cook
Step 25: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 26: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot smokeping-amd64-14_0
=====>  Remove p465e4daed1287f epair network interfaces
=====>  unmount /mnt/srv/pot/jails/smokeping-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/smokeping-amd64-14_0/m/dev
===>  exporting smokeping-amd64-14_0 @ 1709497214 to /tmp/smokeping-amd64-14_0_0.9.1.xz
xz: Reduced the number of threads from 4 to 3 to not exceed the memory usage limit of 503 MiB

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