Jenkins

Overview

This is a flavour containing the jenkins Continuous Integration (CI) and testing tool.

It has been setup with a specific purpose of automating pot images builds, thus the requirement for a BUILDHOST IP address of a server or VM running FreeBSD and Pot, with SSH access enabled for the jenkins user.

You can adjust this flavour and rebuild your own pot image if you have other requirements.

Installation

  • Create a ZFS data set on the parent system beforehand zfs create -o mountpoint=/mnt/jenkins zroot/jenkinsdata
  • Create your local jail from the image or the flavour files.
  • Clone the local jail
  • Mount in the ZFS data set you created: pot mount-in -p <jailname> -d /mnt/jenkins -m /mnt/
  • Optionally copy in SSH private key: pot copy-in -p <jailname> -s /path/to/jenkins/id_rsa -d /root/jenkins.key
  • Optionally copy in SSH public key: pot copy-in -p <jailname> -s /path/to/jenkins/id_rsa.pub -d /root/jenkins.pub
  • Optionally export the ports after creating the jail: pot export-ports -p <jailname> -e 8080:8080
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
      -E DATACENTER=<datacentername> \
      -E NODENAME=<nodename> \
      -E IP=<IP address of this system> \
      -E CONSULSERVERS=<comma-deliminated list of consul servers> \
      -E GOSSIPKEY=<32 byte Base64 key from consul keygen>] \
      -E RUNTYPE=<nostore|setupstore|activestore> \
      -E BUILDHOST=<IP of potbuilder VM> \
      [ -E IMPORTKEYS=<1|0 default> ] \
      [ -E BUCKETHOST=<ip or hostname S3 host> ] \
      [ -E BUCKETUSER=<s3 username> ] \
      [ -E BUCKETPASS=<s3 password> ] \
      [ -E BUCKETNAME=<name of bucket> ] \
      [ -E REMOTELOG=<IP of syslog-ng server> ]
    

The DATACENTER parameter defines a common datacenter.

The NODENAME parameter defines the name of this node.

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

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

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

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

RUNTYPE is one of:

  • nostore, no persistent storage. anything you setup will be lost on reboot
  • setupstore, setup persistent storage the first time by copying over the regular jenkins installation
  • activestore, run from persistent storage, without copying over jenkins installation first

BUILDHOST is the IP address of a VM or server running FreeBSD and pot, to build jail images.

IMPORTKEYS defaults to 0 and sets up new keys for jenkins user. Set to 1 to import existing SSH keys to use. Copy in the files id_rsa & id_rsa.pub as part of the pot setup and start process.

The optional parameters BUCKETHOST, BUCKETUSER, BUCKETPASS and BUCKETNAME refer to credentials for minio-client. This feature is not fully developed yet.

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

Usage

No persistent storage

To access jenkins:

  • http://jenkins-host:8080

Setup takes a little while the first time, and you will need console access to the jenkins pot image to run:

cat /usr/local/jenkins/secrets/initialAdminPassword

On first usage plugins will need to be setup and this takes a little time too, and requires internet access to download files.

Persistent storage

To use persistent storage and launch repeatedly without setting up again, configure mount-in storage, and run once with RUNTYPE set to setupstore, shut down, then run thereafter with RUNTYPE set to activestore.

Setup takes a little while the first time, and you will need console access to the jenkins pot image to run:

cat /mnt/jenkins/secrets/initialAdminPassword

On first usage plugins will need to be setup and this takes a little time too, and requires internet access to download files.

Persistent Storage

Persistent storage will be in the ZFS data set zroot/jenkinsdata, available inside the image at /mnt/jenkins

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 data set, 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 jenkins is configured to use this directory for data.

Getting Started

How To Use The Ready-Made Image

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

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

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 jenkins-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/jenkins 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.13

  • Version bump for new base image
  • FBSD14 base image

0.12

  • Version bump for new base image
  • Update minio-client client.json to config.json

0.11

  • Version bump for new base image
  • Add minio-client and auto configuration

0.10

  • Version bump for new base image

0.9

  • Version bump for new base image

0.8

  • Version bump for new base image

0.7

  • Version bump for new base image
  • Fix syslog-ng problems for 4.2 version, remove stats_freq option
  • Add local unbound and consul DNS services
  • Update README with consul DNS info
  • fix local_unbound dns resolution with missing parameters for access control
  • Disable consul DNS option with local_unbound as is only practical in VNET jails with a localhost

0.6

  • Version bump for new base image
  • Rebuild for newer jenkins

0.5

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

