Opensearch

Overview

This flavour contains a local opensearch instance, an elasticsearch clone.

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

This version is compiled from ports with no plugins to avoid the TLS dependency. This is for internal/LAN use only.

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

Installation

  • Create your local jail from the image or the flavour files.
  • Clone the local jail
  • Set the following attributes
    pot set-attribute -A fdescfs -V YES -p <jailname>
    pot set-attribute -A procfs -V YES -p <jailname>
    pot set-attribute -A enforce_statfs -V 1 -p <jailname>
    pot set-attribute -A mlock -V YES -p <jailname>
    
  • Mount in persistent storage
  • Adjust to your environment:
    sudo pot set-env -p <jailname> \
      -E DATACENTER=<datacentername> \
      -E NODENAME=<nodename> \
      -E IP=<IP address of this system> \
      -E CONSULSERVERS="<comma-deliminated list of consul servers>" \
      -E GOSSIPKEY=<32 byte Base64 key from consul keygen>] \
      [ -E PORT=<opensearch port, default 9200> ] \
      [ -E REMOTELOG=<IP address> ]
    
  • Start the jail

Required Paramaters

The DATACENTER parameter defines a common datacenter.

The NODENAME parameter defines the name of this node.

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

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

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

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

Optional Parameters

The PORT parameter is the port to make opensearch available on. Defaults to 9200.

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

Usage

opensearch is a drop-in replacement for elasticsearch.

The default username and password is admin:admin. Setting this on image start is still to come.

The data directory for opensearch is automatically set to /mnt/opensearch, which needs to be mounted-in persistent storage.

The image requires the following jail attributes get set manually:

set-attribute -A fdescfs -V YES
set-attribute -A procfs -V YES
set-attribute -A enforce_statfs -V 1
set-attribute -A mlock -V YES

WIP. Documentation to be added.

Getting Started

How To Use The Ready-Made Image

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

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

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 opensearch-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/opensearch 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.1

  • Version bump for new base image
  • Disable plugins and set network parameters
  • Install from packages and disable security plugins. No need to build from source to work without TLS

0.0

  • First attempt at opensearch pot image, an elasticsearch clone, compiled from ports without plugins so no TLS dependency
  • Unset various opensearch-specific jail attributes as intefering with build. Set on pot image start. These images were built on Fri Apr 19 21:16:00 UTC 2024

Manual Image Download Links

opensearch-amd64-14_0_0.1.4.xz ( )
opensearch-amd64-14_0_0.1.4.xz.skein ( ) opensearch-amd64-14_0_0.1.4.xz.skein.sig ( ) opensearch-amd64-14_0_0.1.4.xz.meta ( )

Jenkins Pot Creation Logs

opensearch-amd64-14_0_0.1.4:


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

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

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

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

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

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

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

exit_ok() {
  trap - EXIT
  exit 0
}

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

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

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

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

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

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

step "Disable sendmail"
service sendmail onedisable

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

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

step "Install package openssl"
pkg install -y openssl

step "Install package sudo"
pkg install -y sudo

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

step "Install package curl"
pkg install -y curl

step "Install package jq"
pkg install -y jq

step "Install package jo"
pkg install -y jo

step "Install package nano"
pkg install -y nano

step "Install package bash"
pkg install -y bash

step "Install package rsync"
pkg install -y rsync

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

step "Install package go"
pkg install -y go

step "Install package node_exporter"
pkg install -y node_exporter

step "Install package nginx"
pkg install -y nginx

# install from packages and disable security plugins
step "Install package opensearch"
pkg install -y opensearch

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

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

# ---------------- SETUP PORTS -----------------

# Its not necessary to build from source to disable TLS, just disable the plugins

#step "Add openssl make.conf"
#echo "BATCH=yes" > /etc/make.conf
#echo "DEFAULT_VERSIONS+=ssl=openssl" >> /etc/make.conf
##echo "OPTIONS_SET+= OPTION" >> /etc/make.conf

#step "Make directory /usr/ports"
#mkdir -p /usr/ports

#step "Clone ports repo (slow, large)"
#git clone https://git.freebsd.org/ports.git /usr/ports

#step "Checkout the quarterly distribution"
#cd /usr/ports
#git checkout 2024Q2

#step "Port build opensearch"
#cd /usr/ports/textproc/opensearch/
#make install clean PLUGINS=no

#step "Change directory to /root"
#cd /root

#step "Remove /usr/ports"
#rm -rf /usr/ports

