Openldap

Overview

This is an OpenLDAP jail that can be started with pot.

The jail exposes parameters that can be set via the environment with pot set-env parameters below.

Setup

Prerequisites

If you wish to import an existing openldap database, run the following on your existing openldap server to export the config and schema: slapcat -n 0 -l config.ldif

Then edit config.ldif so that:

olcDbDirectory: /var/db/openldap-data

becomes

olcDbDirectory: /mnt/openldap-data

Then run the following to export your data entries

slapcat -n 1 -l data.ldif

Then copy these files in on pot startup as outlined below. They aren’t automatically imported to openldap, you need to do this manually ONLY ONCE to import data to the persistent storage you’ve mounted in.

Thereafter these files will load automatically, along with any updates, from persistent storage.

Installation

  • Create a ZFS data set on the parent system beforehand, for example:
    zfs create -o mountpoint=/mnt/openldap root/openldap
    
  • 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/openldap -m /mnt
    
  • Optional: Copy in YOUR config.ldif file if importing an existing config:
    pot copy-in -p <jailname> -s /path/to/config.ldif -d /root/config.ldif
    
  • Optional: Copy in YOUR data.ldif file if importing existing data:
    pot copy-in -p <jailname> -s /path/to/data.ldif -d /root/data.ldif
    
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
    -E NODENAME=name \
    -E DATACENTER=<datacenter> \
    -E CONSULSERVERS="<comma-deliminated list of consul servers>" \
    -E GOSSIPKEY="<key>" \
    -E IP=<IP address> \
    -E DOMAIN="<domain name>" \
    -E MYCREDS=<openldap root pass> \
    -E HOSTNAME=<hostname> \
    [ -E CRONBACKUP=/mnt/openldap-data/backups ] \
    [ -E IMPORTCUSTOM=1 ] \
    [ -E REMOTEIP=<IP address second instance> ] \
    [ -E SERVERID=<001 or 002> ] \
    [ -E DEFAULTGROUPS=Y ] \
    [ -E USERNAME=<generic user username> ] \
    [ -E PASSWORD=<generic user password ] \
    [ -E REMOTELOG=<IP of syslog-ng server> ]
    

The NODENAME parameter is the name of the node.

The DATACENTER parameter is the name of the datacenter.

The CONSULSERVERS parameter is a comma-deliminated list of consul servers. Do not include spaces!

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

The GOSSIPKEY parameter is the gossip encryption key for consul agent.

The IP parameter is the IP address of this image.

The DOMAIN parameter is the domain name to use for openldap configuration.

The MYCREDS parameter is the administrator password for openldap.

The HOSTNAME is the hostname to be used.

The CRONBACKUP parameter is the path to persistent storage where automatic backups of ldap config and data are dropped.

If set, IMPORTCUSTOM enables the import of copied-in files /root/config.ldif and /root/data.ldif as a repeat in the cook script. Also available via shell scripts.

The optional REMOTEIP parameter is the IP address of a second openldap pot server if running a multi-master cluster. If set, a cluster setup will be initiated.

The optional SERVERID parameter is one of 001 or 002 for first or second server if running a multi-master cluster.

The optional DEFAULTGROUPS parameter will enable a default group arrangement with People and mail, if set to any value. This will not work if IMPORTCUSTOM is enabled.

The optional USERNAME and PASSWORD parameters will setup a generic user if DEFAULTGROUPS is also enabled. If not passed in, no generic user will be created, but the groups will be. No mail value is assigned to the generic user and can be set manually. This will not work if IMPORTCUSTOM is enabled.

The optional REMOTELOG parameter is for a remote syslog service, such as via the loki or beast-of-argh images on potluck site.

Usage

Importing old data

Once started, a basic openldap configuration will be setup with data structures configured in /mnt/openldap-data.

You can import your copied-in backup config.ldif files as follows for the configuration, database 0:

/root/importldapconfig.sh

This is the same as running:

/usr/local/sbin/slapadd -c -n 0 -F /usr/local/etc/openldap/slapd.d/ -l /root/config.ldif

You can import your copied-in data.ldif files as follows, for database 2:

/root/importldapdata.sh

This is the same as running:

/usr/local/sbin/slapadd -c -n 1 -F /usr/local/etc/openldap/slapd.d/ -l /root/data.ldif

There may be errors on import, but the -c flag continues regardless of errors.

Check the resulting import for any missing data. It’s possible you may have to add missing entries.

Important: ldapmodify and ldapadd don’t work for import, where slapadd works with some errors in most cases.

Two server setup - multi-master cluster

When running with two servers, you must first setup one and import existing data with the included scripts.

Then start a second server on a different host (both will use /mnt/openldap-data so keep on different servers) with a different SERVERID and setting REMOTEIP to the IP address of the first server.

Check entries in your openldap database by running an anonymous search (no auth):