0.4

  • Version increment for new feature
  • Pass in consul servers as a comma-deliminated list

0.3

  • Version bump for new base image
  • Update syslog-ng.conf stats_freq(0); -> stats(freq(0));

0.2

  • Version bump for new base image

0.1

  • Version bump for new base image
  • New changelog format

0.0.24

  • Turn off groovy warning via GROOVY_TURN_OFF_JAVA_WARNINGS

0.0.23

  • Fix consul client hcl for new format

0.0.22

  • Version bump for rebuild to fix missing images on potluck site

0.0.21

  • Version bump for p3 rebuild
  • Add checklist

0.0.20

  • More bugfixing for ssh host key changes

0.0.19

  • Bugfixing, can’t remove ssh keys if known_hosts doesn’t exist

0.0.18

  • Fixing typo in if statement

0.0.17

  • Bug-fixing, removing statements that fail and interfere with cook

0.0.16

  • Version bump for new image, cook script

0.0.15

  • Version bump for FreeBSD-13.1 image

0.0.14

  • Version bump to rebuild

0.0.13

  • Version bump to diagnose and fix freebsd-13 build error

0.0.12

  • Rebuild for latest versions

0.0.11

  • Adjustments to host key management for ssh

0.0.10

  • Adding syslog-ng and remote logging

0.0.9

  • Documentation updates and adding jenkins to www group

0.0.8

  • Rebuild for FreeBSD 12_3 and 13 & pot 13

0.0.7

  • Attempted fixes to EXTRAHOST logic

0.0.6

  • Including optional EXTRAHOST paramter for ssh automation

0.0.5

  • Triggering another rebuild

0.0.4

  • Triggering a rebuild

0.0.3

  • Removing line with bad formatting of irrelevant jetty error

0.0.2

  • Fixing error in tags in readme

0.0.1

  • First bash at jenkins

0.0.0

  • Initiate file

These images were built on Sun Mar 3 18:08:21 UTC 2024

Manual Image Download Links

jenkins-amd64-14_0_0.13.1.xz ( )
jenkins-amd64-14_0_0.13.1.xz.skein ( ) jenkins-amd64-14_0_0.13.1.xz.skein.sig ( ) jenkins-amd64-14_0_0.13.1.xz.meta ( )

Jenkins Pot Creation Logs

jenkins-amd64-14_0_0.13.1:


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

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

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

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

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

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

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

exit_ok() {
  trap - EXIT
  exit 0
}

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

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

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

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

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

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

step "Disable sendmail"
service sendmail onedisable

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

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

step "Install package openssl"
pkg install -y openssl

step "Install package sudo"
pkg install -y sudo

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

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

step "Install package git"
pkg install -y git

step "Install package openjdk11"
pkg install -y openjdk11

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

step "Install package minio-client"
pkg install -y minio-client

step "Install package jenkins"
pkg install -y jenkins

step "Clean package installation"
pkg autoremove -y
pkg clean -y

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

step "Setup basic directories"
mkdir -p /mnt/jenkins

#
# 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

jenkins/jenkins+1:
jenkins/jenkins+1.sh:

jenkins/jenkins+2:
jenkins/jenkins+2.sh:

jenkins/jenkins+3:
jenkins/jenkins+3.sh:

jenkins/jenkins+4:
jenkins/jenkins+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/jenkins-amd64-14_0/conf)
=====>  Cloning freebsd-potluck-amd64-14_0_0_0_22 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_0_0_0_22/m@1709457007 into zroot/srv/pot/jails/jenkins-amd64-14_0/m
=====>  Flavour: fbsd-update
=====>  Starting jenkins-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/jenkins-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot jenkins-amd64-14_0
=====>  Pot jenkins-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=jenkins-amd64-14_0 host.hostname=jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p5 path=/mnt/srv/pot/jails/jenkins-amd64-14_0/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:ad:91:85:38:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

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