# leave enabled to disable TLS
if [ -x /usr/local/lib/opensearch/bin/opensearch-plugin ]; then
	/usr/local/lib/opensearch/bin/opensearch-plugin remove opensearch-performance-analyzer
	/usr/local/lib/opensearch/bin/opensearch-plugin remove opensearch-security
	/usr/local/lib/opensearch/bin/opensearch-plugin remove opensearch-security-analytics
fi

# --------------- CLEAN PACKAGES ---------------

step "Package autoremove"
pkg autoremove -y

step "Clean package installation"
pkg clean -y

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

opensearch/opensearch+1:
opensearch/opensearch+1.sh:

opensearch/opensearch+2:
opensearch/opensearch+2.sh:

opensearch/opensearch+3:
opensearch/opensearch+3.sh:

opensearch/opensearch+4:
opensearch/opensearch+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/opensearch-amd64-14_0/conf)
=====>  Cloning freebsd-potluck-amd64-14_0_0_0_23 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_0_0_0_23/m@1713115286 into zroot/srv/pot/jails/opensearch-amd64-14_0/m
=====>  Flavour: fbsd-update
=====>  Starting opensearch-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/opensearch-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot opensearch-amd64-14_0
=====>  Pot opensearch-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=opensearch-amd64-14_0 host.hostname=opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p6 path=/mnt/srv/pot/jails/opensearch-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:de:41:7b:bf: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.

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

No updates needed to update system to 14.0-RELEASE-p6.
No updates are available to install.
=====>  Stop the pot opensearch-amd64-14_0
=====>  Remove p46622dc34852b epair network interfaces
=====>  unmount /mnt/srv/pot/jails/opensearch-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/opensearch-amd64-14_0/m/dev
=====>  Flavour: opensearch
=====>  Executing opensearch pot commands on opensearch-amd64-14_0
=====>  mount /mnt/srv/pot/jails/opensearch-amd64-14_0/m/tmp
=====>  Source /usr/local/etc/pot/flavours/opensearch.d/local copied in the pot opensearch-amd64-14_0
=====>  unmount /mnt/srv/pot/jails/opensearch-amd64-14_0/m/tmp
=====>  /mnt/srv/pot/jails/opensearch-amd64-14_0/m/dev is already unmounted
=====>  Starting opensearch-amd64-14_0 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/opensearch-amd64-14_0/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot opensearch-amd64-14_0
=====>  Pot opensearch-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=opensearch-amd64-14_0 host.hostname=opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net osrelease=14.0-RELEASE-p6 path=/mnt/srv/pot/jails/opensearch-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:59:88:c1:d5: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.

Fri Apr 19 21:04:22 UTC 2024
/usr/local/etc/pot/flavours/opensearch.sh -> /mnt/srv/pot/jails/opensearch-amd64-14_0/m/tmp/opensearch.sh
=====>  Executing opensearch script on opensearch-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...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 34047 packages processed.
All repositories are up to date.
New version of pkg detected; it needs to be installed first.
The following 1 package(s) will be affected (of 0 checked):

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

Number of packages to be upgraded: 1

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

New packages to be INSTALLED:
	consul: 1.18.1_1

Number of packages to be installed: 1

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

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

Number of packages to be upgraded: 1

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

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

Number of packages to be installed: 3

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

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

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

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


If you installed the CONTRIB option please note that the scripts are
installed in /usr/local/share/git-core/contrib. Some of them require
other ports to be installed (perl, python, etc), which you may need to
install manually.
Step 17: Install package go
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:
	go: 1.21_1,2
	go121: 1.21.9

Number of packages to be installed: 2

The process will require 206 MiB more space.
42 MiB to be downloaded.
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching go-1.21_1,2.pkg: . done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching go121-1.21.9.pkg: .......... done
Checking integrity... done (0 conflicting)
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Installing go121-1.21.9...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting go121-1.21.9: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Installing go-1.21_1,2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting go-1.21_1,2: .. done
Step 18: Install package node_exporter
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	node_exporter: 1.6.1_4

Number of packages to be installed: 1

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

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

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

Number of packages to be installed: 1

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

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

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

Default path for the NGINX dynamic modules is

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