ldapsearch -x -b "dc=your-domain,dc=net"

Or with authenticated search:

ldapsearch -x -LLL -b "dc=your-domain,dc=net" -W
Enter LDAP Password:

ldapsearch -x -LLL -D cn=Manager,dc=your-domain,dc=net -W
Enter LDAP Password:

ldapsearch -x -LLL -D cn=Manager,dc=your-domain,dc=net -W -H ldap://1.2.3.4
Enter LDAP Password:

LAM web frontend

Open http://yourhost to access the LAM openldap web frontend.

Updating Master password

It’s possible to update the master password on imported ldif files, however to avoid a checksum error extra steps required.

First copy /usr/local/etc/openldap/slapd.d/cn=config/olcDatabase={1}mdb.ldif to a temporary file:

cp "/usr/local/etc/openldap/slapd.d/cn=config/olcDatabase={1}mdb.ldif" /tmp/stepone.ldif

Then generate a password with the slappasswd tool as follows:

slappasswd -s newPassword

For example:

slappasswd -s lam
{SSHA}A6feTpxMvW6YWuMka4aK64jUr18hRvvJ

Then edit /tmp/stepone.ldif and change the line olcRootPW:: OldPasswordString to the string you get from slappasswd:

olcRootPW: {SSHA}A6feTpxMvW6YWuMka4aK64jUr18hRvvJ

Remove the first two lines where it says:

# AUTO-GENERATED FILE - DO NOT EDIT!! Use ldapmodify.
# CRC32 XXXXXXX

Save the file. Now calculate a new checksum value with rhash tool:

rhash -C /tmp/stepone.ldif

Then update the file with the correct hash value by inserting at the top:

# AUTO-GENERATED FILE - DO NOT EDIT!! Use ldapmodify.
# CRC32 nEwHaSh

Then make a backup old file, and copy over adjusted file, and restart slapd:

cd "/usr/local/etc/openldap/slapd.d/cn=config/"
cp "olcDatabase={1}mdb.ldif" backup.ldif
cp /tmp/stepone.ldif "olcDatabase={1}mdb.ldif"
service slapd restart

You can now login as Manager via web front end with the new credentials.

Getting Started

How To Use The Ready-Made Image

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

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

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 openldap-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/openldap 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

1.16

  • Version bump for new base image
  • FBSD14 base image
  • Fix broken php packages
  • Switch to using php-fpm
  • Adjust apache24 config for php-fpm
  • Increase php-fpm memory to 128MB to clear error and make LAM work again
  • Include files to change for php socket on php version change

1.15

  • Version bump for new base image

1.14

  • Version bump for new base image

1.13

  • Version bump for new base image

1.12

  • Version bump for new base image

1.11

  • Version bump for new base image
  • Fix syslog-ng problems for 4.2 version, remove stats_freq option
  • Add local unbound for consul DNS resolution
  • Minor change to consul agent config to use retry_join instead of start_join
  • Add services to consul setup
  • Fix addition of services
  • Add consul DNS info to README
  • 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
  • Set www permissions on additional LAM subdirectories
  • Adjustments to specify IP for LAM config files instead of localhost

1.10

  • Version bump for new base image

1.9

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

1.8

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

1.7

  • Version bump for new base image
  • Update syslog-ng.conf stats_freq(0); -> stats(freq(0));
  • Remove quotes from variable as adjustment for list of consul servers to join

1.6

  • Version bump for new base image
  • add new parameters DEFAULTGROUPS USERNAME PASSWORD
  • add default groups if no custom import
  • add genericuser options and setup a generic user if set
  • add missing php modules which need inclusion now
  • Switch to php81
  • Fix sync password
  • Access control for sync consumer read
  • Re-do sync access control
  • Fix access control, no olcAccess in slapd.conf
  • New access control setup, to be tested
  • Experimental: attempt sync config with replicator user automatically setup
  • set ldap owner for self-signed certificates
  • Missing dc= in slapd.conf ACLs
  • Fix replicator user, avoid double-encrypting password, remove tmp files
  • Correct sync dn to use uid not cn
  • Adjust ACLs again
  • Simplify ACLs, tested working sync
  • Adjust ACLs to allow users access
  • Remove double to in ACL

1.5

  • Version bump for new base image
  • New changelog format
  • Fix rootdn access issues
  • Add missing step to mkdir openldap-data in persistent storage
  • Set apache servername to IP to avoid problems with unresolvable hostnames
  • Optional parameter SERVERID, was under required
  • Set ACL for root access via socket connection

1.4.6

  • Adjust setup for persistent storage

1.4.5

  • Update README to remove openldap24 reference

1.4.4

  • Include rhash as crc32 application to calculate checksums on ldif files
  • Update docs for changing password

1.4.3

  • Update LAM unix.conf for list login

1.4.2

  • Configure LAM automatically

1.4.1

  • Add cron backups