No updates needed to update system to 14.0-RELEASE-p5.
No updates are available to install.
=====>  Stop the pot jenkins-amd64-14_0
=====>  Remove p465e4baba14266 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/jenkins-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/jenkins-amd64-14_0/m/dev
=====>  Flavour: jenkins
=====>  Executing jenkins pot commands on jenkins-amd64-14_0
=====>  mount /mnt/srv/pot/jails/jenkins-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/jenkins.d/local copied in the pot jenkins-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/jenkins-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/jenkins-amd64-14_0/m/dev is already unmounted
=====>  Starting jenkins-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/jenkins-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot jenkins-amd64-14_0
=====>  Pot jenkins-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=jenkins-amd64-14_0 host.hostname=jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p5 path=/mnt/srv/pot/jails/jenkins-amd64-14_0/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:c8:8a:d3:2d:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Sun Mar  3 18:00:59 UTC 2024
/usr/local/etc/pot/flavours/jenkins.sh -> /mnt/srv/pot/jails/jenkins-amd64-14_0/m/tmp/jenkins.sh
=====>  Executing jenkins script on jenkins-amd64-14_0
WARNING /var/log/cook.log already exists
Step 1: Bootstrap package repo
pkg already bootstrapped at /usr/local/sbin/pkg
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail disabled in /etc/rc.conf
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Install package consul
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	consul: 1.17.1

Number of packages to be installed: 1

The process will require 118 MiB more space.
23 MiB to be downloaded.
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching consul-1.17.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing consul-1.17.1...
===> Creating groups.
Creating group 'consul' with gid '469'.
===> Creating users
Creating user 'consul' with uid '469'.
===> Creating homedir(s)
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting consul-1.17.1: ..... done
Step 7: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 8: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 9: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 10: Install package jq
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 11: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 12: Install package nano
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 13: Install package bash
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 14: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 15: Install package node_exporter
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	node_exporter: 1.6.1_1

Number of packages to be installed: 1

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

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

New packages to be INSTALLED:
	e2fsprogs-libuuid: 1.47.0
	glib: 2.78.3,2
	ivykis: 0.42.4_1
	json-c: 0.17
	libffi: 3.4.4
	libxml2: 2.10.4_2
	mpdecimal: 2.5.1
	pcre2: 10.42
	python39: 3.9.18
	syslog-ng: 4.4.0

Number of packages to be installed: 10

The process will require 165 MiB more space.
26 MiB to be downloaded.
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/10] Fetching ivykis-0.42.4_1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/10] Fetching libxml2-2.10.4_2.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/10] Fetching mpdecimal-2.5.1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/10] Fetching python39-3.9.18.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/10] Fetching glib-2.78.3,2.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/10] Fetching syslog-ng-4.4.0.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/10] Fetching pcre2-10.42.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/10] Fetching libffi-3.4.4.pkg: ......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/10] Fetching json-c-0.17.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/10] Fetching e2fsprogs-libuuid-1.47.0.pkg: ........ done
Checking integrity... done (0 conflicting)
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/10] Installing mpdecimal-2.5.1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/10] Extracting mpdecimal-2.5.1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/10] Installing libffi-3.4.4...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/10] Extracting libffi-3.4.4: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/10] Installing libxml2-2.10.4_2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/10] Extracting libxml2-2.10.4_2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/10] Installing python39-3.9.18...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/10] Extracting python39-3.9.18: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/10] Installing pcre2-10.42...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/10] Extracting pcre2-10.42: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/10] Installing ivykis-0.42.4_1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/10] Extracting ivykis-0.42.4_1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/10] Installing glib-2.78.3,2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/10] Extracting glib-2.78.3,2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/10] Installing json-c-0.17...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/10] Extracting json-c-0.17: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/10] Installing e2fsprogs-libuuid-1.47.0...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/10] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/10] Installing syslog-ng-4.4.0...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/10] Extracting syslog-ng-4.4.0: .......... done
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
=====
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 syslog-ng-4.4.0:

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

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

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

        syslog_ng_enable="YES"

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

        syslogd_enable="NO"

4. Shut down the standard FreeBSD syslogd:

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

5. Start syslog-ng:

     /usr/local/etc/rc.d/syslog-ng start
Step 17: Install package git
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 22 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	expat: 2.5.0
	git: 2.43.0
	p5-Authen-SASL: 2.17
	p5-CGI: 4.60
	p5-Clone: 0.46
	p5-Digest-HMAC: 1.04
	p5-Encode-Locale: 1.05
	p5-Error: 0.17029
	p5-GSSAPI: 0.28_2
	p5-HTML-Parser: 3.81
	p5-HTML-Tagset: 3.20_1
	p5-HTTP-Date: 6.06
	p5-HTTP-Message: 6.45
	p5-IO-HTML: 1.004
	p5-IO-Socket-IP: 0.42
	p5-IO-Socket-SSL: 2.084
	p5-LWP-MediaTypes: 6.04
	p5-Mozilla-CA: 20231213
	p5-Net-SSLeay: 1.92
	p5-TimeDate: 2.33,1
	p5-URI: 5.21
	perl5: 5.36.3_1