New packages to be INSTALLED:
	alsa-lib: 1.2.10_1
	brotli: 1.1.0,1
	dejavu: 2.37_3
	encodings: 1.1.0,1
	font-bh-ttf: 1.0.3_5
	font-misc-ethiopic: 1.0.4
	font-misc-meltho: 1.0.3_5
	fontconfig: 2.15.0_2,1
	freetype2: 2.13.2
	giflib: 5.2.1_1
	glib: 2.80.0,2
	graphite2: 1.3.14
	harfbuzz: 8.4.0
	java-zoneinfo: 2021.e
	javavmwrapper: 2.7.10
	jbigkit: 2.1_2
	jna: 5.7.0_1
	jpeg-turbo: 3.0.2
	lcms2: 2.16_1
	libICE: 1.1.0_2,1
	libSM: 1.2.3_1,1
	libX11: 1.8.7_1,1
	libXau: 1.0.9_1
	libXdmcp: 1.1.5
	libXext: 1.3.6,1
	libXfixes: 6.0.0_1
	libXi: 1.8_1,1
	libXrandr: 1.5.2_1
	libXrender: 0.9.10_2
	libXt: 1.3.0,1
	libXtst: 1.2.3_3
	libdeflate: 1.20
	libffi: 3.4.4_1
	libfontenc: 1.1.8
	libinotify: 20211018_1
	libxcb: 1.16.1
	mkfontscale: 1.2.3
	mpdecimal: 4.0.0
	openjdk17: 17.0.10+7.1_1
	openjdk8: 8.402.06.1_1
	opensearch: 2.11.1
	png: 1.6.43
	py39-packaging: 23.2
	python39: 3.9.18_2
	tiff: 4.4.0_3
	xorg-fonts-truetype: 7.7_1
	xorgproto: 2023.2

Number of packages to be installed: 47