1.4.0

  • Version bump for rebuild

1.3.9

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

1.3.8

  • Version bump for p3 rebuild

1.3.7

  • Fix apache config file, missing close tag

1.3.6

  • Update consul config for new format

1.3.5

  • Update for openldap26 and general rebuild
  • Add checklist

1.3.4

  • Add optional parameter to import custom ldap data at end of cook script
  • This is a repeat, yet seems necessary to avoid doing it manually on login

1.3.3

  • Bug-fixing slapd config script

1.3.2

  • Fixing up formatting issues with multisite slapd.conf

1.3.1

  • Adding ‘or true’ to removing old files for slapd to avoid error out

1.3.0

  • Fixing up openssl script with full paths

1.2.9

  • Remove go install
  • Add note about failure of openldap_exporter to build on freebsd

1.2.8

  • Fix missing node_exporter install
  • Add todo for openldap_exporter

1.2.7

  • Version bump for new base image, cook script

1.2.6

  • Version bump for FreeBSD-13.1 image

1.2.5

  • Added syslog-ng and remote logging

1.2.4

  • Capitilising header section in README for consistency

1.2.3

  • Adding header and tags to README

1.2.2

  • Fixing markdown in README

1.2.1

  • Version bump

1.2

  • Rebuild for FreeBSD 12_3 and 13 & pot 13

1.1

  • Updated OpenLDAP image with mount-in persistent storage, multi-master server option

1.0.1

  • First bash at OpenLDAP image

1.0.0

  • Initial commit

These images were built on Thu Mar 21 17:06:50 UTC 2024

Manual Image Download Links

openldap-amd64-14_0_1.16.5.xz ( )
openldap-amd64-14_0_1.16.5.xz.skein ( ) openldap-amd64-14_0_1.16.5.xz.skein.sig ( ) openldap-amd64-14_0_1.16.5.xz.meta ( )

Jenkins Pot Creation Logs

openldap-amd64-14_0_1.16.5:


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

# to-do
# this could be disabled?
step "Enable SSH"
service sshd enable

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

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

step "Install package openssl"
pkg install -y openssl

step "Install package sudo"
pkg install -y sudo

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

step "Install package curl"
pkg install -y curl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package nano"
pkg install -y nano

step "Install package bash"
pkg install -y bash

# not including go, was depedency for openldap_exporter, which does not work on freebsd
#step "Install package go"
#pkg install -y go

step "Install package node_exporter"
pkg install -y node_exporter

step "Install package openldap26-server"
pkg install -y openldap26-server

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

step "Install package rhash"
pkg install -y rhash

step "Install package p5-Archive-Zip"
pkg install -y p5-Archive-Zip

step "Install package apache24"
pkg install -y apache24

# deprecated in favour of php-fpm
#step "Install package mod_php82"
#pkg install -y mod_php82

step "Install package php82"
pkg install -y php82

# php modules need explicit installation now
step "Install package php82-session"
pkg install -y php82-session

step "Install package php82-ldap"
pkg install -y php82-ldap

step "Install package php82-gettext"
pkg install -y php82-gettext

step "Install package php82-xml"
pkg install -y php82-xml

step "Install package php82-xmlreader"
pkg install -y php82-xmlreader

step "Install package php82-xmlwriter"
pkg install -y php82-xmlwriter

step "Install package php82-mbstring"
pkg install -y php82-mbstring

step "Install package php82-gd"
pkg install -y php82-gd

step "Install package php82-gmp"
pkg install -y php82-gmp

step "Install package php82-filter"
pkg install -y php82-filter

step "Install package php82-zip"
pkg install -y php82-zip

# ldap account manager
step "Install package ldap-account-manager"
pkg install -y ldap-account-manager

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

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

step "Enable apache24 in /etc/rc.conf"
service apache24 enable || true


# TODO
# git clone https://github.com/tomcz/openldap_exporter
# (done) pkg install -y go
# cd openldap_exporter
# make build
# then setup rc scripts like with other exporters as nothing for bsd yet
###
# Update: build not currently working 2022-10-01, not suited for freebsd
###

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

step "Create necessary directories if they don't exist"
# create some necessary directories
# The database directory MUST exist prior to running slapd AND
# should only be accessible by the slapd and slap tools.
# Mode 700 recommended.
mkdir -p /var/db/run/
mkdir -p /usr/local/etc/openldap/slapd.d

# 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

openldap/openldap+1:
openldap/openldap+1.sh:

openldap/openldap+2:
openldap/openldap+2.sh:

openldap/openldap+3:
openldap/openldap+3.sh:

openldap/openldap+4:
openldap/openldap+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/openldap-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/openldap-amd64-14_0/m
=====>  Flavour: fbsd-update
=====>  Starting openldap-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/openldap-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot openldap-amd64-14_0
=====>  Pot openldap-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=openldap-amd64-14_0 host.hostname=openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p5 path=/mnt/srv/pot/jails/openldap-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:2b:20:45:ea:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Thu Mar 21 16:57:27 UTC 2024
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/openldap-amd64-14_0/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on openldap-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 openldap-amd64-14_0
=====>  Remove p465fc66f44aae epair network interfaces
=====>  unmount /mnt/srv/pot/jails/openldap-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/openldap-amd64-14_0/m/dev
=====>  Flavour: openldap
=====>  Executing openldap pot commands on openldap-amd64-14_0
=====>  mount /mnt/srv/pot/jails/openldap-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/openldap.d/local copied in the pot openldap-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/openldap-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/openldap-amd64-14_0/m/dev is already unmounted
=====>  Starting openldap-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/openldap-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot openldap-amd64-14_0
=====>  Pot openldap-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=openldap-amd64-14_0 host.hostname=openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p5 path=/mnt/srv/pot/jails/openldap-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:b8:58:40:59:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting cron.

Thu Mar 21 16:58:10 UTC 2024
/usr/local/etc/pot/flavours/openldap.sh -> /mnt/srv/pot/jails/openldap-amd64-14_0/m/tmp/openldap.sh
=====>  Executing openldap script on openldap-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: Enable SSH
sshd enabled in /etc/rc.conf
Step 6: Create /usr/local/etc/rc.d
Step 7: Install package consul
Updating FreeBSD repository catalogue...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] Fetching packagesite.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 33718 packages processed.
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_1

Number of packages to be installed: 1

The process will require 118 MiB more space.
23 MiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching consul-1.17.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing consul-1.17.1_1...
===> Creating groups.
Creating group 'consul' with gid '469'.
===> Creating users
Creating user 'consul' with uid '469'.
===> Creating homedir(s)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting consul-1.17.1_1: ..... done
Step 8: 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 9: 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 10: Install package ca_root_nss
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 11: 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 12: 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 13: 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 14: 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 15: 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 16: 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.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching node_exporter-1.6.1_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing node_exporter-1.6.1_1...
[openldap-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 17: Install package openldap26-server
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 7 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	cyrus-sasl: 2.1.28_1
	icu: 74.2,1
	libevent: 2.1.12
	libltdl: 2.4.7
	libsodium: 1.0.18
	openldap26-client: 2.6.6
	openldap26-server: 2.6.6_1

Number of packages to be installed: 7

The process will require 73 MiB more space.
17 MiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/7] Fetching cyrus-sasl-2.1.28_1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/7] Fetching libltdl-2.4.7.pkg: ......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/7] Fetching icu-74.2,1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/7] Fetching openldap26-client-2.6.6.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/7] Fetching openldap26-server-2.6.6_1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/7] Fetching libsodium-1.0.18.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/7] Fetching libevent-2.1.12.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/7] Installing cyrus-sasl-2.1.28_1...
*** Added group `cyrus' (id 60)
*** Added user `cyrus' (id 60)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/7] Extracting cyrus-sasl-2.1.28_1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/7] Installing libltdl-2.4.7...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/7] Extracting libltdl-2.4.7: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/7] Installing icu-74.2,1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/7] Extracting icu-74.2,1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/7] Installing openldap26-client-2.6.6...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/7] Extracting openldap26-client-2.6.6: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/7] Installing libsodium-1.0.18...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/7] Extracting libsodium-1.0.18: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/7] Installing libevent-2.1.12...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/7] Extracting libevent-2.1.12: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/7] Installing openldap26-server-2.6.6_1...
===> Creating groups.
Creating group 'ldap' with gid '389'.
===> Creating users
Creating user 'ldap' with uid '389'.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/7] Extracting openldap26-server-2.6.6_1: .......... done
=====
Message from cyrus-sasl-2.1.28_1:

--
You can use sasldb2 for authentication, to add users use:

	saslpasswd2 -c username

If you want to enable SMTP AUTH with the system Sendmail, read
Sendmail.README