Number of packages to be installed: 22

The process will require 101 MiB more space.
23 MiB to be downloaded.
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/22] Fetching p5-Net-SSLeay-1.92.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/22] Fetching p5-IO-Socket-SSL-2.084.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/22] Fetching p5-HTTP-Date-6.06.pkg: . done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/22] Fetching p5-GSSAPI-0.28_2.pkg: ........ done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/22] Fetching p5-IO-Socket-IP-0.42.pkg: ...... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/22] Fetching p5-URI-5.21.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/22] Fetching p5-CGI-4.60.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/22] Fetching p5-Encode-Locale-1.05.pkg: ... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/22] Fetching perl5-5.36.3_1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/22] Fetching p5-HTML-Parser-3.81.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/22] Fetching p5-Mozilla-CA-20231213.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/22] Fetching p5-LWP-MediaTypes-6.04.pkg: ...... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/22] Fetching p5-TimeDate-2.33,1.pkg: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/22] Fetching p5-IO-HTML-1.004.pkg: .... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/22] Fetching p5-Clone-0.46.pkg: ... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/22] Fetching p5-Digest-HMAC-1.04.pkg: ... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/22] Fetching p5-Error-0.17029.pkg: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/22] Fetching p5-HTML-Tagset-3.20_1.pkg: ... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/22] Fetching expat-2.5.0.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/22] Fetching p5-HTTP-Message-6.45.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/22] Fetching git-2.43.0.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/22] Fetching p5-Authen-SASL-2.17.pkg: ........ done
Checking integrity... done (0 conflicting)
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/22] Installing perl5-5.36.3_1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/22] Extracting perl5-5.36.3_1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/22] Installing p5-TimeDate-2.33,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/22] Extracting p5-TimeDate-2.33,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/22] Installing p5-HTTP-Date-6.06...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/22] Extracting p5-HTTP-Date-6.06: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/22] Installing p5-URI-5.21...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/22] Extracting p5-URI-5.21: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/22] Installing p5-Encode-Locale-1.05...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/22] Extracting p5-Encode-Locale-1.05: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/22] Installing p5-LWP-MediaTypes-6.04...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/22] Extracting p5-LWP-MediaTypes-6.04: ........ done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/22] Installing p5-IO-HTML-1.004...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/22] Extracting p5-IO-HTML-1.004: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/22] Installing p5-Clone-0.46...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/22] Extracting p5-Clone-0.46: ......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/22] Installing p5-HTML-Tagset-3.20_1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/22] Extracting p5-HTML-Tagset-3.20_1: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/22] Installing p5-HTTP-Message-6.45...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/22] Extracting p5-HTTP-Message-6.45: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/22] Installing p5-Net-SSLeay-1.92...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/22] Extracting p5-Net-SSLeay-1.92: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/22] Installing p5-GSSAPI-0.28_2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/22] Extracting p5-GSSAPI-0.28_2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/22] Installing p5-IO-Socket-IP-0.42...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/22] Extracting p5-IO-Socket-IP-0.42: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/22] Installing p5-HTML-Parser-3.81...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/22] Extracting p5-HTML-Parser-3.81: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/22] Installing p5-Mozilla-CA-20231213...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/22] Extracting p5-Mozilla-CA-20231213: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/22] Installing p5-Digest-HMAC-1.04...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/22] Extracting p5-Digest-HMAC-1.04: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/22] Installing p5-IO-Socket-SSL-2.084...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/22] Extracting p5-IO-Socket-SSL-2.084: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/22] Installing p5-CGI-4.60...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/22] Extracting p5-CGI-4.60: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/22] Installing p5-Error-0.17029...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/22] Extracting p5-Error-0.17029: ......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/22] Installing expat-2.5.0...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/22] Extracting expat-2.5.0: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/22] Installing p5-Authen-SASL-2.17...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/22] Extracting p5-Authen-SASL-2.17: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/22] Installing git-2.43.0...
===> Creating groups.
Creating group 'git_daemon' with gid '964'.
===> Creating users
Creating user 'git_daemon' with uid '964'.
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/22] Extracting git-2.43.0: .......... done
=====
Message from git-2.43.0:

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

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

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


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