The process will require 1 GiB more space.
864 MiB to be downloaded.
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/47] Fetching png-1.6.43.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/47] Fetching javavmwrapper-2.7.10.pkg: .... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/47] Fetching libxcb-1.16.1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/47] Fetching mpdecimal-4.0.0.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/47] Fetching jna-5.7.0_1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/47] Fetching freetype2-2.13.2.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/47] Fetching jpeg-turbo-3.0.2.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/47] Fetching libXt-1.3.0,1.pkg: ........ done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/47] Fetching libfontenc-1.1.8.pkg: .... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/47] Fetching java-zoneinfo-2021.e.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/47] Fetching libXrandr-1.5.2_1.pkg: ...... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/47] Fetching lcms2-2.16_1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/47] Fetching font-bh-ttf-1.0.3_5.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/47] Fetching openjdk17-17.0.10+7.1_1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/47] Fetching brotli-1.1.0,1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/47] Fetching py39-packaging-23.2.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/47] Fetching mkfontscale-1.2.3.pkg: .... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/47] Fetching libdeflate-1.20.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/47] Fetching libXext-1.3.6,1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/47] Fetching openjdk8-8.402.06.1_1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/47] Fetching libXfixes-6.0.0_1.pkg: .... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/47] Fetching libXau-1.0.9_1.pkg: . done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/47] Fetching libICE-1.1.0_2,1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/47] Fetching fontconfig-2.15.0_2,1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/47] Fetching python39-3.9.18_2.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/47] Fetching libSM-1.2.3_1,1.pkg: ..... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/47] Fetching font-misc-ethiopic-1.0.4.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/47] Fetching libX11-1.8.7_1,1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/47] Fetching giflib-5.2.1_1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/47] Fetching libXrender-0.9.10_2.pkg: ...... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/47] Fetching glib-2.80.0,2.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/47] Fetching xorgproto-2023.2.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/47] Fetching libXtst-1.2.3_3.pkg: .. done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/47] Fetching libXi-1.8_1,1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/47] Fetching jbigkit-2.1_2.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/47] Fetching font-misc-meltho-1.0.3_5.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/47] Fetching opensearch-2.11.1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/47] Fetching libffi-3.4.4_1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/47] Fetching libXdmcp-1.1.5.pkg: .... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/47] Fetching graphite2-1.3.14.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/47] Fetching tiff-4.4.0_3.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/47] Fetching encodings-1.1.0,1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/47] Fetching alsa-lib-1.2.10_1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/47] Fetching xorg-fonts-truetype-7.7_1.pkg: . done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/47] Fetching dejavu-2.37_3.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/47] Fetching harfbuzz-8.4.0.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/47] Fetching libinotify-20211018_1.pkg: ..... done
Checking integrity... done (0 conflicting)
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/47] Installing xorgproto-2023.2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/47] Extracting xorgproto-2023.2: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/47] Installing libXau-1.0.9_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/47] Extracting libXau-1.0.9_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/47] Installing libXdmcp-1.1.5...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/47] Extracting libXdmcp-1.1.5: ......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/47] Installing libxcb-1.16.1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/47] Extracting libxcb-1.16.1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/47] Installing png-1.6.43...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [5/47] Extracting png-1.6.43: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/47] Installing mpdecimal-4.0.0...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [6/47] Extracting mpdecimal-4.0.0: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/47] Installing brotli-1.1.0,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [7/47] Extracting brotli-1.1.0,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/47] Installing libX11-1.8.7_1,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [8/47] Extracting libX11-1.8.7_1,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/47] Installing libffi-3.4.4_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [9/47] Extracting libffi-3.4.4_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/47] Installing freetype2-2.13.2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [10/47] Extracting freetype2-2.13.2: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/47] Installing libfontenc-1.1.8...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [11/47] Extracting libfontenc-1.1.8: ......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/47] Installing libXext-1.3.6,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [12/47] Extracting libXext-1.3.6,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/47] Installing libXfixes-6.0.0_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [13/47] Extracting libXfixes-6.0.0_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/47] Installing libICE-1.1.0_2,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [14/47] Extracting libICE-1.1.0_2,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/47] Installing python39-3.9.18_2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [15/47] Extracting python39-3.9.18_2: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/47] Installing jpeg-turbo-3.0.2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [16/47] Extracting jpeg-turbo-3.0.2: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/47] Installing py39-packaging-23.2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [17/47] Extracting py39-packaging-23.2: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/47] Installing mkfontscale-1.2.3...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [18/47] Extracting mkfontscale-1.2.3: ....... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/47] Installing libdeflate-1.20...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [19/47] Extracting libdeflate-1.20: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/47] Installing fontconfig-2.15.0_2,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [20/47] Extracting fontconfig-2.15.0_2,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/47] Installing libSM-1.2.3_1,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [21/47] Extracting libSM-1.2.3_1,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/47] Installing libXi-1.8_1,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [22/47] Extracting libXi-1.8_1,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/47] Installing jbigkit-2.1_2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [23/47] Extracting jbigkit-2.1_2: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/47] Installing javavmwrapper-2.7.10...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [24/47] Extracting javavmwrapper-2.7.10: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/47] Installing libXt-1.3.0,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [25/47] Extracting libXt-1.3.0,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/47] Installing java-zoneinfo-2021.e...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [26/47] Extracting java-zoneinfo-2021.e: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/47] Installing font-bh-ttf-1.0.3_5...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [27/47] Extracting font-bh-ttf-1.0.3_5: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/47] Installing font-misc-ethiopic-1.0.4...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [28/47] Extracting font-misc-ethiopic-1.0.4: ...... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/47] Installing giflib-5.2.1_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [29/47] Extracting giflib-5.2.1_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/47] Installing libXrender-0.9.10_2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [30/47] Extracting libXrender-0.9.10_2: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/47] Installing glib-2.80.0,2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [31/47] Extracting glib-2.80.0,2: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/47] Installing libXtst-1.2.3_3...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [32/47] Extracting libXtst-1.2.3_3: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/47] Installing font-misc-meltho-1.0.3_5...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [33/47] Extracting font-misc-meltho-1.0.3_5: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/47] Installing graphite2-1.3.14...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [34/47] Extracting graphite2-1.3.14: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/47] Installing tiff-4.4.0_3...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [35/47] Extracting tiff-4.4.0_3: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/47] Installing encodings-1.1.0,1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [36/47] Extracting encodings-1.1.0,1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/47] Installing alsa-lib-1.2.10_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [37/47] Extracting alsa-lib-1.2.10_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/47] Installing dejavu-2.37_3...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [38/47] Extracting dejavu-2.37_3: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/47] Installing libinotify-20211018_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [39/47] Extracting libinotify-20211018_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/47] Installing libXrandr-1.5.2_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [40/47] Extracting libXrandr-1.5.2_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/47] Installing lcms2-2.16_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [41/47] Extracting lcms2-2.16_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/47] Installing openjdk8-8.402.06.1_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [42/47] Extracting openjdk8-8.402.06.1_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/47] Installing xorg-fonts-truetype-7.7_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [43/47] Extracting xorg-fonts-truetype-7.7_1: ... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/47] Installing harfbuzz-8.4.0...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [44/47] Extracting harfbuzz-8.4.0: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/47] Installing jna-5.7.0_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [45/47] Extracting jna-5.7.0_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/47] Installing openjdk17-17.0.10+7.1_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [46/47] Extracting openjdk17-17.0.10+7.1_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/47] Installing opensearch-2.11.1...
===> Creating groups.
Creating group 'opensearch' with gid '855'.
===> Creating users
Creating user 'opensearch' with uid '855'.
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [47/47] Extracting opensearch-2.11.1: .......... done
==> Running trigger: gio-modules.ucl
Generating GIO modules cache
==> Running trigger: fontconfig.ucl
Running fc-cache to build fontconfig cache...
==> Running trigger: glib-schemas.ucl
Compiling glib schemas
No schema files found: doing nothing.
=====
Message from freetype2-2.13.2:

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

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

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

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

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

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

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

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

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