NOTE: This port has been compiled with a default pwcheck_method of
      auxprop.  If you want to authenticate your user by /etc/passwd,
      PAM or LDAP, install ports/security/cyrus-sasl2-saslauthd and
      set sasl_pwcheck_method to saslauthd after installing the
      Cyrus-IMAPd 2.X port.  You should also check the
      /usr/local/lib/sasl2/*.conf files for the correct
      pwcheck_method.
      If you want to use GSSAPI mechanism, install
      ports/security/cyrus-sasl2-gssapi.
      If you want to use SRP mechanism, install
      ports/security/cyrus-sasl2-srp.
      If you want to use LDAP auxprop plugin, install
      ports/security/cyrus-sasl2-ldapdb.
=====
Message from openldap26-client-2.6.6:

--
The OpenLDAP client package has been successfully installed.

Edit
  /usr/local/etc/openldap/ldap.conf
to change the system-wide client defaults.

Try `man ldap.conf' and visit the OpenLDAP FAQ-O-Matic at
  http://www.OpenLDAP.org/faq/index.cgi?file=3
for more information.
=====
Message from openldap26-server-2.6.6_1:

--
The OpenLDAP server package has been successfully installed.

In order to run the LDAP server, you need to edit
  /usr/local/etc/openldap/slapd.conf
to suit your needs and add the following lines to /etc/rc.conf:
  slapd_enable="YES"
  slapd_flags='-h "ldapi://%2fvar%2frun%2fopenldap%2fldapi/ ldap://0.0.0.0/"'
  slapd_sockets="/var/run/openldap/ldapi"

Then start the server with
  /usr/local/etc/rc.d/slapd start
or reboot.

Try `man slapd' and the online manual at
  http://www.OpenLDAP.org/doc/
for more information.

slapd runs under a non-privileged user id (by default `ldap'),
see /usr/local/etc/rc.d/slapd for more information.

PLEASE NOTE:

Upgrading from openldap26-server 2.4 to 2.5 requires a full dump
and reimport of database.

Starting from openldap26-server 2.4.59_3, automatic data dumps
are saved at /var/backups/openldap when shutting down slapd.

Please refer to OpenLDAP Software 2.5 Administrator's Guide at
  https://www.openldap.org/doc/admin25/appendix-upgrading.html
for additional upgrade instructions.
Step 18: Install package openldap26-client
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 19: Install package rhash
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:
	rhash: 1.4.4

Number of packages to be installed: 1

233 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching rhash-1.4.4.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing rhash-1.4.4...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting rhash-1.4.4: .......... done
Step 20: Install package p5-Archive-Zip
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:
	p5-Archive-Zip: 1.68
	perl5: 5.36.3_1

Number of packages to be installed: 2

The process will require 62 MiB more space.
15 MiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching perl5-5.36.3_1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching p5-Archive-Zip-1.68.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing perl5-5.36.3_1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting perl5-5.36.3_1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing p5-Archive-Zip-1.68...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting p5-Archive-Zip-1.68: .......... done
Step 21: Install package apache24
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 8 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	apache24: 2.4.58_1
	apr: 1.7.3.1.6.3_1
	db18: 18.1.40
	expat: 2.5.0
	gdbm: 1.23
	jansson: 2.14
	libxml2: 2.10.4_2
	pcre2: 10.42

Number of packages to be installed: 8

The process will require 134 MiB more space.
26 MiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/8] Fetching libxml2-2.10.4_2.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/8] Fetching db18-18.1.40.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/8] Fetching apr-1.7.3.1.6.3_1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/8] Fetching apache24-2.4.58_1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/8] Fetching pcre2-10.42.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/8] Fetching expat-2.5.0.pkg: ......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/8] Fetching jansson-2.14.pkg: ......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/8] Fetching gdbm-1.23.pkg: ......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/8] Installing db18-18.1.40...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/8] Extracting db18-18.1.40: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/8] Installing expat-2.5.0...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/8] Extracting expat-2.5.0: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/8] Installing gdbm-1.23...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/8] Extracting gdbm-1.23: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/8] Installing libxml2-2.10.4_2...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/8] Extracting libxml2-2.10.4_2: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/8] Installing apr-1.7.3.1.6.3_1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/8] Extracting apr-1.7.3.1.6.3_1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/8] Installing pcre2-10.42...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/8] Extracting pcre2-10.42: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/8] Installing jansson-2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/8] Extracting jansson-2.14: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/8] Installing apache24-2.4.58_1...
===> Creating groups.
Using existing group 'www'.
===> Creating users
Using existing user 'www'.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/8] Extracting apache24-2.4.58_1: .......... done
=====
Message from apr-1.7.3.1.6.3_1:

--
The Apache Portable Runtime project removed support for FreeTDS with
version 1.6. Users requiring MS-SQL connectivity must migrate
configurations to use the added ODBC driver and FreeTDS' ODBC features.
=====
Message from apache24-2.4.58_1:

--
To run apache www server from startup, add apache24_enable="yes"
in your /etc/rc.conf. Extra options can be found in startup script.

Your hostname must be resolvable using at least 1 mechanism in
/etc/nsswitch.conf typically DNS or /etc/hosts or apache might
have issues starting depending on the modules you are using.


- apache24 default build changed from static MPM to modular MPM
- more modules are now enabled per default in the port
- icons and error pages moved from WWWDIR to DATADIR

   If build with modular MPM and no MPM is activated in
   httpd.conf, then mpm_prefork will be activated as default
   MPM in etc/apache24/modules.d to keep compatibility with
   existing php/perl/python modules!

Please compare the existing httpd.conf with httpd.conf.sample
and merge missing modules/instructions into httpd.conf!
Step 22: Install package php82
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:
	libargon2: 20190702
	php82: 8.2.14

Number of packages to be installed: 2

The process will require 25 MiB more space.
4 MiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching libargon2-20190702.pkg: ........ done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching php82-8.2.14.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libargon2-20190702...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libargon2-20190702: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php82-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php82-8.2.14: .......... done
Step 23: Install package php82-session
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:
	php82-session: 8.2.14

Number of packages to be installed: 1

41 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-session-8.2.14.pkg: ....... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-session-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-session-8.2.14: .......... done
=====
Message from php82-session-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-18-session.ini.sample
Step 24: Install package php82-ldap
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:
	php82-ldap: 8.2.14

Number of packages to be installed: 1

36 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-ldap-8.2.14.pkg: ..... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-ldap-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-ldap-8.2.14: ........ done
=====
Message from php82-ldap-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-ldap.ini.sample
Step 25: Install package php82-gettext
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:
	php82-gettext: 8.2.14

Number of packages to be installed: 1

8 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-gettext-8.2.14.pkg: . done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-gettext-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-gettext-8.2.14: ........ done
=====
Message from php82-gettext-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gettext.ini.sample
Step 26: Install package php82-xml
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:
	php82-xml: 8.2.14

Number of packages to be installed: 1

23 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-xml-8.2.14.pkg: ... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-xml-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-xml-8.2.14: ......... done
=====
Message from php82-xml-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xml.ini.sample
Step 27: Install package php82-xmlreader
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:
	php82-dom: 8.2.14
	php82-xmlreader: 8.2.14

Number of packages to be installed: 2

89 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching php82-xmlreader-8.2.14.pkg: ... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching php82-dom-8.2.14.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing php82-dom-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting php82-dom-8.2.14: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php82-xmlreader-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php82-xmlreader-8.2.14: ........ done
=====
Message from php82-dom-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-dom.ini.sample
=====
Message from php82-xmlreader-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-30-xmlreader.ini.sample
Step 28: Install package php82-xmlwriter
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:
	php82-xmlwriter: 8.2.14

Number of packages to be installed: 1

16 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-xmlwriter-8.2.14.pkg: .. done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-xmlwriter-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-xmlwriter-8.2.14: ........ done
=====
Message from php82-xmlwriter-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-xmlwriter.ini.sample
Step 29: Install package php82-mbstring
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:
	php82-mbstring: 8.2.14

Number of packages to be installed: 1

The process will require 4 MiB more space.
917 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-mbstring-8.2.14.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-mbstring-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-mbstring-8.2.14: .......... done
=====
Message from php82-mbstring-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-mbstring.ini.sample
Step 30: Install package php82-gd
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 12 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	brotli: 1.1.0,1
	fontconfig: 2.14.2,1
	freetype2: 2.13.2
	giflib: 5.2.1
	jbigkit: 2.1_1
	jpeg-turbo: 3.0.1
	libdeflate: 1.19
	libgd: 2.3.3_9,1
	php82-gd: 8.2.14
	png: 1.6.40
	tiff: 4.4.0_2
	webp: 1.3.2

Number of packages to be installed: 12

The process will require 22 MiB more space.
5 MiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/12] Fetching png-1.6.40.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/12] Fetching freetype2-2.13.2.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/12] Fetching jpeg-turbo-3.0.1.pkg: ......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/12] Fetching php82-gd-8.2.14.pkg: ...... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/12] Fetching brotli-1.1.0,1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/12] Fetching libdeflate-1.19.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/12] Fetching libgd-2.3.3_9,1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/12] Fetching fontconfig-2.14.2,1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/12] Fetching giflib-5.2.1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/12] Fetching jbigkit-2.1_1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/12] Fetching webp-1.3.2.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/12] Fetching tiff-4.4.0_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/12] Installing png-1.6.40...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/12] Extracting png-1.6.40: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/12] Installing jpeg-turbo-3.0.1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/12] Extracting jpeg-turbo-3.0.1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/12] Installing brotli-1.1.0,1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/12] Extracting brotli-1.1.0,1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/12] Installing libdeflate-1.19...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/12] Extracting libdeflate-1.19: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/12] Installing jbigkit-2.1_1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/12] Extracting jbigkit-2.1_1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/12] Installing freetype2-2.13.2...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/12] Extracting freetype2-2.13.2: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/12] Installing giflib-5.2.1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/12] Extracting giflib-5.2.1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/12] Installing tiff-4.4.0_2...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/12] Extracting tiff-4.4.0_2: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/12] Installing fontconfig-2.14.2,1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/12] Extracting fontconfig-2.14.2,1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/12] Installing webp-1.3.2...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/12] Extracting webp-1.3.2: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/12] Installing libgd-2.3.3_9,1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/12] Extracting libgd-2.3.3_9,1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/12] Installing php82-gd-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/12] Extracting php82-gd-8.2.14: ......... 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 php82-gd-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gd.ini.sample
Step 31: Install package php82-gmp
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:
	gmp: 6.3.0
	php82-gmp: 8.2.14

Number of packages to be installed: 2

The process will require 3 MiB more space.
522 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching php82-gmp-8.2.14.pkg: ... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching gmp-6.3.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing gmp-6.3.0...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting gmp-6.3.0: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php82-gmp-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php82-gmp-8.2.14: ......... done
=====
Message from php82-gmp-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-gmp.ini.sample
Step 32: Install package php82-filter
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:
	php82-filter: 8.2.14

Number of packages to be installed: 1

24 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Fetching php82-filter-8.2.14.pkg: .... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Installing php82-filter-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/1] Extracting php82-filter-8.2.14: ......... done
=====
Message from php82-filter-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-filter.ini.sample
Step 33: Install package php82-zip
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:
	libzip: 1.10.1
	php82-zip: 8.2.14

Number of packages to be installed: 2

280 KiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Fetching php82-zip-8.2.14.pkg: ........ done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Fetching libzip-1.10.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Installing libzip-1.10.1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/2] Extracting libzip-1.10.1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Installing php82-zip-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/2] Extracting php82-zip-8.2.14: ........ done
=====
Message from php82-zip-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-zip.ini.sample
Step 34: Install package ldap-account-manager
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 21 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	ldap-account-manager: 8.6
	p5-Authen-SASL: 2.17
	p5-Convert-ASN1: 0.34
	p5-Digest-HMAC: 1.04
	p5-GSSAPI: 0.28_2
	p5-IO-Socket-IP: 0.42
	p5-IO-Socket-SSL: 2.084
	p5-Mozilla-CA: 20231213
	p5-Net-SSLeay: 1.92
	p5-Quota: 1.8.2
	p5-Text-Soundex: 3.05
	p5-URI: 5.21
	p5-XML-Filter-BufferText: 1.01_1
	p5-XML-NamespaceSupport: 1.12
	p5-XML-SAX: 1.02
	p5-XML-SAX-Base: 1.09
	p5-XML-SAX-Writer: 0.57
	p5-perl-ldap: 0.6800
	php82-curl: 8.2.14
	php82-iconv: 8.2.14
	php82-simplexml: 8.2.14

Number of packages to be installed: 21

The process will require 78 MiB more space.
25 MiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/21] Fetching p5-XML-SAX-1.02.pkg: ....... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/21] Fetching p5-Net-SSLeay-1.92.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/21] Fetching p5-IO-Socket-SSL-2.084.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/21] Fetching p5-perl-ldap-0.6800.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/21] Fetching p5-IO-Socket-IP-0.42.pkg: .... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/21] Fetching p5-URI-5.21.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/21] Fetching p5-XML-NamespaceSupport-1.12.pkg: ... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/21] Fetching php82-simplexml-8.2.14.pkg: ..... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/21] Fetching p5-Authen-SASL-2.17.pkg: ...... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/21] Fetching p5-Quota-1.8.2.pkg: ..... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/21] Fetching p5-GSSAPI-0.28_2.pkg: ........ done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/21] Fetching p5-XML-Filter-BufferText-1.01_1.pkg: . done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/21] Fetching php82-curl-8.2.14.pkg: ......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/21] Fetching ldap-account-manager-8.6.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/21] Fetching p5-Convert-ASN1-0.34.pkg: ........ done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/21] Fetching p5-Mozilla-CA-20231213.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/21] Fetching p5-Digest-HMAC-1.04.pkg: .. done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/21] Fetching php82-iconv-8.2.14.pkg: ... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/21] Fetching p5-XML-SAX-Writer-0.57.pkg: .. done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/21] Fetching p5-Text-Soundex-3.05.pkg: .. done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/21] Fetching p5-XML-SAX-Base-1.09.pkg: ...... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/21] Installing p5-XML-NamespaceSupport-1.12...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/21] Extracting p5-XML-NamespaceSupport-1.12: ....... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/21] Installing p5-XML-SAX-Base-1.09...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/21] Extracting p5-XML-SAX-Base-1.09: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/21] Installing p5-XML-SAX-1.02...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/21] Extracting p5-XML-SAX-1.02: .......... done
could not find ParserDetails.ini in /usr/local/lib/perl5/site_perl/XML/SAX
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/21] Installing p5-Net-SSLeay-1.92...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/21] Extracting p5-Net-SSLeay-1.92: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/21] Installing p5-IO-Socket-IP-0.42...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/21] Extracting p5-IO-Socket-IP-0.42: ....... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/21] Installing p5-GSSAPI-0.28_2...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/21] Extracting p5-GSSAPI-0.28_2: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/21] Installing p5-XML-Filter-BufferText-1.01_1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/21] Extracting p5-XML-Filter-BufferText-1.01_1: ....... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/21] Installing p5-Mozilla-CA-20231213...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/21] Extracting p5-Mozilla-CA-20231213: ....... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/21] Installing p5-Digest-HMAC-1.04...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [9/21] Extracting p5-Digest-HMAC-1.04: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/21] Installing p5-IO-Socket-SSL-2.084...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [10/21] Extracting p5-IO-Socket-SSL-2.084: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/21] Installing p5-URI-5.21...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [11/21] Extracting p5-URI-5.21: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/21] Installing p5-Authen-SASL-2.17...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [12/21] Extracting p5-Authen-SASL-2.17: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/21] Installing p5-Convert-ASN1-0.34...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [13/21] Extracting p5-Convert-ASN1-0.34: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/21] Installing p5-XML-SAX-Writer-0.57...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [14/21] Extracting p5-XML-SAX-Writer-0.57: ......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/21] Installing p5-Text-Soundex-3.05...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [15/21] Extracting p5-Text-Soundex-3.05: ........ done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/21] Installing p5-perl-ldap-0.6800...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [16/21] Extracting p5-perl-ldap-0.6800: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/21] Installing php82-simplexml-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [17/21] Extracting php82-simplexml-8.2.14: ......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/21] Installing p5-Quota-1.8.2...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [18/21] Extracting p5-Quota-1.8.2: ......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/21] Installing php82-curl-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [19/21] Extracting php82-curl-8.2.14: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/21] Installing php82-iconv-8.2.14...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [20/21] Extracting php82-iconv-8.2.14: ........ done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/21] Installing ldap-account-manager-8.6...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [21/21] Extracting ldap-account-manager-8.6: .......... done
=====
Message from php82-simplexml-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-simplexml.ini.sample
=====
Message from php82-curl-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-curl.ini.sample
=====
Message from php82-iconv-8.2.14:

--
This file has been added to automatically load the installed extension:
/usr/local/etc/php/ext-20-iconv.ini.sample
=====
Message from ldap-account-manager-8.6:

--
******************************************************************************

You should add the following to your Apache configuration file:

Alias /lam /usr/local/www/lam

<Directory /usr/local/www/lam>
  Options +FollowSymLinks
  AllowOverride All
  Require all granted
  DirectoryIndex index.html
</Directory>

******************************************************************************
Step 35: Install package syslog-ng
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 8 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
	mpdecimal: 2.5.1
	python39: 3.9.18
	syslog-ng: 4.4.0

Number of packages to be installed: 8

The process will require 150 MiB more space.
24 MiB to be downloaded.
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/8] Fetching ivykis-0.42.4_1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/8] Fetching mpdecimal-2.5.1.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/8] Fetching json-c-0.17.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/8] Fetching e2fsprogs-libuuid-1.47.0.pkg: ....... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/8] Fetching python39-3.9.18.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/8] Fetching glib-2.78.3,2.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/8] Fetching syslog-ng-4.4.0.pkg: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/8] Fetching libffi-3.4.4.pkg: ....... done
Checking integrity... done (0 conflicting)
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/8] Installing mpdecimal-2.5.1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [1/8] Extracting mpdecimal-2.5.1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/8] Installing libffi-3.4.4...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [2/8] Extracting libffi-3.4.4: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/8] Installing python39-3.9.18...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [3/8] Extracting python39-3.9.18: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/8] Installing ivykis-0.42.4_1...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [4/8] Extracting ivykis-0.42.4_1: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/8] Installing json-c-0.17...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [5/8] Extracting json-c-0.17: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/8] Installing e2fsprogs-libuuid-1.47.0...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [6/8] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/8] Installing glib-2.78.3,2...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [7/8] Extracting glib-2.78.3,2: .......... done
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/8] Installing syslog-ng-4.4.0...
[openldap-amd64-14_0.vsf00001.cpt.za.honeyguide.net] [8/8] 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 36: Clean package installation
Checking integrity... done (0 conflicting)
Nothing to do.
Nothing to do.
Step 37: Enable apache24 in /etc/rc.conf
apache24 enabled in /etc/rc.conf
Step 38: Create necessary directories if they don't exist
Step 39: Clean cook artifacts
Step 40: Install pot local
Step 41: Set file ownership on cook scripts
Step 42: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 43: Create rc.d script to start cook
creating rc.d script to start cook
Step 44: Make rc.d script to start cook executable
Setting executable bit on cook rc file
Step 45: Enable cook service
enabling cook
cook enabled in /etc/rc.conf
=====>  Stop the pot openldap-amd64-14_0
=====>  Remove p465fc67214aae epair network interfaces
=====>  unmount /mnt/srv/pot/jails/openldap-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/openldap-amd64-14_0/m/dev
===>  exporting openldap-amd64-14_0 @ 1711040452 to /tmp/openldap-amd64-14_0_1.16.5.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