New packages to be INSTALLED:
	alsa-lib: 1.2.10
	brotli: 1.1.0,1
	dejavu: 2.37_3
	encodings: 1.0.5,1
	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
	freetype2: 2.13.2
	giflib: 5.2.1
	javavmwrapper: 2.7.9
	jbigkit: 2.1_1
	jpeg-turbo: 3.0.1
	lcms2: 2.16
	libICE: 1.1.0_2,1
	libSM: 1.2.3_1,1
	libX11: 1.8.7,1
	libXau: 1.0.9
	libXdmcp: 1.1.3
	libXext: 1.3.4,1
	libXfixes: 6.0.0
	libXi: 1.8,1
	libXrandr: 1.5.2
	libXrender: 0.9.10_2
	libXt: 1.2.1,1
	libXtst: 1.2.3_2
	libdeflate: 1.19
	libfontenc: 1.1.7
	libxcb: 1.15_1
	mkfontscale: 1.2.1
	openjdk11: 11.0.21+9.1
	png: 1.6.40
	tiff: 4.4.0_2
	xorg-fonts-truetype: 7.7_1
	xorgproto: 2023.2

Number of packages to be installed: 35

The process will require 368 MiB more space.
178 MiB to be downloaded.
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/35] Fetching png-1.6.40.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/35] Fetching javavmwrapper-2.7.9.pkg: .... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/35] Fetching libxcb-1.15_1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/35] Fetching freetype2-2.13.2.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/35] Fetching jpeg-turbo-3.0.1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/35] Fetching libXt-1.2.1,1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/35] Fetching libfontenc-1.1.7.pkg: ..... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/35] Fetching openjdk11-11.0.21+9.1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/35] Fetching libXrandr-1.5.2.pkg: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/35] Fetching lcms2-2.16.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/35] Fetching font-bh-ttf-1.0.3_5.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/35] Fetching brotli-1.1.0,1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/35] Fetching mkfontscale-1.2.1.pkg: ..... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/35] Fetching libdeflate-1.19.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/35] Fetching libXext-1.3.4,1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/35] Fetching libXfixes-6.0.0.pkg: ..... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/35] Fetching libXau-1.0.9.pkg: .. done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/35] Fetching libICE-1.1.0_2,1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/35] Fetching fontconfig-2.14.2,1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/35] Fetching libSM-1.2.3_1,1.pkg: ...... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/35] Fetching font-misc-ethiopic-1.0.4.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/35] Fetching libX11-1.8.7,1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/35] Fetching giflib-5.2.1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/35] Fetching libXrender-0.9.10_2.pkg: ...... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/35] Fetching xorgproto-2023.2.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/35] Fetching libXtst-1.2.3_2.pkg: .... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/35] Fetching libXi-1.8,1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/35] Fetching jbigkit-2.1_1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/35] Fetching font-misc-meltho-1.0.3_5.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/35] Fetching libXdmcp-1.1.3.pkg: ... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/35] Fetching tiff-4.4.0_2.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/35] Fetching encodings-1.0.5,1.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/35] Fetching alsa-lib-1.2.10.pkg: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/35] Fetching xorg-fonts-truetype-7.7_1.pkg: . done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/35] Fetching dejavu-2.37_3.pkg: .......... done
Checking integrity... done (0 conflicting)
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/35] Installing xorgproto-2023.2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/35] Extracting xorgproto-2023.2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/35] Installing libXau-1.0.9...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/35] Extracting libXau-1.0.9: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/35] Installing libXdmcp-1.1.3...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/35] Extracting libXdmcp-1.1.3: ......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/35] Installing png-1.6.40...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/35] Extracting png-1.6.40: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/35] Installing libxcb-1.15_1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/35] Extracting libxcb-1.15_1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/35] Installing brotli-1.1.0,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/35] Extracting brotli-1.1.0,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/35] Installing freetype2-2.13.2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/35] Extracting freetype2-2.13.2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/35] Installing libfontenc-1.1.7...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/35] Extracting libfontenc-1.1.7: ......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/35] Installing libX11-1.8.7,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/35] Extracting libX11-1.8.7,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/35] Installing jpeg-turbo-3.0.1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/35] Extracting jpeg-turbo-3.0.1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/35] Installing mkfontscale-1.2.1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/35] Extracting mkfontscale-1.2.1: ....... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/35] Installing libdeflate-1.19...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/35] Extracting libdeflate-1.19: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/35] Installing libXext-1.3.4,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/35] Extracting libXext-1.3.4,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/35] Installing libXfixes-6.0.0...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/35] Extracting libXfixes-6.0.0: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/35] Installing libICE-1.1.0_2,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/35] Extracting libICE-1.1.0_2,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/35] Installing fontconfig-2.14.2,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/35] Extracting fontconfig-2.14.2,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/35] Installing jbigkit-2.1_1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/35] Extracting jbigkit-2.1_1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/35] Installing font-bh-ttf-1.0.3_5...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/35] Extracting font-bh-ttf-1.0.3_5: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/35] Installing libSM-1.2.3_1,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/35] Extracting libSM-1.2.3_1,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/35] Installing font-misc-ethiopic-1.0.4...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/35] Extracting font-misc-ethiopic-1.0.4: ...... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/35] Installing libXrender-0.9.10_2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/35] Extracting libXrender-0.9.10_2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/35] Installing libXi-1.8,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [22/35] Extracting libXi-1.8,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/35] Installing font-misc-meltho-1.0.3_5...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [23/35] Extracting font-misc-meltho-1.0.3_5: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/35] Installing tiff-4.4.0_2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [24/35] Extracting tiff-4.4.0_2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/35] Installing encodings-1.0.5,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [25/35] Extracting encodings-1.0.5,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/35] Installing dejavu-2.37_3...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [26/35] Extracting dejavu-2.37_3: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/35] Installing javavmwrapper-2.7.9...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [27/35] Extracting javavmwrapper-2.7.9: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/35] Installing libXt-1.2.1,1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [28/35] Extracting libXt-1.2.1,1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/35] Installing libXrandr-1.5.2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [29/35] Extracting libXrandr-1.5.2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/35] Installing lcms2-2.16...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [30/35] Extracting lcms2-2.16: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/35] Installing giflib-5.2.1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [31/35] Extracting giflib-5.2.1: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/35] Installing libXtst-1.2.3_2...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [32/35] Extracting libXtst-1.2.3_2: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/35] Installing alsa-lib-1.2.10...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [33/35] Extracting alsa-lib-1.2.10: .......... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/35] Installing xorg-fonts-truetype-7.7_1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [34/35] Extracting xorg-fonts-truetype-7.7_1: ... done
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/35] Installing openjdk11-11.0.21+9.1...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [35/35] Extracting openjdk11-11.0.21+9.1: .......... done
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
=====
Message from freetype2-2.13.2:

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

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

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

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

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

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

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

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