py39-gdbm       databases/py-gdbm@py39
py39-sqlite3    databases/py-sqlite3@py39
py39-tkinter    x11-toolkits/py-tkinter@py39
=====
Message from 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 libinotify-20211018_1:

--
You might want to consider increasing the kern.maxfiles tunable if you plan
to use this library for applications that need to monitor activity of a lot
of files.
=====
Message from openjdk8-8.402.06.1_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
=====
Message from openjdk17-17.0.10+7.1_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
=====
Message from opensearch-2.11.1:

--
Opensearch was installed

Please see /usr/local/etc/opensearch for a sample version of
opensearch.yml.

OpenSearch requires memory locking of large amounts of RAM.
You may need to set:

sysctl security.bsd.unprivileged_mlock=1

When running within a jail, it's highly advisable to set:

enforce_statfs = 1

for the jail running opensearch instance.

If OpenSearch was built with the PLUGINS option enabled (default) it will not
start until the security plugin is properly configured.  Please refer to the
OpenSearch documentation for setting-up TLS:

https://opensearch.org/docs/security-plugin/configuration/tls
Step 21: Install package syslog-ng
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 4 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	e2fsprogs-libuuid: 1.47.0
	ivykis: 0.43_1
	json-c: 0.17
	syslog-ng: 4.6.0_2

Number of packages to be installed: 4

The process will require 5 MiB more space.
1 MiB to be downloaded.
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Fetching ivykis-0.43_1.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Fetching json-c-0.17.pkg: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Fetching e2fsprogs-libuuid-1.47.0.pkg: ...... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Fetching syslog-ng-4.6.0_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Installing ivykis-0.43_1...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [1/4] Extracting ivykis-0.43_1: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Installing json-c-0.17...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [2/4] Extracting json-c-0.17: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Installing e2fsprogs-libuuid-1.47.0...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [3/4] Extracting e2fsprogs-libuuid-1.47.0: .......... done
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Installing syslog-ng-4.6.0_2...
[opensearch-amd64-14_0.vsf00002.cpt.za.honeyguide.net] [4/4] Extracting syslog-ng-4.6.0_2: .......... done
=====
Message from syslog-ng-4.6.0_2:

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

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

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

        syslog_ng_enable="YES"

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

        syslogd_enable="NO"

4. Shut down the standard FreeBSD syslogd:

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

5. Start syslog-ng:

     /usr/local/etc/rc.d/syslog-ng start
-> removing [opensearch-performance-analyzer]...
-> preserving plugin config files [/usr/local/lib/opensearch/config/opensearch-performance-analyzer] in case of upgrade; use --purge if not needed
-> removing [opensearch-security]...
-> preserving plugin config files [/usr/local/lib/opensearch/config/opensearch-security] in case of upgrade; use --purge if not needed
-> removing [opensearch-security-analytics]...
Step 22: Package autoremove
Checking integrity... done (0 conflicting)
Nothing to do.
Step 23: Clean package installation
The following package files will be deleted:
	/var/cache/pkg/openssl-3.0.13_2,1.pkg
	/var/cache/pkg/openssl-3.0.13_2,1~9d9aca70ca.pkg
The cleanup will free 6 MiB
Deleting files: .. done
Step 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 opensearch-amd64-14_0
=====>  Remove p46622dc54852b epair network interfaces
=====>  unmount /mnt/srv/pot/jails/opensearch-amd64-14_0/m/tmp
=====>  unmount /mnt/srv/pot/jails/opensearch-amd64-14_0/m/dev
===>  exporting opensearch-amd64-14_0 @ 1713560927 to /tmp/opensearch-amd64-14_0_0.1.4.xz

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