--
This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and
procfs(5) mounted on /proc.

If you have not done it yet, please do the following:

	mount -t fdescfs fdesc /dev/fd
	mount -t procfs proc /proc

To make it permanent, you need the following lines in /etc/fstab:

	fdesc	/dev/fd		fdescfs		rw	0	0
	proc	/proc		procfs		rw	0	0
Step 19: Install package syslog-ng
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 20: Install package minio-client
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:
	minio-client: 2023.01.28.20.29.38_15

Number of packages to be installed: 1

The process will require 25 MiB more space.
7 MiB to be downloaded.
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching minio-client-2023.01.28.20.29.38_15.pkg: .......... done
Checking integrity... done (0 conflicting)
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing minio-client-2023.01.28.20.29.38_15...
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting minio-client-2023.01.28.20.29.38_15: .... done
Step 21: Install package jenkins
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:
	jenkins: 2.442

Number of packages to be installed: 1

The process will require 82 MiB more space.
82 MiB to be downloaded.
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching jenkins-2.442.pkg: .......... done
Checking integrity... done (0 conflicting)
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing jenkins-2.442...
===> Creating groups.
Creating group 'jenkins' with gid '818'.
===> Creating users
Creating user 'jenkins' with uid '818'.
===> Creating homedir(s)
[jenkins-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting jenkins-2.442: ...... done
=====
Message from jenkins-2.442:

--
Jenkins defaults listens on http://*:8080 , to change this, add --httpPort and
--prefix settings to jenkins_args in /etc/rc.conf

Please login to the Jenkins web interface and secure it with a password
when installing for the first time.

More information:
https://www.jenkins.io/doc/book/installing/war-file/
https://www.jenkins.io/doc/book/security/managing-security/
Step 22: Clean package installation
Checking integrity... done (0 conflicting)
Nothing to do.
Nothing to do.
Step 23: Setup basic directories
Step 24: Clean cook artifacts
Step 25: Install pot local
Step 26: Set file ownership on cook scripts
Step 27: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 28: Create rc.d script to start cook
creating rc.d script to start cook
Step 29: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 30: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot jenkins-amd64-14_0
=====>  Remove p465e4badb14266 epair network interfaces
=====>  unmount /mnt/srv/pot/jails/jenkins-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/jenkins-amd64-14_0/m/dev
===>  exporting jenkins-amd64-14_0 @ 1709488969 to /tmp/jenkins-amd64-14_0_0.13.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